New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

create-ce-app

Package Overview
Dependencies
Maintainers
1
Versions
37
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-ce-app - npm Package Compare versions

Comparing version 1.0.24 to 1.0.25

22

dist/index.js

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

console.log("Installing Packages...");
exec(`(cd ${destinationFolder} && npm i)`, (err) => {
exec(`(cd ${destinationFolder} && npm i)`, (err) => __awaiter(void 0, void 0, void 0, function* () {
if (err) {

@@ -85,12 +85,12 @@ console.error(`Installting packages failed: ${err}`);

console.log(chalk.green('Packages installed successfully!\n'));
});
const shouldOpen = yield inquirer.prompt({
name: 'openDevCenter',
message: `Would you like to the app on Wix's Developer Center?`,
type: 'confirm',
});
if (shouldOpen.openDevCenter) {
open(`https://dev.wix.com/dc3/my-apps/${appId}/build/components`);
}
;
const shouldOpen = yield inquirer.prompt({
name: 'openDevCenter',
message: `Would you like to the app on Wix's Developer Center?`,
type: 'confirm',
});
if (shouldOpen.openDevCenter) {
open(`https://dev.wix.com/dc3/my-apps/${appId}/build/components`);
}
;
}));
});

@@ -97,0 +97,0 @@ (function () {

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

exec(`(cd ${destinationFolder} && npm i)`, (err) => {
exec(`(cd ${destinationFolder} && npm i)`, async (err) => {
if (err) {

@@ -97,14 +97,16 @@ console.error(`Installting packages failed: ${err}`);

}
console.log(chalk.green('Packages installed successfully!\n'));
});
const shouldOpen = await inquirer.prompt({
name: 'openDevCenter',
message: `Would you like to the app on Wix's Developer Center?`,
type: 'confirm',
const shouldOpen = await inquirer.prompt({
name: 'openDevCenter',
message: `Would you like to the app on Wix's Developer Center?`,
type: 'confirm',
});
if (shouldOpen.openDevCenter) {
open(`https://dev.wix.com/dc3/my-apps/${appId}/build/components`);
};
});
if (shouldOpen.openDevCenter) {
open(`https://dev.wix.com/dc3/my-apps/${appId}/build/components`);
};
};

@@ -111,0 +113,0 @@

{
"name": "create-ce-app",
"version": "1.0.24",
"version": "1.0.25",
"description": "My New Project description.",

@@ -5,0 +5,0 @@ "type": "module",

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