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

boost

Package Overview
Dependencies
Maintainers
1
Versions
99
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

boost - npm Package Compare versions

Comparing version 0.11.0 to 0.12.0

13

lib/Tool.js

@@ -110,2 +110,15 @@ 'use strict';

}, {
key: 'getPlugin',
value: function getPlugin(name) {
var plugin = this.plugins.find(function (p) {
return p.name === name;
});
if (!plugin) {
throw new Error('Failed to find ' + this.options.pluginName + ' "' + name + '". Have you installed it?');
}
return plugin;
}
}, {
key: 'initialize',

@@ -112,0 +125,0 @@ value: function initialize() {

2

package.json
{
"name": "boost",
"version": "0.11.0",
"version": "0.12.0",
"description": "Robust pipeline for creating build tools that separate logic into routines and tasks.",

@@ -5,0 +5,0 @@ "keywords": [],

@@ -87,2 +87,17 @@ /**

/**
* Get a plugin by name.
*/
getPlugin(name: string): Plugin<*> {
const plugin = this.plugins.find(p => p.name === name);
if (!plugin) {
throw new Error(
`Failed to find ${this.options.pluginName} "${name}". Have you installed it?`,
);
}
return plugin;
}
/**
* Initialize the tool by loading config and plugins.

@@ -89,0 +104,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