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

start-server-webpack-plugin

Package Overview
Dependencies
Maintainers
2
Versions
15
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

start-server-webpack-plugin - npm Package Compare versions

Comparing version 2.2.1 to 2.2.2

9

dist/StartServerPlugin.js

@@ -72,3 +72,10 @@ 'use strict';

value: function apply(compiler) {
compiler.plugin("after-emit", this.afterEmit);
// Use the Webpack 4 Hooks API when possible.
if (compiler.hooks) {
var plugin = { name: "StartServerPlugin" };
compiler.hooks.afterEmit.tapAsync(plugin, this.afterEmit);
} else {
compiler.plugin("after-emit", this.afterEmit);
}
}

@@ -75,0 +82,0 @@ }, {

2

package.json
{
"name": "start-server-webpack-plugin",
"version": "2.2.1",
"version": "2.2.2",
"description": "Automatically start your server once Webpack's build completes.",

@@ -5,0 +5,0 @@ "main": "dist/StartServerPlugin.js",

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