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.2.0 to 1.2.1

7

lib/deploy-to-now.js

@@ -7,6 +7,9 @@ "use strict";

exports.deployToNow = (dir, token, alias, nowPath = 'now') => {
const deployCmd = `${nowPath} ${dir} ${token ? `--token=${token}` : ''}`;
const deployCmd = `${nowPath} ${dir} ${token ? `--token=${token}` : ''} --public`;
log('cmd: ', deployCmd);
const url = child_process_1.execSync(deployCmd, { stdio: 'inherit' });
const url = child_process_1.execSync(deployCmd).toString();
log('url: ', url);
if (!url) {
return;
}
if (alias) {

@@ -13,0 +16,0 @@ const aliasCmd = `${nowPath} alias ${url} ${alias} ${token ? `--token=${token}` : ''}`;

{
"name": "@pie-framework/build-helper",
"version": "1.2.0",
"version": "1.2.1",
"description": "",

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

},
"dependencies": {
"debug": "^4.1.1"
},
"devDependencies": {

@@ -15,0 +18,0 @@ "tslint": "^5.10.0",

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