Socket
Socket
Sign inDemoInstall

node-hot-loader

Package Overview
Dependencies
Maintainers
1
Versions
93
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-hot-loader - npm Package Compare versions

Comparing version 1.16.0 to 1.16.1

12

CHANGELOG.md

@@ -0,1 +1,13 @@

## <small>1.16.1 (2019-08-02)</small>
* 1.16.0 ([28f73d5](https://github.com/vlazh/node-hot-loader/commit/28f73d5))
* Exclude source map from assets ([3e43a13](https://github.com/vlazh/node-hot-loader/commit/3e43a13))
* Fix node-hot version ([90e22ff](https://github.com/vlazh/node-hot-loader/commit/90e22ff))
* Prettierify ([24110dd](https://github.com/vlazh/node-hot-loader/commit/24110dd))
* Reorganize build ([75e33fc](https://github.com/vlazh/node-hot-loader/commit/75e33fc))
* Update deps ([ce73fe7](https://github.com/vlazh/node-hot-loader/commit/ce73fe7))
* Update deps ([99043c3](https://github.com/vlazh/node-hot-loader/commit/99043c3))
## 1.16.0 (2019-08-02)

@@ -2,0 +14,0 @@

2

HmrServer.js

@@ -123,3 +123,3 @@ "use strict";

const assets = Object.values(stats.toJson().entrypoints).reduce((acc, group) => {
return acc.concat(...group.assets.map(asset => _path.default.resolve(stats.compilation.compiler.outputPath, asset)));
return acc.concat(...group.assets.filter(asset => !asset.endsWith('.map')).map(asset => _path.default.resolve(stats.compilation.compiler.outputPath, asset)));
}, []);

@@ -126,0 +126,0 @@

@@ -12,4 +12,2 @@ #!/usr/bin/env node

var _package = _interopRequireDefault(require("../package.json"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }

@@ -24,3 +22,3 @@

const params = _yargs.default.config(options).usage('Usage: $0 [args]').help('help').alias('help', 'h').alias('help', '?').version(_package.default.version).alias('version', 'v').options({
const params = _yargs.default.config(options).usage('Usage: $0 [args]').help('help').alias('help', 'h').alias('help', '?').version("1.16.1").alias('version', 'v').options({
config: {

@@ -27,0 +25,0 @@ type: 'string',

{
"name": "node-hot-loader",
"version": "1.16.0",
"version": "1.16.1",
"description": "Hot module replacement for Node.js applications",

@@ -65,6 +65,6 @@ "author": "Vladimir Zhukov",

"@babel/preset-env": "^7.5.5",
"@types/webpack-env": "^1.14.0",
"@vzh/configs": "../@vzh/packages/configs/dist/",
"@vzh/prettier-config": "^1.1.0",
"babel-eslint": "^10.0.2",
"babel-plugin-transform-inline-environment-variables": "^0.4.3",
"conventional-changelog-cli": "^2.0.23",

@@ -71,0 +71,0 @@ "copyfiles": "^2.1.1",

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