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

seed-builder

Package Overview
Dependencies
Maintainers
1
Versions
130
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

seed-builder - npm Package Compare versions

Comparing version 0.3.7 to 0.3.8

hola.py

19

cli.js
#! /usr/bin/env node
const exec = require("child_process").execSync;
const exec = require("child_process").exec;
const idx = require("./index.js");
const [, , ...args] = process.argv
const command = `${idx.getBin()} ${args.join(" ")}`
const child = exec(command)
process.stdin.pipe(child.stdin)
try{
console.log(exec(command).toString())
}
catch(error){
console.log(error.message)
}
child.stdout.on('data', function (data) {
process.stdout.write(data.toString());
});
child.stderr.on('data', function (data) {
console.log(data.toString());
});
child.on('close', function (code) {
process.exit();
});
{
"name": "seed-builder",
"version": "0.3.7",
"version": "0.3.8",
"description": "Code generator library",

@@ -5,0 +5,0 @@ "main": "index.js",

Sorry, the diff of this file is not supported yet

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