Socket
Socket
Sign inDemoInstall

@pie-framework/build-helper

Package Overview
Dependencies
Maintainers
1
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@pie-framework/build-helper - npm Package Compare versions

Comparing version 1.3.1 to 1.3.2

11

lib/deploy-to-now.js

@@ -7,7 +7,14 @@ "use strict";

const runCmd = (c, dryRun, opts = {}) => {
log(c);
if (dryRun) {
log(c);
return;
}
return child_process_1.execSync(c, opts).toString();
const result = child_process_1.execSync(c, opts);
log(c, 'result:', result);
if (result) {
return result.toString();
}
else {
return result;
}
};

@@ -14,0 +21,0 @@ exports.deployToNow = (dir, token, alias, nowPath = 'now', dryRun = false) => {

2

package.json
{
"name": "@pie-framework/build-helper",
"version": "1.3.1",
"version": "1.3.2",
"description": "",

@@ -5,0 +5,0 @@ "main": "lib/index.js",

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