davai-release
Advanced tools
Comparing version 1.2.1 to 1.2.7
{ | ||
"name": "davai-release", | ||
"version": "1.2.1", | ||
"version": "1.2.7", | ||
"description": "Automatic deploy tools", | ||
@@ -51,2 +51,2 @@ "main": "src/cli.js", | ||
} | ||
} | ||
} |
@@ -10,3 +10,2 @@ // Tasks | ||
import { pushReleaseTag } from './tasks/pushReleaseTag' | ||
// import { createNewReleaseBranch } from './tasks/createNewReleaseBranch' | ||
// import { cleanupProductionFiles } from './tasks/cleanupProductionFiles' | ||
@@ -29,3 +28,3 @@ // import { submitChangesToGithub } from './tasks/submitChangesToGithub' | ||
export async function cli(args) { | ||
log('1.0.0', 'DAVAI RELEASE') | ||
log('1.2.7', 'DAVAI RELEASE') | ||
@@ -32,0 +31,0 @@ try { |
@@ -13,3 +13,4 @@ export const REACT = 'react'; | ||
'GIT_RELEASE_TAG_NAME_BASE', | ||
'BUILDING_SCRIPT' | ||
'BUILDING_SCRIPT', | ||
'STARTUP_BRANCH' | ||
]; |
@@ -61,2 +61,3 @@ import { observable, action, autorun } from 'mobx' | ||
this.CONF = confObject | ||
console.log('this.CONF', this.CONF); | ||
@@ -63,0 +64,0 @@ return this |
@@ -16,3 +16,3 @@ // Libs | ||
const { newVersion } = ProjectInfoStore | ||
const { GIT_RELEASE_BRANCH_NAME_BASE } = FilesInfoStore | ||
const { GIT_RELEASE_BRANCH_NAME_BASE } = FilesInfoStore.CONF | ||
@@ -27,3 +27,5 @@ return GitInfoStore.switchToAReleaseBranch( | ||
try { | ||
const { STARTUP_BRANCH } = FilesInfoStore | ||
const { STARTUP_BRANCH } = FilesInfoStore.CONF | ||
console.log('FilesInfoStore.CONF', FilesInfoStore.CONF); | ||
await GitInfoStore.mergeBranch(`origin/${STARTUP_BRANCH}`) | ||
@@ -30,0 +32,0 @@ await GitInfoStore.pushAfterMerge({ branchName: `${STARTUP_BRANCH}` }) |
@@ -21,3 +21,3 @@ // Libs | ||
const { newVersion, releaseDescription } = ProjectInfoStore | ||
const { GIT_RELEASE_TAG_NAME_BASE } = FilesInfoStore | ||
const { GIT_RELEASE_TAG_NAME_BASE } = FilesInfoStore.CONF | ||
@@ -24,0 +24,0 @@ GitInfoStore.createTag({ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
79541
55
2476