├── Chapter 01 └── Sample project │ ├── dist │ ├── index.html │ └── main.js │ ├── package-lock.json │ ├── package.json │ └── src │ └── index.js ├── Chapter 02 ├── Caching │ ├── dist │ │ └── main.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── index.js │ └── webpack.config.js ├── Dynamic Imports │ ├── dist │ │ └── main.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── another-module.js │ │ └── index.js │ └── webpack.config.js ├── Entry Points │ ├── dist │ │ └── main.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── another-module.js │ │ └── index.js │ └── webpack.config.js └── Preventing duplication with SplitChunksPlugin │ ├── dist │ └── main.js │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── another-module.js │ └── index.js │ └── webpack.config.js ├── Chapter 03 ├── Cleaning up the Distribution Directory │ ├── dist │ │ └── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── index.js │ │ └── print.js │ └── webpack.config.js ├── Loading_CSS │ ├── dist │ │ ├── bundle.js │ │ └── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── index.js │ │ └── style.css │ └── webpack.config.js ├── Loading_Fonts │ ├── dist │ │ └── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── icon.png │ │ ├── index.js │ │ ├── open-sans-v17-latin-regular.woff │ │ ├── open-sans-v17-latin-regular.woff2 │ │ └── style.css │ └── webpack.config.js ├── Loading_Images │ ├── dist │ │ ├── bundle.js │ │ └── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── icon.png │ │ ├── index.js │ │ └── style.css │ └── webpack.config.js ├── Loading_data │ ├── dist │ │ └── index.html │ ├── node_modules │ │ └── .bin │ │ │ ├── acorn │ │ │ ├── acorn.cmd │ │ │ ├── acorn.ps1 │ │ │ ├── atob │ │ │ ├── atob.cmd │ │ │ ├── atob.ps1 │ │ │ ├── cssesc │ │ │ ├── cssesc.cmd │ │ │ ├── cssesc.ps1 │ │ │ ├── errno │ │ │ ├── errno.cmd │ │ │ ├── errno.ps1 │ │ │ ├── import-local-fixture │ │ │ ├── import-local-fixture.cmd │ │ │ ├── import-local-fixture.ps1 │ │ │ ├── json5 │ │ │ ├── json5.cmd │ │ │ ├── json5.ps1 │ │ │ ├── miller-rabin │ │ │ ├── miller-rabin.cmd │ │ │ ├── miller-rabin.ps1 │ │ │ ├── mkdirp │ │ │ ├── mkdirp.cmd │ │ │ ├── mkdirp.ps1 │ │ │ ├── rimraf │ │ │ ├── rimraf.cmd │ │ │ ├── rimraf.ps1 │ │ │ ├── semver │ │ │ ├── semver.cmd │ │ │ ├── semver.ps1 │ │ │ ├── sha.js │ │ │ ├── sha.js.cmd │ │ │ ├── sha.js.ps1 │ │ │ ├── terser │ │ │ ├── terser.cmd │ │ │ ├── terser.ps1 │ │ │ ├── webpack │ │ │ ├── webpack-cli │ │ │ ├── webpack-cli.cmd │ │ │ ├── webpack-cli.ps1 │ │ │ ├── webpack.cmd │ │ │ ├── webpack.ps1 │ │ │ ├── which │ │ │ ├── which.cmd │ │ │ └── which.ps1 │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── data.xml │ │ ├── icon.png │ │ ├── index.js │ │ ├── open-sans-v17-latin-regular.woff │ │ ├── open-sans-v17-latin-regular.woff2 │ │ └── style.css │ └── webpack.config.js ├── Output management tutorial preparation │ ├── dist │ │ └── index.html │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── index.js │ │ └── print.js │ └── webpack.config.js ├── Setting up HtmlWebpackPlugin │ ├── dist │ │ ├── app.bundle.js │ │ ├── index.html │ │ └── print.bundle.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── index.js │ │ └── print.js │ └── webpack.config.js └── Wrapping up the tutorial with best practice │ ├── dist │ └── index.html │ ├── node_modules │ └── .bin │ │ ├── acorn │ │ ├── acorn.cmd │ │ ├── acorn.ps1 │ │ ├── atob │ │ ├── atob.cmd │ │ ├── atob.ps1 │ │ ├── cssesc │ │ ├── cssesc.cmd │ │ ├── cssesc.ps1 │ │ ├── errno │ │ ├── errno.cmd │ │ ├── errno.ps1 │ │ ├── import-local-fixture │ │ ├── import-local-fixture.cmd │ │ ├── import-local-fixture.ps1 │ │ ├── json5 │ │ ├── json5.cmd │ │ ├── json5.ps1 │ │ ├── miller-rabin │ │ ├── miller-rabin.cmd │ │ ├── miller-rabin.ps1 │ │ ├── mkdirp │ │ ├── mkdirp.cmd │ │ ├── mkdirp.ps1 │ │ ├── rimraf │ │ ├── rimraf.cmd │ │ ├── rimraf.ps1 │ │ ├── semver │ │ ├── semver.cmd │ │ ├── semver.ps1 │ │ ├── sha.js │ │ ├── sha.js.cmd │ │ ├── sha.js.ps1 │ │ ├── terser │ │ ├── terser.cmd │ │ ├── terser.ps1 │ │ ├── webpack │ │ ├── webpack-cli │ │ ├── webpack-cli.cmd │ │ ├── webpack-cli.ps1 │ │ ├── webpack.cmd │ │ ├── webpack.ps1 │ │ ├── which │ │ ├── which.cmd │ │ └── which.ps1 │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── data.xml │ ├── icon.png │ ├── index.js │ ├── open-sans-v17-latin-regular.woff │ ├── open-sans-v17-latin-regular.woff2 │ └── style.css │ └── webpack.config.js ├── Chapter 04 ├── The Node.js API │ └── README.txt ├── cache-loader │ ├── dist │ │ └── main.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── index.js │ └── webpack.config.js ├── coffee-loader │ ├── dist │ │ └── main.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── index.js │ └── webpack.config.js ├── coverjs-loader │ ├── cover-my-client-tests.js │ ├── dist │ │ └── main.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── index.js │ └── webpackOptions.js ├── i18n-loader │ ├── dist │ │ └── main.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── file.js │ │ ├── index.js │ │ └── style.css │ └── webpack.config.js ├── imports-loader │ ├── dist │ │ └── main.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── example.js │ │ └── index.js │ └── webpack.config.js ├── less-loader │ ├── dist │ │ └── main.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── index.js │ └── webpack.config.js ├── polymer-loader │ ├── dist │ │ └── main.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── index.js │ └── webpack.config.js ├── script-loader │ ├── dist │ │ └── main.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── index.js │ └── webpack.config.js ├── source-map-loader │ ├── dist │ │ └── main.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── index.js │ └── webpack.config.js └── worker-loader │ ├── dist │ ├── App.js │ └── main.js │ ├── package-lock.json │ ├── package.json │ ├── src │ └── index.js │ └── webpack.config.js ├── Chapter 05 ├── Working with Angular │ ├── dist │ │ ├── app.bundle.js │ │ └── app.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── index.js │ │ └── main.ts │ └── webpack.config.js ├── Working with Vue │ ├── dist │ │ └── main.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── index.js │ └── webpack.config.js └── Working with YAML │ ├── dist │ ├── app.bundle.js │ └── main.js │ ├── package-lock.json │ ├── package.json │ ├── src │ └── index.js │ └── webpack.config.js ├── Chapter 06 ├── Building our first federated application │ ├── App one │ │ └── bundle.js │ ├── App three │ │ └── bundle.js │ └── App two │ │ └── bundle.js ├── Integrating task runners │ ├── README.txt │ ├── gulpfile.js │ └── karma.conf.js ├── Production setup │ ├── dist │ │ └── main.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── index.js │ ├── webpack.common.js │ ├── webpack.config.js │ ├── webpack.dev.js │ └── webpack.prod.js └── Progressive web applications │ ├── dist │ └── main.js │ ├── package-lock.json │ ├── package.json │ ├── src │ └── index.js │ └── webpack.config.js ├── Chapter 07 ├── Adding a utility │ ├── dist │ │ ├── bundle.js │ │ └── main.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── index.js │ │ ├── math.js │ │ ├── print.js │ │ └── style.css │ └── webpack.config.js ├── HMR and style sheets │ ├── dist │ │ └── main.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── index.js │ │ ├── print.js │ │ └── style.css │ └── webpack.config.js ├── Hot module replacement │ ├── dist │ │ └── main.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── index.js │ │ └── print.js │ └── webpack.config.js ├── Migration │ ├── Prerequisites when migrating to version 4 from version 3 │ │ ├── Deprecated- Removed plugins - 2 │ │ │ ├── dist │ │ │ │ └── bundle.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── index.js │ │ │ │ ├── print.js │ │ │ │ └── style.css │ │ │ └── webpack.config.js │ │ ├── Deprecated- Removed plugins - 3 │ │ │ ├── dist │ │ │ │ └── bundle.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── index.js │ │ │ │ ├── print.js │ │ │ │ └── style.css │ │ │ └── webpack.config.js │ │ ├── Deprecated- Removed plugins │ │ │ ├── dist │ │ │ │ └── bundle.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── index.js │ │ │ │ ├── print.js │ │ │ │ └── style.css │ │ │ └── webpack.config.js │ │ ├── Import and CommonJS - 2 │ │ │ ├── dist │ │ │ │ └── bundle.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── example.js │ │ │ │ ├── index.js │ │ │ │ ├── non-esm.js │ │ │ │ └── style.css │ │ │ └── webpack.config.js │ │ ├── Import() and CommonJS - 1 │ │ │ ├── dist │ │ │ │ └── bundle.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── example.js │ │ │ │ ├── index.js │ │ │ │ ├── non-esm.js │ │ │ │ └── style.css │ │ │ └── webpack.config.js │ │ └── Mode │ │ │ ├── dist │ │ │ └── bundle.js │ │ │ ├── package-lock.json │ │ │ ├── package.json │ │ │ ├── src │ │ │ ├── index.js │ │ │ ├── print.js │ │ │ └── style.css │ │ │ └── webpack.config.js │ └── Updating Webpack │ │ ├── mini-css-extract-plugin │ │ ├── dist │ │ │ └── bundle.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── index.js │ │ │ ├── print.js │ │ │ └── style.css │ │ ├── webpack.config.dev.js │ │ ├── webpack.config.js │ │ └── webpack.config.prod.js │ │ ├── uglifyjs-webpack-plugin │ │ ├── dist │ │ │ └── bundle.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ │ ├── index.js │ │ │ ├── print.js │ │ │ └── style.css │ │ ├── webpack.config.dev.js │ │ ├── webpack.config.js │ │ └── webpack.config.prod.js │ │ └── webpack-cli │ │ ├── dist │ │ └── bundle.js │ │ ├── package-lock.json │ │ ├── package.json │ │ ├── src │ │ ├── index.js │ │ ├── print.js │ │ └── style.css │ │ ├── webpack.config.dev.js │ │ ├── webpack.config.js │ │ └── webpack.config.prod.js └── Using DevServer with the Node.js API │ ├── dev-server.js │ ├── dist │ └── main.js │ ├── package-lock.json │ ├── package.json │ ├── src │ ├── index.js │ └── print.js │ └── webpack.config.js ├── Chapter 08 ├── Authoring libraries │ ├── dist │ │ └── main.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── README.txt │ │ ├── index.js │ │ └── ref.json │ └── webpack.config.js ├── Exposing the library │ ├── dist │ │ └── main.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── index.js │ └── webpack.config.js ├── Specifying external limitations │ ├── dist │ │ └── main.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── index.js │ └── webpack.config.js ├── The basic configuration │ ├── dist │ │ └── main.js │ ├── package-lock.json │ ├── package.json │ ├── src │ │ └── index.js │ └── webpack.config.js ├── Unit testing │ └── README.txt └── Using externals to avoid bundling lodash │ ├── dist │ └── main.js │ ├── package-lock.json │ ├── package.json │ ├── src │ └── index.js │ └── webpack.config.js ├── LICENSE └── README.md /Chapter 01/Sample project/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 01/Sample project/dist/index.html -------------------------------------------------------------------------------- /Chapter 01/Sample project/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 01/Sample project/dist/main.js -------------------------------------------------------------------------------- /Chapter 01/Sample project/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 01/Sample project/package-lock.json -------------------------------------------------------------------------------- /Chapter 01/Sample project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 01/Sample project/package.json -------------------------------------------------------------------------------- /Chapter 01/Sample project/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 01/Sample project/src/index.js -------------------------------------------------------------------------------- /Chapter 02/Caching/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 02/Caching/dist/main.js -------------------------------------------------------------------------------- /Chapter 02/Caching/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 02/Caching/package-lock.json -------------------------------------------------------------------------------- /Chapter 02/Caching/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 02/Caching/package.json -------------------------------------------------------------------------------- /Chapter 02/Caching/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 02/Caching/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 02/Caching/webpack.config.js -------------------------------------------------------------------------------- /Chapter 02/Dynamic Imports/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 02/Dynamic Imports/dist/main.js -------------------------------------------------------------------------------- /Chapter 02/Dynamic Imports/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 02/Dynamic Imports/package-lock.json -------------------------------------------------------------------------------- /Chapter 02/Dynamic Imports/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 02/Dynamic Imports/package.json -------------------------------------------------------------------------------- /Chapter 02/Dynamic Imports/src/another-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 02/Dynamic Imports/src/another-module.js -------------------------------------------------------------------------------- /Chapter 02/Dynamic Imports/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 02/Dynamic Imports/src/index.js -------------------------------------------------------------------------------- /Chapter 02/Dynamic Imports/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 02/Dynamic Imports/webpack.config.js -------------------------------------------------------------------------------- /Chapter 02/Entry Points/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 02/Entry Points/dist/main.js -------------------------------------------------------------------------------- /Chapter 02/Entry Points/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 02/Entry Points/package-lock.json -------------------------------------------------------------------------------- /Chapter 02/Entry Points/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 02/Entry Points/package.json -------------------------------------------------------------------------------- /Chapter 02/Entry Points/src/another-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 02/Entry Points/src/another-module.js -------------------------------------------------------------------------------- /Chapter 02/Entry Points/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 02/Entry Points/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 02/Entry Points/webpack.config.js -------------------------------------------------------------------------------- /Chapter 02/Preventing duplication with SplitChunksPlugin/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 02/Preventing duplication with SplitChunksPlugin/dist/main.js -------------------------------------------------------------------------------- /Chapter 02/Preventing duplication with SplitChunksPlugin/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 02/Preventing duplication with SplitChunksPlugin/package-lock.json -------------------------------------------------------------------------------- /Chapter 02/Preventing duplication with SplitChunksPlugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 02/Preventing duplication with SplitChunksPlugin/package.json -------------------------------------------------------------------------------- /Chapter 02/Preventing duplication with SplitChunksPlugin/src/another-module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 02/Preventing duplication with SplitChunksPlugin/src/another-module.js -------------------------------------------------------------------------------- /Chapter 02/Preventing duplication with SplitChunksPlugin/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 02/Preventing duplication with SplitChunksPlugin/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 02/Preventing duplication with SplitChunksPlugin/webpack.config.js -------------------------------------------------------------------------------- /Chapter 03/Cleaning up the Distribution Directory/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Cleaning up the Distribution Directory/dist/index.html -------------------------------------------------------------------------------- /Chapter 03/Cleaning up the Distribution Directory/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Cleaning up the Distribution Directory/package-lock.json -------------------------------------------------------------------------------- /Chapter 03/Cleaning up the Distribution Directory/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Cleaning up the Distribution Directory/package.json -------------------------------------------------------------------------------- /Chapter 03/Cleaning up the Distribution Directory/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 03/Cleaning up the Distribution Directory/src/print.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 03/Cleaning up the Distribution Directory/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Cleaning up the Distribution Directory/webpack.config.js -------------------------------------------------------------------------------- /Chapter 03/Loading_CSS/dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_CSS/dist/bundle.js -------------------------------------------------------------------------------- /Chapter 03/Loading_CSS/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_CSS/dist/index.html -------------------------------------------------------------------------------- /Chapter 03/Loading_CSS/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_CSS/package-lock.json -------------------------------------------------------------------------------- /Chapter 03/Loading_CSS/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_CSS/package.json -------------------------------------------------------------------------------- /Chapter 03/Loading_CSS/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_CSS/src/index.js -------------------------------------------------------------------------------- /Chapter 03/Loading_CSS/src/style.css: -------------------------------------------------------------------------------- 1 | .hello { 2 | color: blue; 3 | } -------------------------------------------------------------------------------- /Chapter 03/Loading_CSS/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_CSS/webpack.config.js -------------------------------------------------------------------------------- /Chapter 03/Loading_Fonts/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_Fonts/dist/index.html -------------------------------------------------------------------------------- /Chapter 03/Loading_Fonts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_Fonts/package-lock.json -------------------------------------------------------------------------------- /Chapter 03/Loading_Fonts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_Fonts/package.json -------------------------------------------------------------------------------- /Chapter 03/Loading_Fonts/src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_Fonts/src/icon.png -------------------------------------------------------------------------------- /Chapter 03/Loading_Fonts/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_Fonts/src/index.js -------------------------------------------------------------------------------- /Chapter 03/Loading_Fonts/src/open-sans-v17-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_Fonts/src/open-sans-v17-latin-regular.woff -------------------------------------------------------------------------------- /Chapter 03/Loading_Fonts/src/open-sans-v17-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_Fonts/src/open-sans-v17-latin-regular.woff2 -------------------------------------------------------------------------------- /Chapter 03/Loading_Fonts/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_Fonts/src/style.css -------------------------------------------------------------------------------- /Chapter 03/Loading_Fonts/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_Fonts/webpack.config.js -------------------------------------------------------------------------------- /Chapter 03/Loading_Images/dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_Images/dist/bundle.js -------------------------------------------------------------------------------- /Chapter 03/Loading_Images/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_Images/dist/index.html -------------------------------------------------------------------------------- /Chapter 03/Loading_Images/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_Images/package-lock.json -------------------------------------------------------------------------------- /Chapter 03/Loading_Images/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_Images/package.json -------------------------------------------------------------------------------- /Chapter 03/Loading_Images/src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_Images/src/icon.png -------------------------------------------------------------------------------- /Chapter 03/Loading_Images/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_Images/src/index.js -------------------------------------------------------------------------------- /Chapter 03/Loading_Images/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_Images/src/style.css -------------------------------------------------------------------------------- /Chapter 03/Loading_Images/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_Images/webpack.config.js -------------------------------------------------------------------------------- /Chapter 03/Loading_data/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/dist/index.html -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/acorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/acorn -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/acorn.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/acorn.cmd -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/acorn.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/acorn.ps1 -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/atob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/atob -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/atob.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/atob.cmd -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/atob.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/atob.ps1 -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/cssesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/cssesc -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/cssesc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/cssesc.cmd -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/cssesc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/cssesc.ps1 -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/errno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/errno -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/errno.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/errno.cmd -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/errno.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/errno.ps1 -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/import-local-fixture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/import-local-fixture -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/import-local-fixture.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/import-local-fixture.cmd -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/import-local-fixture.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/import-local-fixture.ps1 -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/json5 -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/json5.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/json5.cmd -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/json5.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/json5.ps1 -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/miller-rabin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/miller-rabin -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/miller-rabin.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/miller-rabin.cmd -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/miller-rabin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/miller-rabin.ps1 -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/mkdirp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/mkdirp -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/mkdirp.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/mkdirp.cmd -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/mkdirp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/mkdirp.ps1 -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/rimraf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/rimraf -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/rimraf.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/rimraf.cmd -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/rimraf.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/rimraf.ps1 -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/semver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/semver -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/semver.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/semver.cmd -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/semver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/semver.ps1 -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/sha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/sha.js -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/sha.js.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/sha.js.cmd -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/sha.js.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/sha.js.ps1 -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/terser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/terser -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/terser.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/terser.cmd -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/terser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/terser.ps1 -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/webpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/webpack -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/webpack-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/webpack-cli -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/webpack-cli.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/webpack-cli.cmd -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/webpack-cli.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/webpack-cli.ps1 -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/webpack.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/webpack.cmd -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/webpack.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/webpack.ps1 -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/which: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/which -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/which.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/which.cmd -------------------------------------------------------------------------------- /Chapter 03/Loading_data/node_modules/.bin/which.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/node_modules/.bin/which.ps1 -------------------------------------------------------------------------------- /Chapter 03/Loading_data/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/package-lock.json -------------------------------------------------------------------------------- /Chapter 03/Loading_data/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/package.json -------------------------------------------------------------------------------- /Chapter 03/Loading_data/src/data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/src/data.xml -------------------------------------------------------------------------------- /Chapter 03/Loading_data/src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/src/icon.png -------------------------------------------------------------------------------- /Chapter 03/Loading_data/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/src/index.js -------------------------------------------------------------------------------- /Chapter 03/Loading_data/src/open-sans-v17-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/src/open-sans-v17-latin-regular.woff -------------------------------------------------------------------------------- /Chapter 03/Loading_data/src/open-sans-v17-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/src/open-sans-v17-latin-regular.woff2 -------------------------------------------------------------------------------- /Chapter 03/Loading_data/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/src/style.css -------------------------------------------------------------------------------- /Chapter 03/Loading_data/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Loading_data/webpack.config.js -------------------------------------------------------------------------------- /Chapter 03/Output management tutorial preparation/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Output management tutorial preparation/dist/index.html -------------------------------------------------------------------------------- /Chapter 03/Output management tutorial preparation/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Output management tutorial preparation/package-lock.json -------------------------------------------------------------------------------- /Chapter 03/Output management tutorial preparation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Output management tutorial preparation/package.json -------------------------------------------------------------------------------- /Chapter 03/Output management tutorial preparation/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Output management tutorial preparation/src/index.js -------------------------------------------------------------------------------- /Chapter 03/Output management tutorial preparation/src/print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Output management tutorial preparation/src/print.js -------------------------------------------------------------------------------- /Chapter 03/Output management tutorial preparation/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Output management tutorial preparation/webpack.config.js -------------------------------------------------------------------------------- /Chapter 03/Setting up HtmlWebpackPlugin/dist/app.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Setting up HtmlWebpackPlugin/dist/app.bundle.js -------------------------------------------------------------------------------- /Chapter 03/Setting up HtmlWebpackPlugin/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Setting up HtmlWebpackPlugin/dist/index.html -------------------------------------------------------------------------------- /Chapter 03/Setting up HtmlWebpackPlugin/dist/print.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Setting up HtmlWebpackPlugin/dist/print.bundle.js -------------------------------------------------------------------------------- /Chapter 03/Setting up HtmlWebpackPlugin/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Setting up HtmlWebpackPlugin/package-lock.json -------------------------------------------------------------------------------- /Chapter 03/Setting up HtmlWebpackPlugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Setting up HtmlWebpackPlugin/package.json -------------------------------------------------------------------------------- /Chapter 03/Setting up HtmlWebpackPlugin/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 03/Setting up HtmlWebpackPlugin/src/print.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 03/Setting up HtmlWebpackPlugin/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Setting up HtmlWebpackPlugin/webpack.config.js -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/dist/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/dist/index.html -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/acorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/acorn -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/acorn.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/acorn.cmd -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/acorn.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/acorn.ps1 -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/atob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/atob -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/atob.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/atob.cmd -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/atob.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/atob.ps1 -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/cssesc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/cssesc -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/cssesc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/cssesc.cmd -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/cssesc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/cssesc.ps1 -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/errno: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/errno -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/errno.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/errno.cmd -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/errno.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/errno.ps1 -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/import-local-fixture: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/import-local-fixture -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/import-local-fixture.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/import-local-fixture.cmd -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/import-local-fixture.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/import-local-fixture.ps1 -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/json5 -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/json5.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/json5.cmd -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/json5.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/json5.ps1 -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/miller-rabin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/miller-rabin -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/miller-rabin.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/miller-rabin.cmd -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/miller-rabin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/miller-rabin.ps1 -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/mkdirp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/mkdirp -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/mkdirp.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/mkdirp.cmd -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/mkdirp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/mkdirp.ps1 -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/rimraf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/rimraf -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/rimraf.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/rimraf.cmd -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/rimraf.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/rimraf.ps1 -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/semver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/semver -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/semver.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/semver.cmd -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/semver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/semver.ps1 -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/sha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/sha.js -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/sha.js.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/sha.js.cmd -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/sha.js.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/sha.js.ps1 -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/terser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/terser -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/terser.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/terser.cmd -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/terser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/terser.ps1 -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/webpack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/webpack -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/webpack-cli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/webpack-cli -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/webpack-cli.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/webpack-cli.cmd -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/webpack-cli.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/webpack-cli.ps1 -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/webpack.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/webpack.cmd -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/webpack.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/webpack.ps1 -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/which: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/which -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/which.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/which.cmd -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/which.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/node_modules/.bin/which.ps1 -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/package-lock.json -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/package.json -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/src/data.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/src/data.xml -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/src/icon.png -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/src/index.js -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/src/open-sans-v17-latin-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/src/open-sans-v17-latin-regular.woff -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/src/open-sans-v17-latin-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/src/open-sans-v17-latin-regular.woff2 -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/src/style.css -------------------------------------------------------------------------------- /Chapter 03/Wrapping up the tutorial with best practice/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 03/Wrapping up the tutorial with best practice/webpack.config.js -------------------------------------------------------------------------------- /Chapter 04/The Node.js API/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/The Node.js API/README.txt -------------------------------------------------------------------------------- /Chapter 04/cache-loader/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/cache-loader/dist/main.js -------------------------------------------------------------------------------- /Chapter 04/cache-loader/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/cache-loader/package-lock.json -------------------------------------------------------------------------------- /Chapter 04/cache-loader/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/cache-loader/package.json -------------------------------------------------------------------------------- /Chapter 04/cache-loader/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 04/cache-loader/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/cache-loader/webpack.config.js -------------------------------------------------------------------------------- /Chapter 04/coffee-loader/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/coffee-loader/dist/main.js -------------------------------------------------------------------------------- /Chapter 04/coffee-loader/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/coffee-loader/package-lock.json -------------------------------------------------------------------------------- /Chapter 04/coffee-loader/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/coffee-loader/package.json -------------------------------------------------------------------------------- /Chapter 04/coffee-loader/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 04/coffee-loader/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/coffee-loader/webpack.config.js -------------------------------------------------------------------------------- /Chapter 04/coverjs-loader/cover-my-client-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/coverjs-loader/cover-my-client-tests.js -------------------------------------------------------------------------------- /Chapter 04/coverjs-loader/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/coverjs-loader/dist/main.js -------------------------------------------------------------------------------- /Chapter 04/coverjs-loader/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/coverjs-loader/package-lock.json -------------------------------------------------------------------------------- /Chapter 04/coverjs-loader/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/coverjs-loader/package.json -------------------------------------------------------------------------------- /Chapter 04/coverjs-loader/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 04/coverjs-loader/webpackOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/coverjs-loader/webpackOptions.js -------------------------------------------------------------------------------- /Chapter 04/i18n-loader/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/i18n-loader/dist/main.js -------------------------------------------------------------------------------- /Chapter 04/i18n-loader/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/i18n-loader/package-lock.json -------------------------------------------------------------------------------- /Chapter 04/i18n-loader/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/i18n-loader/package.json -------------------------------------------------------------------------------- /Chapter 04/i18n-loader/src/file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/i18n-loader/src/file.js -------------------------------------------------------------------------------- /Chapter 04/i18n-loader/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/i18n-loader/src/index.js -------------------------------------------------------------------------------- /Chapter 04/i18n-loader/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/i18n-loader/src/style.css -------------------------------------------------------------------------------- /Chapter 04/i18n-loader/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/i18n-loader/webpack.config.js -------------------------------------------------------------------------------- /Chapter 04/imports-loader/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/imports-loader/dist/main.js -------------------------------------------------------------------------------- /Chapter 04/imports-loader/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/imports-loader/package-lock.json -------------------------------------------------------------------------------- /Chapter 04/imports-loader/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/imports-loader/package.json -------------------------------------------------------------------------------- /Chapter 04/imports-loader/src/example.js: -------------------------------------------------------------------------------- 1 | $("img").doSomeAwesomeJqueryPluginStuff(); -------------------------------------------------------------------------------- /Chapter 04/imports-loader/src/index.js: -------------------------------------------------------------------------------- 1 | require("imports-loader?$=jquery!./example.js"); -------------------------------------------------------------------------------- /Chapter 04/imports-loader/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/imports-loader/webpack.config.js -------------------------------------------------------------------------------- /Chapter 04/less-loader/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/less-loader/dist/main.js -------------------------------------------------------------------------------- /Chapter 04/less-loader/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/less-loader/package-lock.json -------------------------------------------------------------------------------- /Chapter 04/less-loader/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/less-loader/package.json -------------------------------------------------------------------------------- /Chapter 04/less-loader/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 04/less-loader/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/less-loader/webpack.config.js -------------------------------------------------------------------------------- /Chapter 04/polymer-loader/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/polymer-loader/dist/main.js -------------------------------------------------------------------------------- /Chapter 04/polymer-loader/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/polymer-loader/package-lock.json -------------------------------------------------------------------------------- /Chapter 04/polymer-loader/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/polymer-loader/package.json -------------------------------------------------------------------------------- /Chapter 04/polymer-loader/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 04/polymer-loader/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/polymer-loader/webpack.config.js -------------------------------------------------------------------------------- /Chapter 04/script-loader/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/script-loader/dist/main.js -------------------------------------------------------------------------------- /Chapter 04/script-loader/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/script-loader/package-lock.json -------------------------------------------------------------------------------- /Chapter 04/script-loader/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/script-loader/package.json -------------------------------------------------------------------------------- /Chapter 04/script-loader/src/index.js: -------------------------------------------------------------------------------- 1 | import './script.exec.js'; -------------------------------------------------------------------------------- /Chapter 04/script-loader/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/script-loader/webpack.config.js -------------------------------------------------------------------------------- /Chapter 04/source-map-loader/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/source-map-loader/dist/main.js -------------------------------------------------------------------------------- /Chapter 04/source-map-loader/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/source-map-loader/package-lock.json -------------------------------------------------------------------------------- /Chapter 04/source-map-loader/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/source-map-loader/package.json -------------------------------------------------------------------------------- /Chapter 04/source-map-loader/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 04/source-map-loader/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/source-map-loader/webpack.config.js -------------------------------------------------------------------------------- /Chapter 04/worker-loader/dist/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/worker-loader/dist/App.js -------------------------------------------------------------------------------- /Chapter 04/worker-loader/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/worker-loader/dist/main.js -------------------------------------------------------------------------------- /Chapter 04/worker-loader/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/worker-loader/package-lock.json -------------------------------------------------------------------------------- /Chapter 04/worker-loader/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/worker-loader/package.json -------------------------------------------------------------------------------- /Chapter 04/worker-loader/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 04/worker-loader/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 04/worker-loader/webpack.config.js -------------------------------------------------------------------------------- /Chapter 05/Working with Angular/dist/app.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 05/Working with Angular/dist/app.bundle.js -------------------------------------------------------------------------------- /Chapter 05/Working with Angular/dist/app.js: -------------------------------------------------------------------------------- 1 | output: { 2 | filename: 'app.js' 3 | } -------------------------------------------------------------------------------- /Chapter 05/Working with Angular/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 05/Working with Angular/package-lock.json -------------------------------------------------------------------------------- /Chapter 05/Working with Angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 05/Working with Angular/package.json -------------------------------------------------------------------------------- /Chapter 05/Working with Angular/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 05/Working with Angular/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 05/Working with Angular/src/main.ts -------------------------------------------------------------------------------- /Chapter 05/Working with Angular/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 05/Working with Angular/webpack.config.js -------------------------------------------------------------------------------- /Chapter 05/Working with Vue/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 05/Working with Vue/dist/main.js -------------------------------------------------------------------------------- /Chapter 05/Working with Vue/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 05/Working with Vue/package-lock.json -------------------------------------------------------------------------------- /Chapter 05/Working with Vue/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 05/Working with Vue/package.json -------------------------------------------------------------------------------- /Chapter 05/Working with Vue/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 05/Working with Vue/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 05/Working with Vue/webpack.config.js -------------------------------------------------------------------------------- /Chapter 05/Working with YAML/dist/app.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 05/Working with YAML/dist/app.bundle.js -------------------------------------------------------------------------------- /Chapter 05/Working with YAML/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 05/Working with YAML/dist/main.js -------------------------------------------------------------------------------- /Chapter 05/Working with YAML/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 05/Working with YAML/package-lock.json -------------------------------------------------------------------------------- /Chapter 05/Working with YAML/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 05/Working with YAML/package.json -------------------------------------------------------------------------------- /Chapter 05/Working with YAML/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 05/Working with YAML/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 05/Working with YAML/webpack.config.js -------------------------------------------------------------------------------- /Chapter 06/Building our first federated application/App one/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 06/Building our first federated application/App one/bundle.js -------------------------------------------------------------------------------- /Chapter 06/Building our first federated application/App three/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 06/Building our first federated application/App three/bundle.js -------------------------------------------------------------------------------- /Chapter 06/Building our first federated application/App two/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 06/Building our first federated application/App two/bundle.js -------------------------------------------------------------------------------- /Chapter 06/Integrating task runners/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 06/Integrating task runners/README.txt -------------------------------------------------------------------------------- /Chapter 06/Integrating task runners/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 06/Integrating task runners/gulpfile.js -------------------------------------------------------------------------------- /Chapter 06/Integrating task runners/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 06/Integrating task runners/karma.conf.js -------------------------------------------------------------------------------- /Chapter 06/Production setup/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 06/Production setup/dist/main.js -------------------------------------------------------------------------------- /Chapter 06/Production setup/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 06/Production setup/package-lock.json -------------------------------------------------------------------------------- /Chapter 06/Production setup/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 06/Production setup/package.json -------------------------------------------------------------------------------- /Chapter 06/Production setup/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 06/Production setup/src/index.js -------------------------------------------------------------------------------- /Chapter 06/Production setup/webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 06/Production setup/webpack.common.js -------------------------------------------------------------------------------- /Chapter 06/Production setup/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 06/Production setup/webpack.config.js -------------------------------------------------------------------------------- /Chapter 06/Production setup/webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 06/Production setup/webpack.dev.js -------------------------------------------------------------------------------- /Chapter 06/Production setup/webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 06/Production setup/webpack.prod.js -------------------------------------------------------------------------------- /Chapter 06/Progressive web applications/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 06/Progressive web applications/dist/main.js -------------------------------------------------------------------------------- /Chapter 06/Progressive web applications/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 06/Progressive web applications/package-lock.json -------------------------------------------------------------------------------- /Chapter 06/Progressive web applications/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 06/Progressive web applications/package.json -------------------------------------------------------------------------------- /Chapter 06/Progressive web applications/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 06/Progressive web applications/src/index.js -------------------------------------------------------------------------------- /Chapter 06/Progressive web applications/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 06/Progressive web applications/webpack.config.js -------------------------------------------------------------------------------- /Chapter 07/Adding a utility/dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Adding a utility/dist/bundle.js -------------------------------------------------------------------------------- /Chapter 07/Adding a utility/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Adding a utility/dist/main.js -------------------------------------------------------------------------------- /Chapter 07/Adding a utility/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Adding a utility/package-lock.json -------------------------------------------------------------------------------- /Chapter 07/Adding a utility/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Adding a utility/package.json -------------------------------------------------------------------------------- /Chapter 07/Adding a utility/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Adding a utility/src/index.js -------------------------------------------------------------------------------- /Chapter 07/Adding a utility/src/math.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Adding a utility/src/math.js -------------------------------------------------------------------------------- /Chapter 07/Adding a utility/src/print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Adding a utility/src/print.js -------------------------------------------------------------------------------- /Chapter 07/Adding a utility/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Adding a utility/src/style.css -------------------------------------------------------------------------------- /Chapter 07/Adding a utility/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Adding a utility/webpack.config.js -------------------------------------------------------------------------------- /Chapter 07/HMR and style sheets/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/HMR and style sheets/dist/main.js -------------------------------------------------------------------------------- /Chapter 07/HMR and style sheets/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/HMR and style sheets/package-lock.json -------------------------------------------------------------------------------- /Chapter 07/HMR and style sheets/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/HMR and style sheets/package.json -------------------------------------------------------------------------------- /Chapter 07/HMR and style sheets/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/HMR and style sheets/src/index.js -------------------------------------------------------------------------------- /Chapter 07/HMR and style sheets/src/print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/HMR and style sheets/src/print.js -------------------------------------------------------------------------------- /Chapter 07/HMR and style sheets/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/HMR and style sheets/src/style.css -------------------------------------------------------------------------------- /Chapter 07/HMR and style sheets/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/HMR and style sheets/webpack.config.js -------------------------------------------------------------------------------- /Chapter 07/Hot module replacement/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Hot module replacement/dist/main.js -------------------------------------------------------------------------------- /Chapter 07/Hot module replacement/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Hot module replacement/package-lock.json -------------------------------------------------------------------------------- /Chapter 07/Hot module replacement/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Hot module replacement/package.json -------------------------------------------------------------------------------- /Chapter 07/Hot module replacement/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Hot module replacement/src/index.js -------------------------------------------------------------------------------- /Chapter 07/Hot module replacement/src/print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Hot module replacement/src/print.js -------------------------------------------------------------------------------- /Chapter 07/Hot module replacement/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Hot module replacement/webpack.config.js -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Deprecated- Removed plugins - 2/dist/bundle.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Deprecated- Removed plugins - 2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Deprecated- Removed plugins - 2/package-lock.json -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Deprecated- Removed plugins - 2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Deprecated- Removed plugins - 2/package.json -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Deprecated- Removed plugins - 2/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Deprecated- Removed plugins - 2/src/print.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Deprecated- Removed plugins - 2/src/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Deprecated- Removed plugins - 2/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Deprecated- Removed plugins - 2/webpack.config.js -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Deprecated- Removed plugins - 3/dist/bundle.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Deprecated- Removed plugins - 3/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Deprecated- Removed plugins - 3/package-lock.json -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Deprecated- Removed plugins - 3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Deprecated- Removed plugins - 3/package.json -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Deprecated- Removed plugins - 3/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Deprecated- Removed plugins - 3/src/print.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Deprecated- Removed plugins - 3/src/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Deprecated- Removed plugins - 3/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Deprecated- Removed plugins - 3/webpack.config.js -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Deprecated- Removed plugins/dist/bundle.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Deprecated- Removed plugins/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Deprecated- Removed plugins/package-lock.json -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Deprecated- Removed plugins/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Deprecated- Removed plugins/package.json -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Deprecated- Removed plugins/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Deprecated- Removed plugins/src/print.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Deprecated- Removed plugins/src/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Deprecated- Removed plugins/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Deprecated- Removed plugins/webpack.config.js -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Import and CommonJS - 2/dist/bundle.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Import and CommonJS - 2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Import and CommonJS - 2/package-lock.json -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Import and CommonJS - 2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Import and CommonJS - 2/package.json -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Import and CommonJS - 2/src/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Import and CommonJS - 2/src/example.js -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Import and CommonJS - 2/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Import and CommonJS - 2/src/non-esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Import and CommonJS - 2/src/non-esm.js -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Import and CommonJS - 2/src/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Import and CommonJS - 2/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Import and CommonJS - 2/webpack.config.js -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Import() and CommonJS - 1/dist/bundle.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Import() and CommonJS - 1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Import() and CommonJS - 1/package-lock.json -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Import() and CommonJS - 1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Import() and CommonJS - 1/package.json -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Import() and CommonJS - 1/src/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Import() and CommonJS - 1/src/example.js -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Import() and CommonJS - 1/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Import() and CommonJS - 1/src/non-esm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Import() and CommonJS - 1/src/non-esm.js -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Import() and CommonJS - 1/src/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Import() and CommonJS - 1/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Import() and CommonJS - 1/webpack.config.js -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Mode/dist/bundle.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Mode/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Mode/package-lock.json -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Mode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Mode/package.json -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Mode/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Mode/src/print.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Mode/src/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Mode/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Migration/Prerequisites when migrating to version 4 from version 3/Mode/webpack.config.js -------------------------------------------------------------------------------- /Chapter 07/Migration/Updating Webpack/mini-css-extract-plugin/dist/bundle.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Updating Webpack/mini-css-extract-plugin/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Migration/Updating Webpack/mini-css-extract-plugin/package-lock.json -------------------------------------------------------------------------------- /Chapter 07/Migration/Updating Webpack/mini-css-extract-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Migration/Updating Webpack/mini-css-extract-plugin/package.json -------------------------------------------------------------------------------- /Chapter 07/Migration/Updating Webpack/mini-css-extract-plugin/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Updating Webpack/mini-css-extract-plugin/src/print.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Updating Webpack/mini-css-extract-plugin/src/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Updating Webpack/mini-css-extract-plugin/webpack.config.dev.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | mode: 'development', -------------------------------------------------------------------------------- /Chapter 07/Migration/Updating Webpack/mini-css-extract-plugin/webpack.config.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Updating Webpack/mini-css-extract-plugin/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Migration/Updating Webpack/mini-css-extract-plugin/webpack.config.prod.js -------------------------------------------------------------------------------- /Chapter 07/Migration/Updating Webpack/uglifyjs-webpack-plugin/dist/bundle.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Updating Webpack/uglifyjs-webpack-plugin/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Migration/Updating Webpack/uglifyjs-webpack-plugin/package-lock.json -------------------------------------------------------------------------------- /Chapter 07/Migration/Updating Webpack/uglifyjs-webpack-plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Migration/Updating Webpack/uglifyjs-webpack-plugin/package.json -------------------------------------------------------------------------------- /Chapter 07/Migration/Updating Webpack/uglifyjs-webpack-plugin/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Updating Webpack/uglifyjs-webpack-plugin/src/print.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Updating Webpack/uglifyjs-webpack-plugin/src/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Updating Webpack/uglifyjs-webpack-plugin/webpack.config.dev.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | mode: 'development', -------------------------------------------------------------------------------- /Chapter 07/Migration/Updating Webpack/uglifyjs-webpack-plugin/webpack.config.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Updating Webpack/uglifyjs-webpack-plugin/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Migration/Updating Webpack/uglifyjs-webpack-plugin/webpack.config.prod.js -------------------------------------------------------------------------------- /Chapter 07/Migration/Updating Webpack/webpack-cli/dist/bundle.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Updating Webpack/webpack-cli/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Migration/Updating Webpack/webpack-cli/package-lock.json -------------------------------------------------------------------------------- /Chapter 07/Migration/Updating Webpack/webpack-cli/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Migration/Updating Webpack/webpack-cli/package.json -------------------------------------------------------------------------------- /Chapter 07/Migration/Updating Webpack/webpack-cli/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Updating Webpack/webpack-cli/src/print.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Updating Webpack/webpack-cli/src/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Updating Webpack/webpack-cli/webpack.config.dev.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | mode: 'development', -------------------------------------------------------------------------------- /Chapter 07/Migration/Updating Webpack/webpack-cli/webpack.config.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 07/Migration/Updating Webpack/webpack-cli/webpack.config.prod.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | mode: 'production', -------------------------------------------------------------------------------- /Chapter 07/Using DevServer with the Node.js API/dev-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Using DevServer with the Node.js API/dev-server.js -------------------------------------------------------------------------------- /Chapter 07/Using DevServer with the Node.js API/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Using DevServer with the Node.js API/dist/main.js -------------------------------------------------------------------------------- /Chapter 07/Using DevServer with the Node.js API/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Using DevServer with the Node.js API/package-lock.json -------------------------------------------------------------------------------- /Chapter 07/Using DevServer with the Node.js API/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Using DevServer with the Node.js API/package.json -------------------------------------------------------------------------------- /Chapter 07/Using DevServer with the Node.js API/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Using DevServer with the Node.js API/src/index.js -------------------------------------------------------------------------------- /Chapter 07/Using DevServer with the Node.js API/src/print.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 07/Using DevServer with the Node.js API/src/print.js -------------------------------------------------------------------------------- /Chapter 07/Using DevServer with the Node.js API/webpack.config.js: -------------------------------------------------------------------------------- 1 | new WebpackDevServer(compiler, options) -------------------------------------------------------------------------------- /Chapter 08/Authoring libraries/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 08/Authoring libraries/dist/main.js -------------------------------------------------------------------------------- /Chapter 08/Authoring libraries/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 08/Authoring libraries/package-lock.json -------------------------------------------------------------------------------- /Chapter 08/Authoring libraries/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 08/Authoring libraries/package.json -------------------------------------------------------------------------------- /Chapter 08/Authoring libraries/src/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 08/Authoring libraries/src/README.txt -------------------------------------------------------------------------------- /Chapter 08/Authoring libraries/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 08/Authoring libraries/src/index.js -------------------------------------------------------------------------------- /Chapter 08/Authoring libraries/src/ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 08/Authoring libraries/src/ref.json -------------------------------------------------------------------------------- /Chapter 08/Authoring libraries/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 08/Authoring libraries/webpack.config.js -------------------------------------------------------------------------------- /Chapter 08/Exposing the library/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 08/Exposing the library/dist/main.js -------------------------------------------------------------------------------- /Chapter 08/Exposing the library/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 08/Exposing the library/package-lock.json -------------------------------------------------------------------------------- /Chapter 08/Exposing the library/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 08/Exposing the library/package.json -------------------------------------------------------------------------------- /Chapter 08/Exposing the library/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 08/Exposing the library/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 08/Exposing the library/webpack.config.js -------------------------------------------------------------------------------- /Chapter 08/Specifying external limitations/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 08/Specifying external limitations/dist/main.js -------------------------------------------------------------------------------- /Chapter 08/Specifying external limitations/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 08/Specifying external limitations/package-lock.json -------------------------------------------------------------------------------- /Chapter 08/Specifying external limitations/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 08/Specifying external limitations/package.json -------------------------------------------------------------------------------- /Chapter 08/Specifying external limitations/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 08/Specifying external limitations/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 08/Specifying external limitations/webpack.config.js -------------------------------------------------------------------------------- /Chapter 08/The basic configuration/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 08/The basic configuration/dist/main.js -------------------------------------------------------------------------------- /Chapter 08/The basic configuration/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 08/The basic configuration/package-lock.json -------------------------------------------------------------------------------- /Chapter 08/The basic configuration/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 08/The basic configuration/package.json -------------------------------------------------------------------------------- /Chapter 08/The basic configuration/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 08/The basic configuration/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 08/The basic configuration/webpack.config.js -------------------------------------------------------------------------------- /Chapter 08/Unit testing/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 08/Unit testing/README.txt -------------------------------------------------------------------------------- /Chapter 08/Using externals to avoid bundling lodash/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 08/Using externals to avoid bundling lodash/dist/main.js -------------------------------------------------------------------------------- /Chapter 08/Using externals to avoid bundling lodash/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 08/Using externals to avoid bundling lodash/package-lock.json -------------------------------------------------------------------------------- /Chapter 08/Using externals to avoid bundling lodash/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 08/Using externals to avoid bundling lodash/package.json -------------------------------------------------------------------------------- /Chapter 08/Using externals to avoid bundling lodash/src/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Chapter 08/Using externals to avoid bundling lodash/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/Chapter 08/Using externals to avoid bundling lodash/webpack.config.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/Webpack-5-Up-and-Running/HEAD/README.md --------------------------------------------------------------------------------