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

systemjs-hot-reloader-ex

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

systemjs-hot-reloader-ex - npm Package Compare versions

Comparing version 2.0.1 to 2.0.2

2

package.json
{
"name": "systemjs-hot-reloader-ex",
"version": "2.0.1",
"version": "2.0.2",
"description": "SystemJS / JSPM hot reloader with support of CSS, SCSS, SASS, LESS, Stylus, React and JavaScript",

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

@@ -209,7 +209,16 @@ import 'core-js/shim';

.then(() => this.fixModuleDeps(name))
.then(() => reload(moduleChain));
.then(() => {
this.logger.debug(`Calling module ${this.cleanName(name)} __reload() hook`);
return reload(moduleChain);
});
}
return Promise.resolve()
.then(() => (unload ? unload(moduleChain) : undefined))
.then(() => {
if (!unload) {
return undefined;
}
this.logger.debug(`Calling module ${this.cleanName(name)} unload() hook`);
return unload(moduleChain);
})
.then(() => (backup ? this.restoreModuleBackup(backup) : this.deleteModule(name)))

@@ -216,0 +225,0 @@ .then(() => this.importModule(name));

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