lerna-publisher
Advanced tools
Comparing version 1.0.21 to 1.1.0
@@ -24,3 +24,3 @@ #!/usr/bin/env node | ||
try { | ||
const directoryPath = path_1.default.resolve(folder); | ||
const directoryPath = path_1.default.resolve(folder || ''); | ||
console.log('lerna-publisher starting in ' + directoryPath); | ||
@@ -63,3 +63,3 @@ await publish_1.publish(directoryPath); | ||
const prNum = parseInt(TRAVIS_PULL_REQUEST, 10) || 0; | ||
const directoryPath = path_1.default.resolve(folder); | ||
const directoryPath = path_1.default.resolve(folder || ''); | ||
console.log(`Deploying demo for ${pkgName} at ${directoryPath}`); | ||
@@ -66,0 +66,0 @@ await deploy_1.deploy(directoryPath, pkgName, prNum); |
{ | ||
"name": "lerna-publisher", | ||
"description": "Utility to publish lerna/yarn/workspace types of packages from ci to npm", | ||
"version": "1.0.21", | ||
"version": "1.1.0", | ||
"main": "cjs/index.js", | ||
@@ -6,0 +6,0 @@ "bin": { |
@@ -29,3 +29,3 @@ #!/usr/bin/env node | ||
try { | ||
const directoryPath = path.resolve(folder); | ||
const directoryPath = path.resolve(folder || ''); | ||
console.log('lerna-publisher starting in ' + directoryPath); | ||
@@ -64,3 +64,3 @@ await publish(directoryPath); | ||
const prNum = parseInt(TRAVIS_PULL_REQUEST, 10) || 0; | ||
const directoryPath = path.resolve(folder); | ||
const directoryPath = path.resolve(folder || ''); | ||
console.log(`Deploying demo for ${pkgName} at ${directoryPath}`); | ||
@@ -67,0 +67,0 @@ await deploy(directoryPath, pkgName, prNum); |
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
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
37103
2