Socket
Socket
Sign inDemoInstall

@ephox/bolt

Package Overview
Dependencies
0
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.6.3 to 1.6.4

6

command/build.js

@@ -181,3 +181,7 @@ var usage = function () {

require('../npm/bolt').build(boltConfig, console.error, process.exit);
var exit = function (success) {
process.exit(success ? 0 : 1);
};
require('../npm/bolt').build(boltConfig, console.error, exit);
};

@@ -50,3 +50,7 @@ var usage = function () {

require('../npm/bolt').init(boltConfig, console.error, process.exit);
var exit = function (success) {
process.exit(success ? 0 : 1);
};
require('../npm/bolt').init(boltConfig, console.error, exit);
};

@@ -89,3 +89,7 @@ var usage = function () {

require('../npm/bolt').test(boltConfig, console.log, console.error, process.exit);
var exit = function (success) {
process.exit(success ? 0 : 1);
};
require('../npm/bolt').test(boltConfig, console.log, console.error, exit);
};

2

package.json
{
"name": "@ephox/bolt",
"version": "1.6.3",
"version": "1.6.4",
"description": "Bolt, AMD-like module system for JavaScript",

@@ -5,0 +5,0 @@ "bin": {

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc