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

ipwa

Package Overview
Dependencies
Maintainers
1
Versions
71
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ipwa - npm Package Compare versions

Comparing version 2.17.0 to 2.18.0

17

cli.js

@@ -13,2 +13,3 @@ #!/usr/bin/env node

const folderName = process.argv.slice(2)[0] || 'ipwa';
const install = process.argv.slice(2)[1] || false;

@@ -47,3 +48,13 @@ const overWritePackage = () => {

showLoader(`Installing dependencies for ${folderName}`);
exec(`npm ci --prefix ${folderName}`, () => {
if (install) {
exec(`npm ci --prefix ${folderName}`, () => {
showLoader('Cleaning up');
exec(`rm ipwa.tar.gz`, () => {
exec(`rmdir temp`, () => {
spinner.stop();
console.log(chalk.green(`Successfully created project ${folderName}!`));
});
});
});
} else {
showLoader('Cleaning up');

@@ -53,6 +64,6 @@ exec(`rm ipwa.tar.gz`, () => {

spinner.stop();
console.log(chalk.green(`Successfully created project ${folderName}!`));
console.log(chalk.green(`Successfully created project ${folderName}! You'll need to install the dependencies yourself.`));
});
});
});
}
});

@@ -59,0 +70,0 @@ });

2

package.json
{
"name": "ipwa",
"version": "2.17.0",
"version": "2.18.0",
"author": "Sreeram Padmanabhan",

@@ -5,0 +5,0 @@ "license": "ISC",

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