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.17 to 1.0.18

2

dist/index.js

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

console.log("Installing Packages...");
exec(`(cd ${destinationFolder}/${subdirectory} && npm i)`, (err) => {
exec(`(cd ${destinationFolder} && npm i)`, (err) => {
if (err) {

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

@@ -45,5 +45,4 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {

}
console.info(`🎉 Your machine is authenticated.`);
return authData;
});
}

@@ -16,2 +16,3 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {

const authData = yield getAuthData();
authData && console.info(`🎉 Your machine is authenticated.`);
if (authData) {

@@ -27,3 +28,2 @@ const { data } = yield axios.post(appServiceBaseUrl, {

});
console.log(data);
return {

@@ -56,3 +56,2 @@ appId: data.appId,

});
console.log("COMP DATA", data);
}

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

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

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

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

{
"name": "create-ce-app",
"version": "1.0.17",
"version": "1.0.18",
"description": "My New Project description.",

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

@@ -46,4 +46,2 @@ import { createCallbackServer } from './callback-server.js';

console.info(`🎉 Your machine is authenticated.`);
return authData;

@@ -50,0 +48,0 @@ }

@@ -7,2 +7,3 @@ import axios from 'axios';

const authData = await getAuthData();
authData && console.info(`🎉 Your machine is authenticated.`);

@@ -22,3 +23,2 @@ if (authData) {

console.log(data);
return {

@@ -50,4 +50,2 @@ appId: data.appId,

});
console.log("COMP DATA", data);
}

@@ -54,0 +52,0 @@ }

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