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

amok

Package Overview
Dependencies
Maintainers
1
Versions
808
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

amok - npm Package Compare versions

Comparing version 0.12.2 to 0.12.3

14

index.js

@@ -10,2 +10,3 @@ var child = require('child_process');

var temp = require('temp');
var which = require('which');

@@ -56,3 +57,3 @@ function serve(options, callback) {

case 'browserify':
var command = 'watchify';
var command = which.sync('watchify');
var args = [

@@ -65,3 +66,3 @@ '-o',

case 'webpack':
var command = 'webpack';
var command = which.sync('webpack');
var args = [

@@ -75,3 +76,3 @@ '--watch',

case 'typescript':
var command = 'tsc';
var command = which.sync('tsc');
var args = [

@@ -85,3 +86,3 @@ '--watch',

case 'coffeescript':
var command = 'coffee';
var command = which.sync('coffee');
var args = [

@@ -95,3 +96,3 @@ '--watch',

case 'babel':
var command = 'babel';
var command = which.sync('babel');
var args = [

@@ -177,3 +178,2 @@ '--watch',

});
return executables[0];

@@ -183,3 +183,3 @@ } else if (process.platform == 'darwin') {

} else {
return 'google-chrome';
return which.sync('google-chrome');
}

@@ -186,0 +186,0 @@ }());

{
"name": "amok",
"version": "0.12.2",
"version": "0.12.3",
"description": "Live Editing for JavaScript",

@@ -31,3 +31,4 @@ "main": "index.js",

"rdbg": "^0.3.3",
"temp": "^0.8.1"
"temp": "^0.8.1",
"which": "^1.0.9"
},

@@ -34,0 +35,0 @@ "devDependencies": {},

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