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

lerna-publisher

Package Overview
Dependencies
Maintainers
1
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lerna-publisher - npm Package Compare versions

Comparing version 1.0.21 to 1.1.0

4

cjs/cli.js

@@ -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

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