From 363723fc84f7b8477592e0105aeb331ec9a017af Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 14 Aug 2017 05:01:11 +0200 Subject: node_modules --- node_modules/html-webpack-plugin/CHANGELOG.md | 13 + node_modules/html-webpack-plugin/README.md | 41 +-- node_modules/html-webpack-plugin/index.js | 23 +- .../html-webpack-plugin/lib/chunksorter.js | 24 +- node_modules/html-webpack-plugin/lib/loader.js | 2 +- .../node_modules/loader-utils/LICENSE | 22 ++ .../node_modules/loader-utils/README.md | 217 ++++++++++++++ .../node_modules/loader-utils/index.js | 331 +++++++++++++++++++++ .../loader-utils/node_modules/.bin/json5 | 1 + .../node_modules/loader-utils/package.json | 31 ++ node_modules/html-webpack-plugin/package.json | 10 +- 11 files changed, 679 insertions(+), 36 deletions(-) create mode 100644 node_modules/html-webpack-plugin/node_modules/loader-utils/LICENSE create mode 100644 node_modules/html-webpack-plugin/node_modules/loader-utils/README.md create mode 100644 node_modules/html-webpack-plugin/node_modules/loader-utils/index.js create mode 120000 node_modules/html-webpack-plugin/node_modules/loader-utils/node_modules/.bin/json5 create mode 100644 node_modules/html-webpack-plugin/node_modules/loader-utils/package.json (limited to 'node_modules/html-webpack-plugin') diff --git a/node_modules/html-webpack-plugin/CHANGELOG.md b/node_modules/html-webpack-plugin/CHANGELOG.md index 1aca56867..25d1d2d47 100644 --- a/node_modules/html-webpack-plugin/CHANGELOG.md +++ b/node_modules/html-webpack-plugin/CHANGELOG.md @@ -1,6 +1,19 @@ Change History ============== +v2.30.1 +--- +* Revert part the performance optimization (#723) because of #753. + +v2.30.0 +--- +* Add manual sort +* Performance improvements (#723) + +v2.29.0 +--- +* Add support for Webpack 3 + v2.28.0 --- * Backport 3.x void tag for plugin authors diff --git a/node_modules/html-webpack-plugin/README.md b/node_modules/html-webpack-plugin/README.md index 46259223e..e0fd037b7 100644 --- a/node_modules/html-webpack-plugin/README.md +++ b/node_modules/html-webpack-plugin/README.md @@ -1,6 +1,6 @@ HTML Webpack Plugin =================== -[![npm version](https://badge.fury.io/js/html-webpack-plugin.svg)](http://badge.fury.io/js/html-webpack-plugin) [![Dependency Status](https://david-dm.org/ampedandwired/html-webpack-plugin.svg)](https://david-dm.org/ampedandwired/html-webpack-plugin) [![Build status](https://travis-ci.org/ampedandwired/html-webpack-plugin.svg)](https://travis-ci.org/ampedandwired/html-webpack-plugin) [![Windows build status](https://ci.appveyor.com/api/projects/status/github/ampedandwired/html-webpack-plugin?svg=true&branch=master)](https://ci.appveyor.com/project/jantimon/html-webpack-plugin) [![js-semistandard-style](https://img.shields.io/badge/code%20style-semistandard-brightgreen.svg?style=flat-square)](https://github.com/Flet/semistandard) [![bitHound Dependencies](https://www.bithound.io/github/ampedandwired/html-webpack-plugin/badges/dependencies.svg)](https://www.bithound.io/github/ampedandwired/html-webpack-plugin/master/dependencies/npm) [![license](https://img.shields.io/github/license/mashape/apistatus.svg?maxAge=2592000)]() +[![npm version](https://badge.fury.io/js/html-webpack-plugin.svg)](http://badge.fury.io/js/html-webpack-plugin) [![Dependency Status](https://david-dm.org/jantimon/html-webpack-plugin.svg)](https://david-dm.org/jantimon/html-webpack-plugin) [![Build status](https://travis-ci.org/jantimon/html-webpack-plugin.svg)](https://travis-ci.org/jantimon/html-webpack-plugin) [![Windows build status](https://ci.appveyor.com/api/projects/status/github/jantimon/html-webpack-plugin?svg=true&branch=master)](https://ci.appveyor.com/project/jantimon/html-webpack-plugin) [![js-semistandard-style](https://img.shields.io/badge/code%20style-semistandard-brightgreen.svg?style=flat-square)](https://github.com/Flet/semistandard) [![bitHound Dependencies](https://www.bithound.io/github/jantimon/html-webpack-plugin/badges/dependencies.svg)](https://www.bithound.io/github/jantimon/html-webpack-plugin/master/dependencies/npm) [![license](https://img.shields.io/github/license/mashape/apistatus.svg?maxAge=2592000)]() [![NPM](https://nodei.co/npm/html-webpack-plugin.png?downloads=true&downloadRank=true&stars=true)](https://nodei.co/npm/html-webpack-plugin/) @@ -9,7 +9,7 @@ webpack bundles. This is especially useful for webpack bundles that include a hash in the filename which changes every compilation. You can either let the plugin generate an HTML file for you, supply your own template using lodash templates or use your own loader. -Maintainer: Jan Nicklas [@jantimon](https://twitter.com/jantimon) +Maintainer: Jan Nicklas [@jantimon](https://twitter.com/jantimon) and Thomas Sileghem [@mastilver](https://twitter.com/mastilver) Installation ------------ @@ -21,20 +21,23 @@ $ npm install html-webpack-plugin --save-dev Third party addons: ------------- -The html-webpack-plugin provides [hooks](https://github.com/ampedandwired/html-webpack-plugin#events) to extend it to your needs. +The html-webpack-plugin provides [hooks](https://github.com/jantimon/html-webpack-plugin#events) to extend it to your needs. There are already some really powerful plugins which can be integrated with zero configuration: * [webpack-subresource-integrity](https://www.npmjs.com/package/webpack-subresource-integrity) for enhanced asset security * [appcache-webpack-plugin](https://github.com/lettertwo/appcache-webpack-plugin) for iOS and Android offline usage * [favicons-webpack-plugin](https://github.com/jantimon/favicons-webpack-plugin) which generates favicons and icons for iOS, Android and desktop browsers - * [html-webpack-harddisk-plugin](https://github.com/jantimon/html-webpack-harddisk-plugin) + * [html-webpack-harddisk-plugin](https://github.com/jantimon/html-webpack-harddisk-plugin) can be used to always write to disk the html file, useful when webpack-dev-server / HMR are being used * [html-webpack-inline-source-plugin](https://github.com/DustinJackson/html-webpack-inline-source-plugin) to inline your assets in the resulting HTML file - * [html-webpack-exclude-assets-plugin](https://github.com/jamesjieye/html-webpack-exclude-assets-plugin) for excluding assets using regular expressions + * [html-webpack-exclude-assets-plugin](https://github.com/jamesjieye/html-webpack-exclude-assets-plugin) for excluding assets using regular expressions * [html-webpack-include-assets-plugin](https://github.com/jharris4/html-webpack-include-assets-plugin) for including lists of js or css file paths (such as those copied by the copy-webpack-plugin). * [script-ext-html-webpack-plugin](https://github.com/numical/script-ext-html-webpack-plugin) to add `async`, `defer` or `module` attributes to your`