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

@serveside/cli

Package Overview
Dependencies
Maintainers
2
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@serveside/cli - npm Package Compare versions

Comparing version 0.0.1-alpha.12 to 0.0.1-alpha.14

8

CHANGELOG.md

@@ -6,2 +6,10 @@ # Change Log

## [0.0.1-alpha.14](https://github.com/serveside/serveside/compare/v0.0.1-alpha.13...v0.0.1-alpha.14) (2020-09-02)
**Note:** Version bump only for package @serveside/cli
## [0.0.1-alpha.12](https://github.com/serveside/serveside/compare/v0.0.1-alpha.11...v0.0.1-alpha.12) (2020-09-02)

@@ -8,0 +16,0 @@

14

cmds/create.js

@@ -1,2 +0,2 @@

const { execSync } = require('child_process');
const install = require('install-packages');

@@ -11,12 +11,10 @@ /* eslint-disable no-unused-expressions */

};
exports.handler = ({ service }) => {
exports.handler = async ({ service }) => {
console.log(`Starting a new ${service} service`);
const command = `npm install @serveside/core @serveside/${service}`;
console.log('Running command', `"${command}"`);
try {
const output = execSync(command).toString().trim();
console.log('Installed dependencies', output);
await install({
packages: ['@serveside/core', `@serveside/${service}`],
installPeers: true,
});
} catch (error) {

@@ -23,0 +21,0 @@ console.log(error);

{
"name": "@serveside/cli",
"version": "0.0.1-alpha.12",
"version": "0.0.1-alpha.14",
"description": "> TODO: description",

@@ -34,5 +34,6 @@ "author": "Naftali Lubin <maniator@users.noreply.github.com>",

"dependencies": {
"install-packages": "^0.2.5",
"yargs": "^15.4.1"
},
"gitHead": "542c1dfa0ef5af992f88a4b96b9c45550ab629dc"
"gitHead": "24b318f74606056102ca1bb7adadc1ac99fc52cc"
}
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