Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

davai-release

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

davai-release - npm Package Compare versions

Comparing version 1.2.1 to 1.2.7

4

package.json
{
"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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc