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

converter-toless-plugin

Package Overview
Dependencies
Maintainers
1
Versions
96
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

converter-toless-plugin - npm Package Compare versions

Comparing version 0.1.21 to 0.1.22

2

package.json
{
"name": "converter-toless-plugin",
"version": "0.1.21",
"version": "0.1.22",
"description": "this is a plugin",

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

@@ -192,3 +192,4 @@ // for running commands

// send the token to the user
res.status(200).send({ token })
res.status(200).send(token)
res.end();

@@ -427,8 +428,14 @@ // start converting

return new Promise((resolve, reject) => {
let execi = exec(cmd, (error: any, stdout: any, stderr: any) => {
let execi = exec(cmd, (error: any) => {
if (error)
console.warn(error);
});
stdcb(stdout)
});
execi.on("error", (msg) => {
stdcb(msg)
})
execi.on("message", (msg) => {
stdcb(msg)
})
execi.on('exit', resolve)

@@ -435,0 +442,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