├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── appveyor.yml ├── bin └── benchmark-append-serializer.js ├── commitlint.config.js ├── index.js ├── lib ├── CacheAsset.js ├── CacheEnhancedResolve.js ├── CacheMd5.js ├── CacheModule.js ├── CacheModuleResolver.js ├── CacheSerializerFactory.js ├── ChalkLoggerPlugin.js ├── ExcludeModulePlugin.js ├── ParallelLauncherPlugin.js ├── ParallelModulePlugin.js ├── SerializerAppend.js ├── SerializerAppend2.js ├── SerializerAppend2Plugin.js ├── SerializerAppendPlugin.js ├── SerializerCacache.js ├── SerializerCacachePlugin.js ├── SerializerFile.js ├── SerializerFilePlugin.js ├── SerializerJson.js ├── SerializerJsonPlugin.js ├── SerializerLeveldb.js ├── SerializerLeveldbPlugin.js ├── SupportExtractTextPlugin.js ├── SupportMiniCssExtractPlugin.js ├── SystemArchetype.js ├── SystemParity.js ├── SystemPruneCaches.js ├── TransformAssetPlugin.js ├── TransformBasicDependencyPlugin.js ├── TransformBasicDependencyPluginLegacy.js ├── TransformCompilationPlugin.js ├── TransformConcatenationModulePlugin.js ├── TransformDependencyBlockPlugin.js ├── TransformGeneratorPlugin.js ├── TransformModuleAssetsPlugin.js ├── TransformModuleErrorsPlugin.js ├── TransformNormalModuleFactoryPlugin.js ├── TransformNormalModulePlugin.js ├── TransformParserPlugin.js ├── TransformSourcePlugin.js ├── defaultConfigHash.js ├── envHash.js ├── loggerFactory.js ├── schema-4 │ ├── _generate.js │ ├── basic-dependency.json │ └── index.js └── util │ ├── Object.entries.js │ ├── Object.values.js │ ├── bulk-fs-task.js │ ├── index.js │ ├── log-messages.js │ ├── parity.js │ ├── plugin-compat.js │ ├── promisify.js │ ├── relate-context.js │ └── serial.js ├── package.json └── tests ├── base-webpack-1.js ├── base-webpack-2.js ├── base-webpack-3.js ├── base-webpack-4.js ├── fixtures ├── base-10deps-1nest │ ├── a │ │ ├── 1.js │ │ ├── 2.js │ │ ├── 3.js │ │ ├── 4.js │ │ ├── 5.js │ │ └── index.js │ ├── b │ │ ├── 10.js │ │ ├── 6.js │ │ ├── 7.js │ │ ├── 8.js │ │ ├── 9.js │ │ └── index.js │ ├── index.js │ └── webpack.config.js ├── base-1dep-full-width │ ├── webpack.config.js │ ├── fib.js │ └── index.js ├── base-1dep-hash-filename │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── base-1dep-optional │ ├── index.js │ └── webpack.config.js ├── base-1dep-query │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── base-1dep │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── base-amd-1dep-local │ ├── index.js │ └── webpack.config.js ├── base-amd-1dep │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── base-amd-code-split │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── base-amd-context │ ├── a │ │ ├── 1.js │ │ ├── 2.js │ │ ├── 3.js │ │ ├── 4.js │ │ ├── 5.js │ │ └── index.js │ ├── b │ │ ├── 10.js │ │ ├── 6.js │ │ ├── 7.js │ │ ├── 8.js │ │ ├── 9.js │ │ └── index.js │ ├── index.js │ └── webpack.config.js ├── base-change-1dep │ ├── fib │ │ └── index.js │ ├── index.js │ └── webpack.config.js ├── base-change-context │ ├── a │ │ ├── 11.js │ │ ├── 2.js │ │ ├── 3.js │ │ ├── 4.js │ │ ├── 5.js │ │ └── index.js │ ├── b │ │ ├── 10.js │ │ ├── 6.js │ │ ├── 7.js │ │ ├── 8.js │ │ ├── 9.js │ │ └── index.js │ ├── index.js │ └── webpack.config.js ├── base-change-es2015-all-module │ ├── fib.js │ ├── index.js │ ├── obj.js │ └── webpack.config.js ├── base-change-es2015-commonjs-module │ ├── fib.js │ ├── index.js │ ├── obj.js │ └── webpack.config.js ├── base-change-es2015-default-module │ ├── fib.js │ ├── index.js │ ├── obj.js │ └── webpack.config.js ├── base-change-es2015-export-module │ ├── fib.js │ ├── index.js │ ├── obj.js │ └── webpack.config.js ├── base-change-es2015-export-order-module │ ├── a.js │ ├── index.js │ ├── obj.js │ ├── other.js │ └── webpack.config.js ├── base-change-es2015-module │ ├── fib.js │ ├── index.js │ ├── obj.js │ └── webpack.config.js ├── base-change-es2015-rename-module │ ├── fib.js │ ├── index.js │ ├── obj.js │ └── webpack.config.js ├── base-code-split-devtool-source-map │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── base-code-split-ensure │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── base-code-split-nest-devtool-source-map │ ├── fib.js │ ├── index.js │ ├── sq.js │ └── webpack.config.js ├── base-code-split-nest │ ├── fib.js │ ├── index.js │ ├── sq.js │ └── webpack.config.js ├── base-code-split-process │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── base-code-split │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── base-context-devtool-source-map │ ├── a │ │ ├── 1.js │ │ ├── 2.js │ │ ├── 3.js │ │ ├── 4.js │ │ ├── 5.js │ │ └── index.js │ ├── b │ │ ├── 10.js │ │ ├── 6.js │ │ ├── 7.js │ │ ├── 8.js │ │ ├── 9.js │ │ └── index.js │ ├── index.js │ └── webpack.config.js ├── base-context-move │ ├── a.js │ ├── b │ │ ├── 10.js │ │ ├── 6.js │ │ ├── 7.js │ │ ├── 8.js │ │ ├── 9.js │ │ └── index.js │ ├── index.js │ ├── web_modules │ │ └── a │ │ │ ├── 1.js │ │ │ ├── 2.js │ │ │ ├── 3.js │ │ │ ├── 4.js │ │ │ └── 5.js │ └── webpack.config.js ├── base-context-optional │ ├── b │ │ ├── 10.js │ │ ├── 6.js │ │ ├── 7.js │ │ ├── 8.js │ │ ├── 9.js │ │ └── index.js │ ├── index.js │ └── webpack.config.js ├── base-context │ ├── a │ │ ├── 1.js │ │ ├── 2.js │ │ ├── 3.js │ │ ├── 4.js │ │ ├── 5.js │ │ └── index.js │ ├── b │ │ ├── 10.js │ │ ├── 6.js │ │ ├── 7.js │ │ ├── 8.js │ │ ├── 9.js │ │ └── index.js │ ├── index.js │ └── webpack.config.js ├── base-deep-context-devtool-source-map │ ├── a │ │ ├── 1.js │ │ ├── 2.js │ │ ├── 3.js │ │ ├── 4.js │ │ ├── 5.js │ │ ├── b │ │ │ ├── 10.js │ │ │ ├── 11-2.js │ │ │ ├── 6.js │ │ │ ├── 7.js │ │ │ ├── 8.js │ │ │ └── 9.js │ │ └── index.js │ ├── index.js │ └── webpack.config.js ├── base-deep-context │ ├── a │ │ ├── 1.js │ │ ├── 2.js │ │ ├── 3.js │ │ ├── 4.js │ │ ├── 5.js │ │ ├── b │ │ │ ├── 10.js │ │ │ ├── 11-2.js │ │ │ ├── 6.js │ │ │ ├── 7.js │ │ │ ├── 8.js │ │ │ └── 9.js │ │ └── index.js │ ├── index.js │ └── webpack.config.js ├── base-devtool-cheap-eval-source-map │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── base-devtool-cheap-source-map │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── base-devtool-eval-source-map-hash-filename │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── base-devtool-eval-source-map │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── base-devtool-eval │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── base-devtool-inline-cheap-source-map-hash-filename │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── base-devtool-inline-cheap-source-map │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── base-devtool-nosources-source-map │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── base-devtool-source-map-hash-filename │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── base-devtool-source-map │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── base-error-resolve │ ├── index.js │ └── webpack.config.js ├── base-es2015-dynamic-context-import │ ├── fibs │ │ ├── fib.js │ │ └── obj.js │ ├── index.js │ └── webpack.config.js ├── base-es2015-dynamic-import │ ├── fib.js │ ├── index.js │ ├── obj.js │ └── webpack.config.js ├── base-es2015-json │ ├── a.js │ ├── b.json │ ├── fib.js │ ├── index.js │ ├── obj.js │ └── webpack.config.js ├── base-es2015-module-compatibility │ ├── fib.js │ ├── index.js │ ├── obj.js │ └── webpack.config.js ├── base-es2015-module-export-before-import │ ├── fib.js │ ├── index.js │ ├── obj.js │ └── webpack.config.js ├── base-es2015-module-export-star-alt │ ├── export.js │ ├── fab.js │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── base-es2015-module-export-star-some │ ├── export.js │ ├── fab.js │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── base-es2015-module-export-star │ ├── export.js │ ├── fab.js │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── base-es2015-module-use-before-import │ ├── fib.js │ ├── index.js │ ├── obj.js │ └── webpack.config.js ├── base-es2015-module │ ├── a.js │ ├── b.js │ ├── fib.js │ ├── index.js │ ├── obj.js │ └── webpack.config.js ├── base-es2015-rename-module │ ├── fact.js │ ├── fib.js │ ├── index.js │ ├── key.js │ ├── obj.js │ └── webpack.config.js ├── base-es2015-system-context │ ├── a │ │ ├── 1.js │ │ ├── 2.js │ │ ├── 3.js │ │ ├── 4.js │ │ ├── 5.js │ │ └── index.js │ ├── b │ │ ├── 10.js │ │ ├── 6.js │ │ ├── 7.js │ │ ├── 8.js │ │ ├── 9.js │ │ └── index.js │ ├── index.js │ └── webpack.config.js ├── base-es2015-system-module │ ├── fib.js │ ├── index.js │ ├── obj.js │ └── webpack.config.js ├── base-external │ ├── index.js │ └── webpack.config.js ├── base-move-10deps-1nest │ ├── a │ │ ├── 1.js │ │ ├── 2.js │ │ ├── 3.js │ │ ├── 4.js │ │ ├── 5.js │ │ └── index.js │ ├── b │ │ ├── 6 │ │ │ └── index.js │ │ ├── 7 │ │ │ └── index.js │ │ ├── 10.js │ │ ├── 8.js │ │ ├── 9.js │ │ └── index.js │ ├── index.js │ └── webpack.config.js ├── base-move-1dep │ ├── fib │ │ └── index.js │ ├── index.js │ └── webpack.config.js ├── base-move-context │ ├── a │ │ ├── 1 │ │ │ └── index.js │ │ ├── 2.js │ │ ├── 3.js │ │ ├── 4.js │ │ ├── 5.js │ │ └── index.js │ ├── b │ │ ├── 10.js │ │ ├── 6.js │ │ ├── 7.js │ │ ├── 8.js │ │ ├── 9.js │ │ └── index.js │ ├── index.js │ └── webpack.config.js ├── base-options-default │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── base-path-info │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── base-process-env │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── base-query-request │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── base-records-json │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── base-resolve-missing │ ├── fib.js │ ├── fib │ │ └── index.js │ ├── index.js │ └── webpack.config.js ├── base-target-node-1dep │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── base-warning-context │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── base-warning-es2015 │ ├── fib.js │ ├── index.js │ ├── obj.js │ └── webpack.config.js ├── base-wasm │ ├── index.js │ ├── wasm.wasm │ └── webpack.config.js ├── hard-source-confighash-dir │ ├── config-hash │ ├── fib │ │ └── index.js │ ├── index.js │ └── webpack.config.js ├── hard-source-confighash │ ├── config-hash │ ├── fib │ │ └── index.js │ ├── index.js │ └── webpack.config.js ├── hard-source-environmenthash │ ├── env-hash │ ├── fib │ │ └── index.js │ ├── hard-source-config.js │ ├── index.js │ ├── loader.js │ ├── vendor │ │ ├── lib1.js │ │ └── lib2.js │ └── webpack.config.js ├── hard-source-exclude-plugin │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── hard-source-md5 │ ├── config-hash │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── hard-source-packageyarnlock-hash │ ├── env-hash │ ├── fib │ │ └── index.js │ ├── hard-source-config.js │ ├── index.js │ ├── loader.js │ ├── package-lock.json │ ├── vendor │ │ ├── lib1.js │ │ └── lib2.js │ ├── webpack.config.js │ └── yarn.lock ├── hard-source-parallel-plugin-config-mismatch │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── hard-source-parallel-plugin-context │ ├── a │ │ ├── 1.js │ │ ├── 2.js │ │ ├── 3.js │ │ ├── 4.js │ │ ├── 5.js │ │ └── index.js │ ├── b │ │ ├── 10.js │ │ ├── 6.js │ │ ├── 7.js │ │ ├── 8.js │ │ ├── 9.js │ │ └── index.js │ ├── index.js │ └── webpack.config.js ├── hard-source-parallel-plugin-defaults │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── hard-source-parallel-plugin │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── hard-source-prune │ ├── config-hash │ ├── fib │ │ └── index.js │ ├── index.js │ └── webpack.config.js ├── loader-css │ ├── index.css │ ├── index.js │ └── webpack.config.js ├── loader-custom-context-dep │ ├── dir │ │ ├── .gitkeep │ │ └── b │ ├── fib.js │ ├── index.js │ ├── loader.js │ └── webpack.config.js ├── loader-custom-deep-context-dep │ ├── dir │ │ ├── .gitkeep │ │ └── dirdir │ │ │ └── b │ ├── fib.js │ ├── index.js │ ├── loader.js │ └── webpack.config.js ├── loader-custom-function-option │ ├── fib.js │ ├── index.js │ ├── loader.js │ └── webpack.config.js ├── loader-custom-missing-dep-added │ ├── index.js │ ├── loader.js │ └── webpack.config.js ├── loader-custom-missing-dep │ ├── index.js │ ├── loader.js │ └── webpack.config.js ├── loader-custom-no-dep-moved │ ├── fib │ │ └── index.js │ ├── index.js │ ├── loader.js │ └── webpack.config.js ├── loader-custom-no-dep │ ├── fib.js │ ├── index.js │ ├── loader.js │ └── webpack.config.js ├── loader-custom-prepend-helper │ ├── image.png │ ├── index.js │ ├── loader-helper.js │ ├── loader.js │ └── webpack.config.js ├── loader-custom-resolve-missing-query │ ├── fib.js │ ├── fib │ │ └── index.js │ ├── index.js │ ├── loader │ │ └── index.js │ └── webpack.config.js ├── loader-custom-resolve-missing │ ├── fib.js │ ├── fib │ │ └── index.js │ ├── index.js │ ├── loader.js │ ├── loader │ │ └── index.js │ └── webpack.config.js ├── loader-custom-resolve-request-missing-change │ ├── fab.js │ ├── fib.js │ ├── index.js │ ├── loader.js │ └── webpack.config.js ├── loader-custom-resolve-request-missing │ ├── fib.js │ ├── index.js │ ├── loader.js │ └── webpack.config.js ├── loader-custom-resolve-request │ ├── fab │ │ └── index.js │ ├── fib.js │ ├── index.js │ ├── loader.js │ └── webpack.config.js ├── loader-custom-user-loader │ ├── fib.js │ ├── index.js │ ├── loader.js │ └── webpack.config.js ├── loader-file-context │ ├── images │ │ └── image.png │ ├── index.js │ └── webpack.config.js ├── loader-file-move │ ├── image.png │ ├── index.js │ └── webpack.config.js ├── loader-file-options │ ├── image.png │ ├── index.js │ └── webpack.config.js ├── loader-file-use │ ├── src │ │ ├── image.png │ │ └── index.js │ └── webpack.config.js ├── loader-file │ ├── image.png │ ├── index.js │ └── webpack.config.js ├── loader-warning │ ├── index.js │ ├── loader.js │ ├── module.js │ └── webpack.config.js ├── loader-worker-1dep │ ├── fib.js │ ├── index.js │ ├── webpack.config.js │ └── worker.js ├── plugin-child-compiler-resolutions │ ├── child-compilation-plugin.js │ ├── fib.js │ ├── index.js │ ├── loader-a.js │ ├── loader-b.js │ └── webpack.config.js ├── plugin-concatenated-module-change │ ├── fib.js │ ├── index.js │ ├── obj.js │ └── webpack.config.js ├── plugin-concatenated-module │ ├── a.js │ ├── b.js │ ├── fib.js │ ├── index.js │ ├── obj.js │ └── webpack.config.js ├── plugin-copy │ ├── images │ │ └── image.png │ ├── index.js │ └── webpack.config.js ├── plugin-dll-reference-scope │ ├── dll-4.27.js │ ├── dll-manifest-4.27.json │ ├── dll-manifest.json │ ├── dll.js │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── plugin-dll-reference │ ├── dll-4.27.js │ ├── dll-manifest-4.27.json │ ├── dll-manifest.json │ ├── dll.js │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── plugin-dll │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── plugin-extract-text-html-uglify │ ├── index.css │ ├── index.html │ ├── index.js │ └── webpack.config.js ├── plugin-extract-text-loader-file │ ├── image.png │ ├── index.css │ ├── index.js │ └── webpack.config.js ├── plugin-extract-text-throw-on-freeze │ ├── index.css │ ├── index.js │ └── webpack.config.js ├── plugin-extract-text-uglify-eval-source-map │ ├── index.css │ ├── index.js │ └── webpack.config.js ├── plugin-extract-text-uglify-source-map │ ├── index.css │ ├── index.js │ └── webpack.config.js ├── plugin-extract-text-uglify │ ├── index.css │ ├── index.js │ └── webpack.config.js ├── plugin-extract-text │ ├── index.css │ ├── index.js │ └── webpack.config.js ├── plugin-hmr-accept-dep │ ├── fib │ │ └── index.js │ ├── index.js │ └── webpack.config.js ├── plugin-hmr-accept │ ├── fib │ │ └── index.js │ ├── index.js │ └── webpack.config.js ├── plugin-hmr-es2015 │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── plugin-hmr-process-env │ ├── fib │ │ └── index.js │ ├── index.js │ └── webpack.config.js ├── plugin-hmr │ ├── fib │ │ └── index.js │ ├── index.js │ └── webpack.config.js ├── plugin-html-lodash │ ├── fact.js │ ├── fib.js │ ├── index.html │ ├── index.js │ └── webpack.config.js ├── plugin-ignore-1dep │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── plugin-ignore-context-members │ ├── a │ │ ├── 1.js │ │ ├── 2.js │ │ ├── 3.js │ │ ├── 4.js │ │ ├── 5.js │ │ └── index.js │ ├── b │ │ ├── 10.js │ │ ├── 6.js │ │ ├── 7.js │ │ ├── 8.js │ │ ├── 9.js │ │ └── index.js │ ├── index.js │ └── webpack.config.js ├── plugin-ignore-context │ ├── a │ │ ├── 1.js │ │ ├── 2.js │ │ ├── 3.js │ │ ├── 4.js │ │ ├── 5.js │ │ └── index.js │ ├── b │ │ ├── 10.js │ │ ├── 6.js │ │ ├── 7.js │ │ ├── 8.js │ │ ├── 9.js │ │ └── index.js │ ├── index.js │ └── webpack.config.js ├── plugin-isomorphic-tools │ ├── image.png │ ├── index.css │ ├── index.js │ ├── webpack-isomorphic-tools.js │ └── webpack.config.js ├── plugin-logger-child-no-memory │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── plugin-mini-css-extract-change │ ├── index.css │ ├── index.js │ └── webpack.config.js ├── plugin-mini-css-extract-file │ ├── image.png │ ├── index.css │ ├── index.js │ └── webpack.config.js ├── plugin-mini-css-extract-watch │ ├── index.css │ ├── index.js │ └── webpack.config.js ├── plugin-mini-css-extract │ ├── index.css │ ├── index.js │ └── webpack.config.js ├── plugin-prefetch-es2015 │ ├── a.js │ ├── b.js │ ├── fib.js │ ├── index.js │ ├── obj.js │ ├── unused.js │ └── webpack.config.js ├── plugin-serializer-json-base-1dep │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── plugin-side-effect-change │ ├── index.js │ ├── obj │ │ ├── fab.js │ │ ├── fib.js │ │ ├── key.js │ │ ├── obj.js │ │ └── package.json │ └── webpack.config.js ├── plugin-side-effect-settings │ ├── index.js │ ├── obj │ │ ├── fab.js │ │ ├── fib.js │ │ ├── key.js │ │ ├── obj.js │ │ └── package.json │ └── webpack.config.js ├── plugin-side-effect │ ├── index.js │ ├── obj │ │ ├── fab.js │ │ ├── fib.js │ │ ├── key.js │ │ ├── obj.js │ │ └── package.json │ └── webpack.config.js ├── plugin-source-map-1dep │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── plugin-uglify-1dep-es2015 │ ├── fib.js │ ├── index.js │ ├── obj.js │ └── webpack.config.js ├── plugin-uglify-1dep │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── plugin-uglify-babel-devtool-source-map │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── plugin-uglify-devtool-source-map │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── serializer-append-2-base-1dep-bad-cache │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── serializer-append-2-base-1dep-compact │ ├── fib │ │ └── index.js │ ├── index.js │ └── webpack.config.js ├── serializer-append-2-base-1dep │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── serializer-append-base-1dep-compact │ ├── fib │ │ └── index.js │ ├── index.js │ └── webpack.config.js ├── serializer-append-base-1dep │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── serializer-cacache-base-1dep │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── serializer-json-base-1dep │ ├── fib.js │ ├── index.js │ └── webpack.config.js └── serializer-leveldb-base-1dep │ ├── fib.js │ ├── index.js │ └── webpack.config.js ├── hard-source.js ├── loaders-webpack-1.js ├── loaders-webpack-2.js ├── loaders-webpack-3.js ├── plugins-webpack-1.js ├── plugins-webpack-2.js ├── plugins-webpack-3.js ├── plugins-webpack-4.js ├── serializers.js └── util ├── features.js ├── force-write-records.js ├── index.js └── webpack-if.js /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | tests/fixtures/*/tmp 2 | node_modules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/appveyor.yml -------------------------------------------------------------------------------- /bin/benchmark-append-serializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/bin/benchmark-append-serializer.js -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = {extends: ['@commitlint/config-conventional']}; 2 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/index.js -------------------------------------------------------------------------------- /lib/CacheAsset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/CacheAsset.js -------------------------------------------------------------------------------- /lib/CacheEnhancedResolve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/CacheEnhancedResolve.js -------------------------------------------------------------------------------- /lib/CacheMd5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/CacheMd5.js -------------------------------------------------------------------------------- /lib/CacheModule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/CacheModule.js -------------------------------------------------------------------------------- /lib/CacheModuleResolver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/CacheModuleResolver.js -------------------------------------------------------------------------------- /lib/CacheSerializerFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/CacheSerializerFactory.js -------------------------------------------------------------------------------- /lib/ChalkLoggerPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/ChalkLoggerPlugin.js -------------------------------------------------------------------------------- /lib/ExcludeModulePlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/ExcludeModulePlugin.js -------------------------------------------------------------------------------- /lib/ParallelLauncherPlugin.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/ParallelModulePlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/ParallelModulePlugin.js -------------------------------------------------------------------------------- /lib/SerializerAppend.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/SerializerAppend.js -------------------------------------------------------------------------------- /lib/SerializerAppend2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/SerializerAppend2.js -------------------------------------------------------------------------------- /lib/SerializerAppend2Plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/SerializerAppend2Plugin.js -------------------------------------------------------------------------------- /lib/SerializerAppendPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/SerializerAppendPlugin.js -------------------------------------------------------------------------------- /lib/SerializerCacache.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/SerializerCacache.js -------------------------------------------------------------------------------- /lib/SerializerCacachePlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/SerializerCacachePlugin.js -------------------------------------------------------------------------------- /lib/SerializerFile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/SerializerFile.js -------------------------------------------------------------------------------- /lib/SerializerFilePlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/SerializerFilePlugin.js -------------------------------------------------------------------------------- /lib/SerializerJson.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/SerializerJson.js -------------------------------------------------------------------------------- /lib/SerializerJsonPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/SerializerJsonPlugin.js -------------------------------------------------------------------------------- /lib/SerializerLeveldb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/SerializerLeveldb.js -------------------------------------------------------------------------------- /lib/SerializerLeveldbPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/SerializerLeveldbPlugin.js -------------------------------------------------------------------------------- /lib/SupportExtractTextPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/SupportExtractTextPlugin.js -------------------------------------------------------------------------------- /lib/SupportMiniCssExtractPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/SupportMiniCssExtractPlugin.js -------------------------------------------------------------------------------- /lib/SystemArchetype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/SystemArchetype.js -------------------------------------------------------------------------------- /lib/SystemParity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/SystemParity.js -------------------------------------------------------------------------------- /lib/SystemPruneCaches.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/SystemPruneCaches.js -------------------------------------------------------------------------------- /lib/TransformAssetPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/TransformAssetPlugin.js -------------------------------------------------------------------------------- /lib/TransformBasicDependencyPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/TransformBasicDependencyPlugin.js -------------------------------------------------------------------------------- /lib/TransformBasicDependencyPluginLegacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/TransformBasicDependencyPluginLegacy.js -------------------------------------------------------------------------------- /lib/TransformCompilationPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/TransformCompilationPlugin.js -------------------------------------------------------------------------------- /lib/TransformConcatenationModulePlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/TransformConcatenationModulePlugin.js -------------------------------------------------------------------------------- /lib/TransformDependencyBlockPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/TransformDependencyBlockPlugin.js -------------------------------------------------------------------------------- /lib/TransformGeneratorPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/TransformGeneratorPlugin.js -------------------------------------------------------------------------------- /lib/TransformModuleAssetsPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/TransformModuleAssetsPlugin.js -------------------------------------------------------------------------------- /lib/TransformModuleErrorsPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/TransformModuleErrorsPlugin.js -------------------------------------------------------------------------------- /lib/TransformNormalModuleFactoryPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/TransformNormalModuleFactoryPlugin.js -------------------------------------------------------------------------------- /lib/TransformNormalModulePlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/TransformNormalModulePlugin.js -------------------------------------------------------------------------------- /lib/TransformParserPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/TransformParserPlugin.js -------------------------------------------------------------------------------- /lib/TransformSourcePlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/TransformSourcePlugin.js -------------------------------------------------------------------------------- /lib/defaultConfigHash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/defaultConfigHash.js -------------------------------------------------------------------------------- /lib/envHash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/envHash.js -------------------------------------------------------------------------------- /lib/loggerFactory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/loggerFactory.js -------------------------------------------------------------------------------- /lib/schema-4/_generate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/schema-4/_generate.js -------------------------------------------------------------------------------- /lib/schema-4/basic-dependency.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/schema-4/basic-dependency.json -------------------------------------------------------------------------------- /lib/schema-4/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/schema-4/index.js -------------------------------------------------------------------------------- /lib/util/Object.entries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/util/Object.entries.js -------------------------------------------------------------------------------- /lib/util/Object.values.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/util/Object.values.js -------------------------------------------------------------------------------- /lib/util/bulk-fs-task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/util/bulk-fs-task.js -------------------------------------------------------------------------------- /lib/util/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/util/index.js -------------------------------------------------------------------------------- /lib/util/log-messages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/util/log-messages.js -------------------------------------------------------------------------------- /lib/util/parity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/util/parity.js -------------------------------------------------------------------------------- /lib/util/plugin-compat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/util/plugin-compat.js -------------------------------------------------------------------------------- /lib/util/promisify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/util/promisify.js -------------------------------------------------------------------------------- /lib/util/relate-context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/util/relate-context.js -------------------------------------------------------------------------------- /lib/util/serial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/lib/util/serial.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/package.json -------------------------------------------------------------------------------- /tests/base-webpack-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/base-webpack-1.js -------------------------------------------------------------------------------- /tests/base-webpack-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/base-webpack-2.js -------------------------------------------------------------------------------- /tests/base-webpack-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/base-webpack-3.js -------------------------------------------------------------------------------- /tests/base-webpack-4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/base-webpack-4.js -------------------------------------------------------------------------------- /tests/fixtures/base-10deps-1nest/a/1.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-10deps-1nest/a/2.js: -------------------------------------------------------------------------------- 1 | module.exports = 2; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-10deps-1nest/a/3.js: -------------------------------------------------------------------------------- 1 | module.exports = 3; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-10deps-1nest/a/4.js: -------------------------------------------------------------------------------- 1 | module.exports = 4; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-10deps-1nest/a/5.js: -------------------------------------------------------------------------------- 1 | module.exports = 5; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-10deps-1nest/a/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-10deps-1nest/a/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-10deps-1nest/b/10.js: -------------------------------------------------------------------------------- 1 | module.exports = 10; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-10deps-1nest/b/6.js: -------------------------------------------------------------------------------- 1 | module.exports = 6; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-10deps-1nest/b/7.js: -------------------------------------------------------------------------------- 1 | module.exports = 7; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-10deps-1nest/b/8.js: -------------------------------------------------------------------------------- 1 | module.exports = 8; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-10deps-1nest/b/9.js: -------------------------------------------------------------------------------- 1 | module.exports = 9; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-10deps-1nest/b/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-10deps-1nest/b/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-10deps-1nest/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-10deps-1nest/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-10deps-1nest/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-10deps-1nest/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-1dep-full-width/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-1dep-full-width/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-1dep-full-width/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-1dep-full-width/index.js: -------------------------------------------------------------------------------- 1 | var fib = require('./fib'); 2 | 3 | console.log(fib(3)); 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-1dep-hash-filename/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-1dep-hash-filename/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-1dep-hash-filename/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-1dep-hash-filename/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-1dep-hash-filename/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-1dep-optional/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-1dep-optional/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-1dep-optional/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-1dep-optional/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-1dep-query/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-1dep-query/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-1dep-query/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-1dep-query/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-1dep-query/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-1dep/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-1dep/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-1dep/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-1dep/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-1dep/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-amd-1dep-local/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-amd-1dep-local/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-amd-1dep-local/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-amd-1dep-local/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-amd-1dep/fib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-amd-1dep/fib.js -------------------------------------------------------------------------------- /tests/fixtures/base-amd-1dep/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-amd-1dep/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-amd-1dep/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-amd-1dep/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-amd-code-split/fib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-amd-code-split/fib.js -------------------------------------------------------------------------------- /tests/fixtures/base-amd-code-split/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-amd-code-split/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-amd-code-split/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-amd-code-split/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-amd-context/a/1.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-amd-context/a/2.js: -------------------------------------------------------------------------------- 1 | module.exports = 2; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-amd-context/a/3.js: -------------------------------------------------------------------------------- 1 | module.exports = 3; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-amd-context/a/4.js: -------------------------------------------------------------------------------- 1 | module.exports = 4; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-amd-context/a/5.js: -------------------------------------------------------------------------------- 1 | module.exports = 5; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-amd-context/a/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-amd-context/a/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-amd-context/b/10.js: -------------------------------------------------------------------------------- 1 | module.exports = 10; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-amd-context/b/6.js: -------------------------------------------------------------------------------- 1 | module.exports = 6; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-amd-context/b/7.js: -------------------------------------------------------------------------------- 1 | module.exports = 7; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-amd-context/b/8.js: -------------------------------------------------------------------------------- 1 | module.exports = 8; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-amd-context/b/9.js: -------------------------------------------------------------------------------- 1 | module.exports = 9; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-amd-context/b/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-amd-context/b/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-amd-context/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-amd-context/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-amd-context/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-amd-context/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-change-1dep/fib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 2 : 0); 3 | }; -------------------------------------------------------------------------------- /tests/fixtures/base-change-1dep/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-change-1dep/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-change-1dep/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-change-1dep/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-change-context/a/11.js: -------------------------------------------------------------------------------- 1 | module.exports = 11; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-change-context/a/2.js: -------------------------------------------------------------------------------- 1 | module.exports = 2; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-change-context/a/3.js: -------------------------------------------------------------------------------- 1 | module.exports = 3; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-change-context/a/4.js: -------------------------------------------------------------------------------- 1 | module.exports = 4; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-change-context/a/5.js: -------------------------------------------------------------------------------- 1 | module.exports = 5; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-change-context/a/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-change-context/a/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-change-context/b/10.js: -------------------------------------------------------------------------------- 1 | module.exports = 10; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-change-context/b/6.js: -------------------------------------------------------------------------------- 1 | module.exports = 6; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-change-context/b/7.js: -------------------------------------------------------------------------------- 1 | module.exports = 7; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-change-context/b/8.js: -------------------------------------------------------------------------------- 1 | module.exports = 8; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-change-context/b/9.js: -------------------------------------------------------------------------------- 1 | module.exports = 9; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-change-context/b/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-change-context/b/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-change-context/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-change-context/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-change-context/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-change-context/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-change-es2015-all-module/fib.js: -------------------------------------------------------------------------------- 1 | export default function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-change-es2015-all-module/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-change-es2015-all-module/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-change-es2015-all-module/obj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-change-es2015-all-module/obj.js -------------------------------------------------------------------------------- /tests/fixtures/base-change-es2015-all-module/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-change-es2015-all-module/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-change-es2015-commonjs-module/fib.js: -------------------------------------------------------------------------------- 1 | export default function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-change-es2015-commonjs-module/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-change-es2015-commonjs-module/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-change-es2015-commonjs-module/obj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-change-es2015-commonjs-module/obj.js -------------------------------------------------------------------------------- /tests/fixtures/base-change-es2015-commonjs-module/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-change-es2015-commonjs-module/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-change-es2015-default-module/fib.js: -------------------------------------------------------------------------------- 1 | export default function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-change-es2015-default-module/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-change-es2015-default-module/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-change-es2015-default-module/obj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-change-es2015-default-module/obj.js -------------------------------------------------------------------------------- /tests/fixtures/base-change-es2015-default-module/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-change-es2015-default-module/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-change-es2015-export-module/fib.js: -------------------------------------------------------------------------------- 1 | export default function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-change-es2015-export-module/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-change-es2015-export-module/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-change-es2015-export-module/obj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-change-es2015-export-module/obj.js -------------------------------------------------------------------------------- /tests/fixtures/base-change-es2015-export-module/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-change-es2015-export-module/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-change-es2015-export-order-module/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-change-es2015-export-order-module/a.js -------------------------------------------------------------------------------- /tests/fixtures/base-change-es2015-export-order-module/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-change-es2015-export-order-module/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-change-es2015-export-order-module/obj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-change-es2015-export-order-module/obj.js -------------------------------------------------------------------------------- /tests/fixtures/base-change-es2015-export-order-module/other.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-change-es2015-export-order-module/other.js -------------------------------------------------------------------------------- /tests/fixtures/base-change-es2015-export-order-module/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-change-es2015-export-order-module/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-change-es2015-module/fib.js: -------------------------------------------------------------------------------- 1 | export default function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-change-es2015-module/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-change-es2015-module/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-change-es2015-module/obj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-change-es2015-module/obj.js -------------------------------------------------------------------------------- /tests/fixtures/base-change-es2015-module/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-change-es2015-module/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-change-es2015-rename-module/fib.js: -------------------------------------------------------------------------------- 1 | export default function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-change-es2015-rename-module/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-change-es2015-rename-module/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-change-es2015-rename-module/obj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-change-es2015-rename-module/obj.js -------------------------------------------------------------------------------- /tests/fixtures/base-change-es2015-rename-module/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-change-es2015-rename-module/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-code-split-devtool-source-map/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-code-split-devtool-source-map/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-code-split-devtool-source-map/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-code-split-devtool-source-map/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-code-split-devtool-source-map/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-code-split-ensure/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-code-split-ensure/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-code-split-ensure/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-code-split-ensure/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-code-split-ensure/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-code-split-nest-devtool-source-map/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-code-split-nest-devtool-source-map/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-code-split-nest-devtool-source-map/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-code-split-nest-devtool-source-map/sq.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n * n; 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-code-split-nest-devtool-source-map/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-code-split-nest-devtool-source-map/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-code-split-nest/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-code-split-nest/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-code-split-nest/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-code-split-nest/sq.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n * n; 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-code-split-nest/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-code-split-nest/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-code-split-process/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-code-split-process/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-code-split-process/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-code-split-process/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-code-split-process/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-code-split/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-code-split/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-code-split/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-code-split/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-code-split/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-context-devtool-source-map/a/1.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-context-devtool-source-map/a/2.js: -------------------------------------------------------------------------------- 1 | module.exports = 2; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-context-devtool-source-map/a/3.js: -------------------------------------------------------------------------------- 1 | module.exports = 3; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-context-devtool-source-map/a/4.js: -------------------------------------------------------------------------------- 1 | module.exports = 4; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-context-devtool-source-map/a/5.js: -------------------------------------------------------------------------------- 1 | module.exports = 5; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-context-devtool-source-map/a/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-context-devtool-source-map/a/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-context-devtool-source-map/b/10.js: -------------------------------------------------------------------------------- 1 | module.exports = 10; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-context-devtool-source-map/b/6.js: -------------------------------------------------------------------------------- 1 | module.exports = 6; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-context-devtool-source-map/b/7.js: -------------------------------------------------------------------------------- 1 | module.exports = 7; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-context-devtool-source-map/b/8.js: -------------------------------------------------------------------------------- 1 | module.exports = 8; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-context-devtool-source-map/b/9.js: -------------------------------------------------------------------------------- 1 | module.exports = 9; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-context-devtool-source-map/b/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-context-devtool-source-map/b/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-context-devtool-source-map/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-context-devtool-source-map/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-context-devtool-source-map/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-context-devtool-source-map/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-context-move/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-context-move/a.js -------------------------------------------------------------------------------- /tests/fixtures/base-context-move/b/10.js: -------------------------------------------------------------------------------- 1 | module.exports = 10; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-context-move/b/6.js: -------------------------------------------------------------------------------- 1 | module.exports = 6; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-context-move/b/7.js: -------------------------------------------------------------------------------- 1 | module.exports = 7; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-context-move/b/8.js: -------------------------------------------------------------------------------- 1 | module.exports = 8; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-context-move/b/9.js: -------------------------------------------------------------------------------- 1 | module.exports = 9; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-context-move/b/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-context-move/b/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-context-move/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-context-move/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-context-move/web_modules/a/1.js: -------------------------------------------------------------------------------- 1 | module.exports = 11; -------------------------------------------------------------------------------- /tests/fixtures/base-context-move/web_modules/a/2.js: -------------------------------------------------------------------------------- 1 | module.exports = 12; -------------------------------------------------------------------------------- /tests/fixtures/base-context-move/web_modules/a/3.js: -------------------------------------------------------------------------------- 1 | module.exports = 13; -------------------------------------------------------------------------------- /tests/fixtures/base-context-move/web_modules/a/4.js: -------------------------------------------------------------------------------- 1 | module.exports = 14; -------------------------------------------------------------------------------- /tests/fixtures/base-context-move/web_modules/a/5.js: -------------------------------------------------------------------------------- 1 | module.exports = 15; -------------------------------------------------------------------------------- /tests/fixtures/base-context-move/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-context-move/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-context-optional/b/10.js: -------------------------------------------------------------------------------- 1 | module.exports = 10; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-context-optional/b/6.js: -------------------------------------------------------------------------------- 1 | module.exports = 6; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-context-optional/b/7.js: -------------------------------------------------------------------------------- 1 | module.exports = 7; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-context-optional/b/8.js: -------------------------------------------------------------------------------- 1 | module.exports = 8; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-context-optional/b/9.js: -------------------------------------------------------------------------------- 1 | module.exports = 9; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-context-optional/b/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-context-optional/b/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-context-optional/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-context-optional/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-context-optional/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-context-optional/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-context/a/1.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-context/a/2.js: -------------------------------------------------------------------------------- 1 | module.exports = 2; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-context/a/3.js: -------------------------------------------------------------------------------- 1 | module.exports = 3; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-context/a/4.js: -------------------------------------------------------------------------------- 1 | module.exports = 4; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-context/a/5.js: -------------------------------------------------------------------------------- 1 | module.exports = 5; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-context/a/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-context/a/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-context/b/10.js: -------------------------------------------------------------------------------- 1 | module.exports = 10; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-context/b/6.js: -------------------------------------------------------------------------------- 1 | module.exports = 6; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-context/b/7.js: -------------------------------------------------------------------------------- 1 | module.exports = 7; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-context/b/8.js: -------------------------------------------------------------------------------- 1 | module.exports = 8; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-context/b/9.js: -------------------------------------------------------------------------------- 1 | module.exports = 9; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-context/b/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-context/b/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-context/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-context/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-context/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-context/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-deep-context-devtool-source-map/a/1.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-deep-context-devtool-source-map/a/2.js: -------------------------------------------------------------------------------- 1 | module.exports = 2; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-deep-context-devtool-source-map/a/3.js: -------------------------------------------------------------------------------- 1 | module.exports = 3; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-deep-context-devtool-source-map/a/4.js: -------------------------------------------------------------------------------- 1 | module.exports = 4; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-deep-context-devtool-source-map/a/5.js: -------------------------------------------------------------------------------- 1 | module.exports = 5; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-deep-context-devtool-source-map/a/b/10.js: -------------------------------------------------------------------------------- 1 | module.exports = 10; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-deep-context-devtool-source-map/a/b/11-2.js: -------------------------------------------------------------------------------- 1 | module.exports = 11; -------------------------------------------------------------------------------- /tests/fixtures/base-deep-context-devtool-source-map/a/b/6.js: -------------------------------------------------------------------------------- 1 | module.exports = 6; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-deep-context-devtool-source-map/a/b/7.js: -------------------------------------------------------------------------------- 1 | module.exports = 7; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-deep-context-devtool-source-map/a/b/8.js: -------------------------------------------------------------------------------- 1 | module.exports = 8; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-deep-context-devtool-source-map/a/b/9.js: -------------------------------------------------------------------------------- 1 | module.exports = 9; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-deep-context-devtool-source-map/a/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-deep-context-devtool-source-map/a/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-deep-context-devtool-source-map/index.js: -------------------------------------------------------------------------------- 1 | console.log(require('./a')); 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-deep-context-devtool-source-map/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-deep-context-devtool-source-map/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-deep-context/a/1.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-deep-context/a/2.js: -------------------------------------------------------------------------------- 1 | module.exports = 2; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-deep-context/a/3.js: -------------------------------------------------------------------------------- 1 | module.exports = 3; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-deep-context/a/4.js: -------------------------------------------------------------------------------- 1 | module.exports = 4; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-deep-context/a/5.js: -------------------------------------------------------------------------------- 1 | module.exports = 5; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-deep-context/a/b/10.js: -------------------------------------------------------------------------------- 1 | module.exports = 10; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-deep-context/a/b/11-2.js: -------------------------------------------------------------------------------- 1 | module.exports = 11; -------------------------------------------------------------------------------- /tests/fixtures/base-deep-context/a/b/6.js: -------------------------------------------------------------------------------- 1 | module.exports = 6; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-deep-context/a/b/7.js: -------------------------------------------------------------------------------- 1 | module.exports = 7; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-deep-context/a/b/8.js: -------------------------------------------------------------------------------- 1 | module.exports = 8; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-deep-context/a/b/9.js: -------------------------------------------------------------------------------- 1 | module.exports = 9; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-deep-context/a/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-deep-context/a/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-deep-context/index.js: -------------------------------------------------------------------------------- 1 | console.log(require('./a')); 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-deep-context/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-deep-context/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-devtool-cheap-eval-source-map/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-devtool-cheap-eval-source-map/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-devtool-cheap-eval-source-map/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-devtool-cheap-eval-source-map/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-devtool-cheap-eval-source-map/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-devtool-cheap-source-map/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-devtool-cheap-source-map/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-devtool-cheap-source-map/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-devtool-cheap-source-map/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-devtool-cheap-source-map/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-devtool-eval-source-map-hash-filename/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-devtool-eval-source-map-hash-filename/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-devtool-eval-source-map-hash-filename/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-devtool-eval-source-map-hash-filename/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-devtool-eval-source-map-hash-filename/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-devtool-eval-source-map/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-devtool-eval-source-map/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-devtool-eval-source-map/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-devtool-eval-source-map/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-devtool-eval-source-map/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-devtool-eval/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-devtool-eval/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-devtool-eval/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-devtool-eval/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-devtool-eval/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-devtool-inline-cheap-source-map-hash-filename/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-devtool-inline-cheap-source-map-hash-filename/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-devtool-inline-cheap-source-map-hash-filename/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-devtool-inline-cheap-source-map-hash-filename/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-devtool-inline-cheap-source-map-hash-filename/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-devtool-inline-cheap-source-map/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-devtool-inline-cheap-source-map/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-devtool-inline-cheap-source-map/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-devtool-inline-cheap-source-map/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-devtool-inline-cheap-source-map/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-devtool-nosources-source-map/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-devtool-nosources-source-map/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-devtool-nosources-source-map/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-devtool-nosources-source-map/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-devtool-nosources-source-map/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-devtool-source-map-hash-filename/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-devtool-source-map-hash-filename/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-devtool-source-map-hash-filename/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-devtool-source-map-hash-filename/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-devtool-source-map-hash-filename/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-devtool-source-map/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-devtool-source-map/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-devtool-source-map/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-devtool-source-map/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-devtool-source-map/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-error-resolve/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-error-resolve/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-error-resolve/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-error-resolve/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-dynamic-context-import/fibs/fib.js: -------------------------------------------------------------------------------- 1 | export default function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-dynamic-context-import/fibs/obj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-dynamic-context-import/fibs/obj.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-dynamic-context-import/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-dynamic-context-import/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-dynamic-context-import/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-dynamic-context-import/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-dynamic-import/fib.js: -------------------------------------------------------------------------------- 1 | export default function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-dynamic-import/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-dynamic-import/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-dynamic-import/obj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-dynamic-import/obj.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-dynamic-import/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-dynamic-import/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-json/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-json/a.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-json/b.json: -------------------------------------------------------------------------------- 1 | "key" -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-json/fib.js: -------------------------------------------------------------------------------- 1 | export default function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-json/index.js: -------------------------------------------------------------------------------- 1 | import {fib} from './obj'; 2 | 3 | console.log(fib(3)); 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-json/obj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-json/obj.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-json/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-json/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module-compatibility/fib.js: -------------------------------------------------------------------------------- 1 | export default function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module-compatibility/index.js: -------------------------------------------------------------------------------- 1 | import * as fib from './obj'; 2 | 3 | console.log(fib(3)); 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module-compatibility/obj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-module-compatibility/obj.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module-compatibility/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-module-compatibility/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module-export-before-import/fib.js: -------------------------------------------------------------------------------- 1 | export default function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module-export-before-import/index.js: -------------------------------------------------------------------------------- 1 | import {key} from './obj'; 2 | 3 | console.log(key(3)); 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module-export-before-import/obj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-module-export-before-import/obj.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module-export-before-import/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-module-export-before-import/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module-export-star-alt/export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-module-export-star-alt/export.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module-export-star-alt/fab.js: -------------------------------------------------------------------------------- 1 | export function fab(n) { 2 | return n + (n > 0 ? n - 2 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module-export-star-alt/fib.js: -------------------------------------------------------------------------------- 1 | export function fib(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module-export-star-alt/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-module-export-star-alt/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module-export-star-alt/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-module-export-star-alt/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module-export-star-some/export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-module-export-star-some/export.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module-export-star-some/fab.js: -------------------------------------------------------------------------------- 1 | export function fab(n) { 2 | return n + (n > 0 ? n - 2 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module-export-star-some/fib.js: -------------------------------------------------------------------------------- 1 | export function fib(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module-export-star-some/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-module-export-star-some/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module-export-star-some/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-module-export-star-some/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module-export-star/export.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-module-export-star/export.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module-export-star/fab.js: -------------------------------------------------------------------------------- 1 | export function fab(n) { 2 | return n + (n > 0 ? n - 2 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module-export-star/fib.js: -------------------------------------------------------------------------------- 1 | export function fib(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module-export-star/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-module-export-star/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module-export-star/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-module-export-star/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module-use-before-import/fib.js: -------------------------------------------------------------------------------- 1 | export default function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module-use-before-import/index.js: -------------------------------------------------------------------------------- 1 | console.log(key(3)); 2 | import {key} from './obj'; 3 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module-use-before-import/obj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-module-use-before-import/obj.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module-use-before-import/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-module-use-before-import/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-module/a.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module/b.js: -------------------------------------------------------------------------------- 1 | export default 'key'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module/fib.js: -------------------------------------------------------------------------------- 1 | export default function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module/index.js: -------------------------------------------------------------------------------- 1 | import {fib} from './obj'; 2 | 3 | console.log(fib(3)); 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module/obj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-module/obj.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-module/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-module/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-rename-module/fact.js: -------------------------------------------------------------------------------- 1 | export default function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-rename-module/fib.js: -------------------------------------------------------------------------------- 1 | export default function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-rename-module/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-rename-module/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-rename-module/key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-rename-module/key.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-rename-module/obj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-rename-module/obj.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-rename-module/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-rename-module/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-system-context/a/1.js: -------------------------------------------------------------------------------- 1 | export default 1; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-system-context/a/2.js: -------------------------------------------------------------------------------- 1 | export default 2; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-system-context/a/3.js: -------------------------------------------------------------------------------- 1 | export default 3; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-system-context/a/4.js: -------------------------------------------------------------------------------- 1 | export default 4; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-system-context/a/5.js: -------------------------------------------------------------------------------- 1 | export default 5; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-system-context/a/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-system-context/a/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-system-context/b/10.js: -------------------------------------------------------------------------------- 1 | export default 10; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-system-context/b/6.js: -------------------------------------------------------------------------------- 1 | export default 6; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-system-context/b/7.js: -------------------------------------------------------------------------------- 1 | export default 7; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-system-context/b/8.js: -------------------------------------------------------------------------------- 1 | export default 8; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-system-context/b/9.js: -------------------------------------------------------------------------------- 1 | export default 9; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-system-context/b/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-system-context/b/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-system-context/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-system-context/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-system-context/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-system-context/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-system-module/fib.js: -------------------------------------------------------------------------------- 1 | export default function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-system-module/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-system-module/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-system-module/obj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-system-module/obj.js -------------------------------------------------------------------------------- /tests/fixtures/base-es2015-system-module/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-es2015-system-module/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-external/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-external/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-external/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-external/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-move-10deps-1nest/a/1.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-move-10deps-1nest/a/2.js: -------------------------------------------------------------------------------- 1 | module.exports = 2; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-move-10deps-1nest/a/3.js: -------------------------------------------------------------------------------- 1 | module.exports = 3; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-move-10deps-1nest/a/4.js: -------------------------------------------------------------------------------- 1 | module.exports = 4; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-move-10deps-1nest/a/5.js: -------------------------------------------------------------------------------- 1 | module.exports = 5; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-move-10deps-1nest/a/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-move-10deps-1nest/a/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-move-10deps-1nest/b/10.js: -------------------------------------------------------------------------------- 1 | module.exports = 10; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-move-10deps-1nest/b/6/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 60; -------------------------------------------------------------------------------- /tests/fixtures/base-move-10deps-1nest/b/7/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 70; -------------------------------------------------------------------------------- /tests/fixtures/base-move-10deps-1nest/b/8.js: -------------------------------------------------------------------------------- 1 | module.exports = 8; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-move-10deps-1nest/b/9.js: -------------------------------------------------------------------------------- 1 | module.exports = 9; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-move-10deps-1nest/b/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-move-10deps-1nest/b/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-move-10deps-1nest/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-move-10deps-1nest/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-move-10deps-1nest/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-move-10deps-1nest/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-move-1dep/fib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 2 : 0); 3 | }; -------------------------------------------------------------------------------- /tests/fixtures/base-move-1dep/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-move-1dep/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-move-1dep/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-move-1dep/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-move-context/a/1/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-move-context/a/2.js: -------------------------------------------------------------------------------- 1 | module.exports = 2; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-move-context/a/3.js: -------------------------------------------------------------------------------- 1 | module.exports = 3; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-move-context/a/4.js: -------------------------------------------------------------------------------- 1 | module.exports = 4; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-move-context/a/5.js: -------------------------------------------------------------------------------- 1 | module.exports = 5; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-move-context/a/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-move-context/a/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-move-context/b/10.js: -------------------------------------------------------------------------------- 1 | module.exports = 10; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-move-context/b/6.js: -------------------------------------------------------------------------------- 1 | module.exports = 6; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-move-context/b/7.js: -------------------------------------------------------------------------------- 1 | module.exports = 7; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-move-context/b/8.js: -------------------------------------------------------------------------------- 1 | module.exports = 8; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-move-context/b/9.js: -------------------------------------------------------------------------------- 1 | module.exports = 9; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-move-context/b/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-move-context/b/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-move-context/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-move-context/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-move-context/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-move-context/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-options-default/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-options-default/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-options-default/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-options-default/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-options-default/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-path-info/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-path-info/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-path-info/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-path-info/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-path-info/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-process-env/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-process-env/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-process-env/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-process-env/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-process-env/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-query-request/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-query-request/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-query-request/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-query-request/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-query-request/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-records-json/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-records-json/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-records-json/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-records-json/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-records-json/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-resolve-missing/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 2 : 0); 3 | }; -------------------------------------------------------------------------------- /tests/fixtures/base-resolve-missing/fib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-resolve-missing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-resolve-missing/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-resolve-missing/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-resolve-missing/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-target-node-1dep/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-target-node-1dep/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-target-node-1dep/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-target-node-1dep/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-target-node-1dep/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-warning-context/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-warning-context/index.js: -------------------------------------------------------------------------------- 1 | var expr = require.context; 2 | -------------------------------------------------------------------------------- /tests/fixtures/base-warning-context/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-warning-context/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-warning-es2015/fib.js: -------------------------------------------------------------------------------- 1 | export default function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/base-warning-es2015/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-warning-es2015/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-warning-es2015/obj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-warning-es2015/obj.js -------------------------------------------------------------------------------- /tests/fixtures/base-warning-es2015/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-warning-es2015/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/base-wasm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-wasm/index.js -------------------------------------------------------------------------------- /tests/fixtures/base-wasm/wasm.wasm: -------------------------------------------------------------------------------- 1 | asm ``add getNumber 2 |  j A( -------------------------------------------------------------------------------- /tests/fixtures/base-wasm/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/base-wasm/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/hard-source-confighash-dir/config-hash: -------------------------------------------------------------------------------- 1 | b -------------------------------------------------------------------------------- /tests/fixtures/hard-source-confighash-dir/fib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 2 : 0); 3 | }; -------------------------------------------------------------------------------- /tests/fixtures/hard-source-confighash-dir/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/hard-source-confighash-dir/index.js -------------------------------------------------------------------------------- /tests/fixtures/hard-source-confighash-dir/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/hard-source-confighash-dir/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/hard-source-confighash/config-hash: -------------------------------------------------------------------------------- 1 | b -------------------------------------------------------------------------------- /tests/fixtures/hard-source-confighash/fib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 2 : 0); 3 | }; -------------------------------------------------------------------------------- /tests/fixtures/hard-source-confighash/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/hard-source-confighash/index.js -------------------------------------------------------------------------------- /tests/fixtures/hard-source-confighash/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/hard-source-confighash/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/hard-source-environmenthash/env-hash: -------------------------------------------------------------------------------- 1 | b -------------------------------------------------------------------------------- /tests/fixtures/hard-source-environmenthash/fib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 2 : 0); 3 | }; -------------------------------------------------------------------------------- /tests/fixtures/hard-source-environmenthash/hard-source-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/hard-source-environmenthash/hard-source-config.js -------------------------------------------------------------------------------- /tests/fixtures/hard-source-environmenthash/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/hard-source-environmenthash/index.js -------------------------------------------------------------------------------- /tests/fixtures/hard-source-environmenthash/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/hard-source-environmenthash/loader.js -------------------------------------------------------------------------------- /tests/fixtures/hard-source-environmenthash/vendor/lib1.js: -------------------------------------------------------------------------------- 1 | console.log("b"); 2 | -------------------------------------------------------------------------------- /tests/fixtures/hard-source-environmenthash/vendor/lib2.js: -------------------------------------------------------------------------------- 1 | console.log("b"); 2 | -------------------------------------------------------------------------------- /tests/fixtures/hard-source-environmenthash/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/hard-source-environmenthash/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/hard-source-exclude-plugin/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/hard-source-exclude-plugin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/hard-source-exclude-plugin/index.js -------------------------------------------------------------------------------- /tests/fixtures/hard-source-exclude-plugin/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/hard-source-exclude-plugin/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/hard-source-md5/config-hash: -------------------------------------------------------------------------------- 1 | a -------------------------------------------------------------------------------- /tests/fixtures/hard-source-md5/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return 1; 3 | }; -------------------------------------------------------------------------------- /tests/fixtures/hard-source-md5/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/hard-source-md5/index.js -------------------------------------------------------------------------------- /tests/fixtures/hard-source-md5/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/hard-source-md5/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/hard-source-packageyarnlock-hash/env-hash: -------------------------------------------------------------------------------- 1 | b -------------------------------------------------------------------------------- /tests/fixtures/hard-source-packageyarnlock-hash/fib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 2 : 0); 3 | }; -------------------------------------------------------------------------------- /tests/fixtures/hard-source-packageyarnlock-hash/hard-source-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/hard-source-packageyarnlock-hash/hard-source-config.js -------------------------------------------------------------------------------- /tests/fixtures/hard-source-packageyarnlock-hash/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/hard-source-packageyarnlock-hash/index.js -------------------------------------------------------------------------------- /tests/fixtures/hard-source-packageyarnlock-hash/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/hard-source-packageyarnlock-hash/loader.js -------------------------------------------------------------------------------- /tests/fixtures/hard-source-packageyarnlock-hash/package-lock.json: -------------------------------------------------------------------------------- 1 | c -------------------------------------------------------------------------------- /tests/fixtures/hard-source-packageyarnlock-hash/vendor/lib1.js: -------------------------------------------------------------------------------- 1 | console.log("b"); 2 | -------------------------------------------------------------------------------- /tests/fixtures/hard-source-packageyarnlock-hash/vendor/lib2.js: -------------------------------------------------------------------------------- 1 | console.log("b"); 2 | -------------------------------------------------------------------------------- /tests/fixtures/hard-source-packageyarnlock-hash/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/hard-source-packageyarnlock-hash/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/hard-source-packageyarnlock-hash/yarn.lock: -------------------------------------------------------------------------------- 1 | b -------------------------------------------------------------------------------- /tests/fixtures/hard-source-parallel-plugin-config-mismatch/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/hard-source-parallel-plugin-config-mismatch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/hard-source-parallel-plugin-config-mismatch/index.js -------------------------------------------------------------------------------- /tests/fixtures/hard-source-parallel-plugin-config-mismatch/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/hard-source-parallel-plugin-config-mismatch/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/hard-source-parallel-plugin-context/a/1.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /tests/fixtures/hard-source-parallel-plugin-context/a/2.js: -------------------------------------------------------------------------------- 1 | module.exports = 2; 2 | -------------------------------------------------------------------------------- /tests/fixtures/hard-source-parallel-plugin-context/a/3.js: -------------------------------------------------------------------------------- 1 | module.exports = 3; 2 | -------------------------------------------------------------------------------- /tests/fixtures/hard-source-parallel-plugin-context/a/4.js: -------------------------------------------------------------------------------- 1 | module.exports = 4; 2 | -------------------------------------------------------------------------------- /tests/fixtures/hard-source-parallel-plugin-context/a/5.js: -------------------------------------------------------------------------------- 1 | module.exports = 5; 2 | -------------------------------------------------------------------------------- /tests/fixtures/hard-source-parallel-plugin-context/a/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/hard-source-parallel-plugin-context/a/index.js -------------------------------------------------------------------------------- /tests/fixtures/hard-source-parallel-plugin-context/b/10.js: -------------------------------------------------------------------------------- 1 | module.exports = 10; 2 | -------------------------------------------------------------------------------- /tests/fixtures/hard-source-parallel-plugin-context/b/6.js: -------------------------------------------------------------------------------- 1 | module.exports = 6; 2 | -------------------------------------------------------------------------------- /tests/fixtures/hard-source-parallel-plugin-context/b/7.js: -------------------------------------------------------------------------------- 1 | module.exports = 7; 2 | -------------------------------------------------------------------------------- /tests/fixtures/hard-source-parallel-plugin-context/b/8.js: -------------------------------------------------------------------------------- 1 | module.exports = 8; 2 | -------------------------------------------------------------------------------- /tests/fixtures/hard-source-parallel-plugin-context/b/9.js: -------------------------------------------------------------------------------- 1 | module.exports = 9; 2 | -------------------------------------------------------------------------------- /tests/fixtures/hard-source-parallel-plugin-context/b/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/hard-source-parallel-plugin-context/b/index.js -------------------------------------------------------------------------------- /tests/fixtures/hard-source-parallel-plugin-context/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/hard-source-parallel-plugin-context/index.js -------------------------------------------------------------------------------- /tests/fixtures/hard-source-parallel-plugin-context/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/hard-source-parallel-plugin-context/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/hard-source-parallel-plugin-defaults/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/hard-source-parallel-plugin-defaults/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/hard-source-parallel-plugin-defaults/index.js -------------------------------------------------------------------------------- /tests/fixtures/hard-source-parallel-plugin-defaults/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/hard-source-parallel-plugin-defaults/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/hard-source-parallel-plugin/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/hard-source-parallel-plugin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/hard-source-parallel-plugin/index.js -------------------------------------------------------------------------------- /tests/fixtures/hard-source-parallel-plugin/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/hard-source-parallel-plugin/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/hard-source-prune/config-hash: -------------------------------------------------------------------------------- 1 | b -------------------------------------------------------------------------------- /tests/fixtures/hard-source-prune/fib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 2 : 0); 3 | }; -------------------------------------------------------------------------------- /tests/fixtures/hard-source-prune/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/hard-source-prune/index.js -------------------------------------------------------------------------------- /tests/fixtures/hard-source-prune/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/hard-source-prune/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/loader-css/index.css: -------------------------------------------------------------------------------- 1 | .hello { 2 | color: blue; 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/loader-css/index.js: -------------------------------------------------------------------------------- 1 | require('./index.css'); 2 | -------------------------------------------------------------------------------- /tests/fixtures/loader-css/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-css/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-context-dep/dir/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-context-dep/dir/b: -------------------------------------------------------------------------------- 1 | // b -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-context-dep/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-context-dep/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-context-dep/index.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-context-dep/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-context-dep/loader.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-context-dep/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-context-dep/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-deep-context-dep/dir/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-deep-context-dep/dir/dirdir/b: -------------------------------------------------------------------------------- 1 | // b -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-deep-context-dep/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-deep-context-dep/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-deep-context-dep/index.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-deep-context-dep/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-deep-context-dep/loader.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-deep-context-dep/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-deep-context-dep/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-function-option/fib.js: -------------------------------------------------------------------------------- 1 | bar -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-function-option/index.js: -------------------------------------------------------------------------------- 1 | require('./fib'); 2 | -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-function-option/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-function-option/loader.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-function-option/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-function-option/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-missing-dep-added/index.js: -------------------------------------------------------------------------------- 1 | console.log(fib(3)); 2 | -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-missing-dep-added/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-missing-dep-added/loader.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-missing-dep-added/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-missing-dep-added/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-missing-dep/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-missing-dep/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-missing-dep/loader.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-missing-dep/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-missing-dep/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-no-dep-moved/fib/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-no-dep-moved/index.js: -------------------------------------------------------------------------------- 1 | require('./loader.js!./fib'); 2 | -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-no-dep-moved/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-no-dep-moved/loader.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-no-dep-moved/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-no-dep-moved/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-no-dep/fib.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-no-dep/index.js: -------------------------------------------------------------------------------- 1 | require('./loader.js!./fib.js'); 2 | -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-no-dep/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-no-dep/loader.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-no-dep/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-no-dep/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-prepend-helper/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-prepend-helper/image.png -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-prepend-helper/index.js: -------------------------------------------------------------------------------- 1 | helper(require('./image.png')); 2 | -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-prepend-helper/loader-helper.js: -------------------------------------------------------------------------------- 1 | function helper(b) { 2 | console.log(b); 3 | } -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-prepend-helper/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-prepend-helper/loader.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-prepend-helper/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-prepend-helper/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-resolve-missing-query/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 2 : 0); 3 | }; -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-resolve-missing-query/fib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-resolve-missing-query/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-resolve-missing-query/index.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-resolve-missing-query/loader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-resolve-missing-query/loader/index.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-resolve-missing-query/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-resolve-missing-query/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-resolve-missing/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 2 : 0); 3 | }; -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-resolve-missing/fib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-resolve-missing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-resolve-missing/index.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-resolve-missing/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-resolve-missing/loader.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-resolve-missing/loader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-resolve-missing/loader/index.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-resolve-missing/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-resolve-missing/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-resolve-request-missing-change/fab.js: -------------------------------------------------------------------------------- 1 | bar -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-resolve-request-missing-change/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 2 : 0); 3 | }; -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-resolve-request-missing-change/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-resolve-request-missing-change/index.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-resolve-request-missing-change/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-resolve-request-missing-change/loader.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-resolve-request-missing-change/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-resolve-request-missing-change/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-resolve-request-missing/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 2 : 0); 3 | }; -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-resolve-request-missing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-resolve-request-missing/index.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-resolve-request-missing/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-resolve-request-missing/loader.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-resolve-request-missing/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-resolve-request-missing/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-resolve-request/fab/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-resolve-request/fab/index.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-resolve-request/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 2 : 0); 3 | }; -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-resolve-request/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-resolve-request/index.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-resolve-request/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-resolve-request/loader.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-resolve-request/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-resolve-request/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-user-loader/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-user-loader/index.js: -------------------------------------------------------------------------------- 1 | require('./loader.js!./fib.js'); 2 | -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-user-loader/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-user-loader/loader.js -------------------------------------------------------------------------------- /tests/fixtures/loader-custom-user-loader/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-custom-user-loader/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/loader-file-context/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-file-context/images/image.png -------------------------------------------------------------------------------- /tests/fixtures/loader-file-context/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-file-context/index.js -------------------------------------------------------------------------------- /tests/fixtures/loader-file-context/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-file-context/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/loader-file-move/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-file-move/image.png -------------------------------------------------------------------------------- /tests/fixtures/loader-file-move/index.js: -------------------------------------------------------------------------------- 1 | require('./image.png'); 2 | -------------------------------------------------------------------------------- /tests/fixtures/loader-file-move/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-file-move/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/loader-file-options/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-file-options/image.png -------------------------------------------------------------------------------- /tests/fixtures/loader-file-options/index.js: -------------------------------------------------------------------------------- 1 | require('./image.png'); 2 | -------------------------------------------------------------------------------- /tests/fixtures/loader-file-options/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-file-options/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/loader-file-use/src/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-file-use/src/image.png -------------------------------------------------------------------------------- /tests/fixtures/loader-file-use/src/index.js: -------------------------------------------------------------------------------- 1 | require('./image.png'); 2 | -------------------------------------------------------------------------------- /tests/fixtures/loader-file-use/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-file-use/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/loader-file/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-file/image.png -------------------------------------------------------------------------------- /tests/fixtures/loader-file/index.js: -------------------------------------------------------------------------------- 1 | require('./image.png'); 2 | -------------------------------------------------------------------------------- /tests/fixtures/loader-file/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-file/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/loader-warning/index.js: -------------------------------------------------------------------------------- 1 | // fake content 2 | require("./module"); 3 | -------------------------------------------------------------------------------- /tests/fixtures/loader-warning/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-warning/loader.js -------------------------------------------------------------------------------- /tests/fixtures/loader-warning/module.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/loader-warning/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-warning/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/loader-worker-1dep/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/loader-worker-1dep/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-worker-1dep/index.js -------------------------------------------------------------------------------- /tests/fixtures/loader-worker-1dep/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-worker-1dep/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/loader-worker-1dep/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/loader-worker-1dep/worker.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-child-compiler-resolutions/child-compilation-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-child-compiler-resolutions/child-compilation-plugin.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-child-compiler-resolutions/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-child-compiler-resolutions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-child-compiler-resolutions/index.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-child-compiler-resolutions/loader-a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-child-compiler-resolutions/loader-a.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-child-compiler-resolutions/loader-b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-child-compiler-resolutions/loader-b.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-child-compiler-resolutions/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-child-compiler-resolutions/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-concatenated-module-change/fib.js: -------------------------------------------------------------------------------- 1 | export default function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-concatenated-module-change/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-concatenated-module-change/index.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-concatenated-module-change/obj.js: -------------------------------------------------------------------------------- 1 | let key = 'obj'; 2 | export {key}; -------------------------------------------------------------------------------- /tests/fixtures/plugin-concatenated-module-change/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-concatenated-module-change/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-concatenated-module/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-concatenated-module/a.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-concatenated-module/b.js: -------------------------------------------------------------------------------- 1 | export default 'a key'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-concatenated-module/fib.js: -------------------------------------------------------------------------------- 1 | export default function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-concatenated-module/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-concatenated-module/index.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-concatenated-module/obj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-concatenated-module/obj.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-concatenated-module/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-concatenated-module/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-copy/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-copy/images/image.png -------------------------------------------------------------------------------- /tests/fixtures/plugin-copy/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-copy/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-copy/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-dll-reference-scope/dll-4.27.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-dll-reference-scope/dll-4.27.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-dll-reference-scope/dll-manifest-4.27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-dll-reference-scope/dll-manifest-4.27.json -------------------------------------------------------------------------------- /tests/fixtures/plugin-dll-reference-scope/dll-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-dll-reference-scope/dll-manifest.json -------------------------------------------------------------------------------- /tests/fixtures/plugin-dll-reference-scope/dll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-dll-reference-scope/dll.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-dll-reference-scope/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-dll-reference-scope/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-dll-reference-scope/index.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-dll-reference-scope/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-dll-reference-scope/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-dll-reference/dll-4.27.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-dll-reference/dll-4.27.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-dll-reference/dll-manifest-4.27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-dll-reference/dll-manifest-4.27.json -------------------------------------------------------------------------------- /tests/fixtures/plugin-dll-reference/dll-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-dll-reference/dll-manifest.json -------------------------------------------------------------------------------- /tests/fixtures/plugin-dll-reference/dll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-dll-reference/dll.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-dll-reference/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-dll-reference/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-dll-reference/index.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-dll-reference/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-dll-reference/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-dll/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-dll/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-dll/index.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-dll/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-dll/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-extract-text-html-uglify/index.css: -------------------------------------------------------------------------------- 1 | .hello { 2 | color: blue; 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-extract-text-html-uglify/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-extract-text-html-uglify/index.html -------------------------------------------------------------------------------- /tests/fixtures/plugin-extract-text-html-uglify/index.js: -------------------------------------------------------------------------------- 1 | require('./index.css'); 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-extract-text-html-uglify/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-extract-text-html-uglify/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-extract-text-loader-file/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-extract-text-loader-file/image.png -------------------------------------------------------------------------------- /tests/fixtures/plugin-extract-text-loader-file/index.css: -------------------------------------------------------------------------------- 1 | .hello { 2 | color: blue; 3 | background: url('image.png'); 4 | } 5 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-extract-text-loader-file/index.js: -------------------------------------------------------------------------------- 1 | require('./index.css'); 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-extract-text-loader-file/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-extract-text-loader-file/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-extract-text-throw-on-freeze/index.css: -------------------------------------------------------------------------------- 1 | .hello { 2 | color: blue; 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-extract-text-throw-on-freeze/index.js: -------------------------------------------------------------------------------- 1 | require('./index.css'); 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-extract-text-throw-on-freeze/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-extract-text-throw-on-freeze/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-extract-text-uglify-eval-source-map/index.css: -------------------------------------------------------------------------------- 1 | .hello { 2 | color: blue; 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-extract-text-uglify-eval-source-map/index.js: -------------------------------------------------------------------------------- 1 | require('./index.css'); 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-extract-text-uglify-eval-source-map/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-extract-text-uglify-eval-source-map/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-extract-text-uglify-source-map/index.css: -------------------------------------------------------------------------------- 1 | .hello { 2 | color: blue; 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-extract-text-uglify-source-map/index.js: -------------------------------------------------------------------------------- 1 | require('./index.css'); 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-extract-text-uglify-source-map/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-extract-text-uglify-source-map/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-extract-text-uglify/index.css: -------------------------------------------------------------------------------- 1 | .hello { 2 | color: blue; 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-extract-text-uglify/index.js: -------------------------------------------------------------------------------- 1 | require('./index.css'); 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-extract-text-uglify/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-extract-text-uglify/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-extract-text/index.css: -------------------------------------------------------------------------------- 1 | .hello { 2 | color: blue; 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-extract-text/index.js: -------------------------------------------------------------------------------- 1 | require('./index.css'); 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-extract-text/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-extract-text/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-hmr-accept-dep/fib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 2 : 0); 3 | }; -------------------------------------------------------------------------------- /tests/fixtures/plugin-hmr-accept-dep/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-hmr-accept-dep/index.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-hmr-accept-dep/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-hmr-accept-dep/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-hmr-accept/fib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 2 : 0); 3 | }; -------------------------------------------------------------------------------- /tests/fixtures/plugin-hmr-accept/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-hmr-accept/index.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-hmr-accept/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-hmr-accept/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-hmr-es2015/fib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-hmr-es2015/fib.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-hmr-es2015/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-hmr-es2015/index.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-hmr-es2015/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-hmr-es2015/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-hmr-process-env/fib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-hmr-process-env/fib/index.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-hmr-process-env/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-hmr-process-env/index.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-hmr-process-env/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-hmr-process-env/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-hmr/fib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 2 : 0); 3 | }; -------------------------------------------------------------------------------- /tests/fixtures/plugin-hmr/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-hmr/index.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-hmr/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-hmr/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-html-lodash/fact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-html-lodash/fact.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-html-lodash/fib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-html-lodash/fib.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-html-lodash/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-html-lodash/index.html -------------------------------------------------------------------------------- /tests/fixtures/plugin-html-lodash/index.js: -------------------------------------------------------------------------------- 1 | require('./fib'); 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-html-lodash/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-html-lodash/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-ignore-1dep/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-ignore-1dep/index.js: -------------------------------------------------------------------------------- 1 | require('./fib'); 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-ignore-1dep/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-ignore-1dep/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-ignore-context-members/a/1.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-ignore-context-members/a/2.js: -------------------------------------------------------------------------------- 1 | module.exports = 2; 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-ignore-context-members/a/3.js: -------------------------------------------------------------------------------- 1 | module.exports = 3; 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-ignore-context-members/a/4.js: -------------------------------------------------------------------------------- 1 | module.exports = 4; 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-ignore-context-members/a/5.js: -------------------------------------------------------------------------------- 1 | module.exports = 5; 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-ignore-context-members/a/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-ignore-context-members/a/index.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-ignore-context-members/b/10.js: -------------------------------------------------------------------------------- 1 | module.exports = 10; 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-ignore-context-members/b/6.js: -------------------------------------------------------------------------------- 1 | module.exports = 6; 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-ignore-context-members/b/7.js: -------------------------------------------------------------------------------- 1 | module.exports = 7; 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-ignore-context-members/b/8.js: -------------------------------------------------------------------------------- 1 | module.exports = 8; 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-ignore-context-members/b/9.js: -------------------------------------------------------------------------------- 1 | module.exports = 9; 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-ignore-context-members/b/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-ignore-context-members/b/index.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-ignore-context-members/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-ignore-context-members/index.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-ignore-context-members/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-ignore-context-members/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-ignore-context/a/1.js: -------------------------------------------------------------------------------- 1 | module.exports = 1; 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-ignore-context/a/2.js: -------------------------------------------------------------------------------- 1 | module.exports = 2; 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-ignore-context/a/3.js: -------------------------------------------------------------------------------- 1 | module.exports = 3; 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-ignore-context/a/4.js: -------------------------------------------------------------------------------- 1 | module.exports = 4; 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-ignore-context/a/5.js: -------------------------------------------------------------------------------- 1 | module.exports = 5; 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-ignore-context/a/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-ignore-context/a/index.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-ignore-context/b/10.js: -------------------------------------------------------------------------------- 1 | module.exports = 10; 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-ignore-context/b/6.js: -------------------------------------------------------------------------------- 1 | module.exports = 6; 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-ignore-context/b/7.js: -------------------------------------------------------------------------------- 1 | module.exports = 7; 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-ignore-context/b/8.js: -------------------------------------------------------------------------------- 1 | module.exports = 8; 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-ignore-context/b/9.js: -------------------------------------------------------------------------------- 1 | module.exports = 9; 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-ignore-context/b/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-ignore-context/b/index.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-ignore-context/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-ignore-context/index.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-ignore-context/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-ignore-context/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-isomorphic-tools/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-isomorphic-tools/image.png -------------------------------------------------------------------------------- /tests/fixtures/plugin-isomorphic-tools/index.css: -------------------------------------------------------------------------------- 1 | .hello { 2 | background: url('image.png'); 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-isomorphic-tools/index.js: -------------------------------------------------------------------------------- 1 | require('./index.css'); 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-isomorphic-tools/webpack-isomorphic-tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-isomorphic-tools/webpack-isomorphic-tools.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-isomorphic-tools/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-isomorphic-tools/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-logger-child-no-memory/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-logger-child-no-memory/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-logger-child-no-memory/index.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-logger-child-no-memory/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-logger-child-no-memory/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-mini-css-extract-change/index.css: -------------------------------------------------------------------------------- 1 | .hello { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /tests/fixtures/plugin-mini-css-extract-change/index.js: -------------------------------------------------------------------------------- 1 | require('./index.css'); 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-mini-css-extract-change/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-mini-css-extract-change/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-mini-css-extract-file/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-mini-css-extract-file/image.png -------------------------------------------------------------------------------- /tests/fixtures/plugin-mini-css-extract-file/index.css: -------------------------------------------------------------------------------- 1 | .hello { 2 | color: blue; 3 | background: url('image.png'); 4 | } 5 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-mini-css-extract-file/index.js: -------------------------------------------------------------------------------- 1 | require('./index.css'); 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-mini-css-extract-file/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-mini-css-extract-file/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-mini-css-extract-watch/index.css: -------------------------------------------------------------------------------- 1 | .hello { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /tests/fixtures/plugin-mini-css-extract-watch/index.js: -------------------------------------------------------------------------------- 1 | require('./index.css'); 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-mini-css-extract-watch/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-mini-css-extract-watch/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-mini-css-extract/index.css: -------------------------------------------------------------------------------- 1 | .hello { 2 | color: blue; 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-mini-css-extract/index.js: -------------------------------------------------------------------------------- 1 | require('./index.css'); 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-mini-css-extract/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-mini-css-extract/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-prefetch-es2015/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-prefetch-es2015/a.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-prefetch-es2015/b.js: -------------------------------------------------------------------------------- 1 | export default 'key'; 2 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-prefetch-es2015/fib.js: -------------------------------------------------------------------------------- 1 | export default function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-prefetch-es2015/index.js: -------------------------------------------------------------------------------- 1 | import {key} from './obj'; 2 | 3 | console.log(key); 4 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-prefetch-es2015/obj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-prefetch-es2015/obj.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-prefetch-es2015/unused.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-prefetch-es2015/unused.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-prefetch-es2015/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-prefetch-es2015/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-serializer-json-base-1dep/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-serializer-json-base-1dep/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-serializer-json-base-1dep/index.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-serializer-json-base-1dep/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-serializer-json-base-1dep/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-side-effect-change/index.js: -------------------------------------------------------------------------------- 1 | import {fab} from './obj'; 2 | 3 | console.log(fab(3)); -------------------------------------------------------------------------------- /tests/fixtures/plugin-side-effect-change/obj/fab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-side-effect-change/obj/fab.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-side-effect-change/obj/fib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-side-effect-change/obj/fib.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-side-effect-change/obj/key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-side-effect-change/obj/key.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-side-effect-change/obj/obj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-side-effect-change/obj/obj.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-side-effect-change/obj/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-side-effect-change/obj/package.json -------------------------------------------------------------------------------- /tests/fixtures/plugin-side-effect-change/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-side-effect-change/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-side-effect-settings/index.js: -------------------------------------------------------------------------------- 1 | import {fib} from './obj'; 2 | 3 | console.log(fib(3)); 4 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-side-effect-settings/obj/fab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-side-effect-settings/obj/fab.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-side-effect-settings/obj/fib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-side-effect-settings/obj/fib.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-side-effect-settings/obj/key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-side-effect-settings/obj/key.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-side-effect-settings/obj/obj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-side-effect-settings/obj/obj.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-side-effect-settings/obj/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-side-effect-settings/obj/package.json -------------------------------------------------------------------------------- /tests/fixtures/plugin-side-effect-settings/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-side-effect-settings/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-side-effect/index.js: -------------------------------------------------------------------------------- 1 | import {fib} from './obj'; 2 | 3 | console.log(fib(3)); 4 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-side-effect/obj/fab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-side-effect/obj/fab.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-side-effect/obj/fib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-side-effect/obj/fib.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-side-effect/obj/key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-side-effect/obj/key.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-side-effect/obj/obj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-side-effect/obj/obj.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-side-effect/obj/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-side-effect/obj/package.json -------------------------------------------------------------------------------- /tests/fixtures/plugin-side-effect/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-side-effect/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-source-map-1dep/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-source-map-1dep/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-source-map-1dep/index.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-source-map-1dep/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-source-map-1dep/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-uglify-1dep-es2015/fib.js: -------------------------------------------------------------------------------- 1 | export default function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | } 4 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-uglify-1dep-es2015/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-uglify-1dep-es2015/index.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-uglify-1dep-es2015/obj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-uglify-1dep-es2015/obj.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-uglify-1dep-es2015/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-uglify-1dep-es2015/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-uglify-1dep/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-uglify-1dep/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-uglify-1dep/index.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-uglify-1dep/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-uglify-1dep/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-uglify-babel-devtool-source-map/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-uglify-babel-devtool-source-map/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-uglify-babel-devtool-source-map/index.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-uglify-babel-devtool-source-map/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-uglify-babel-devtool-source-map/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-uglify-devtool-source-map/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/plugin-uglify-devtool-source-map/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-uglify-devtool-source-map/index.js -------------------------------------------------------------------------------- /tests/fixtures/plugin-uglify-devtool-source-map/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/plugin-uglify-devtool-source-map/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/serializer-append-2-base-1dep-bad-cache/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/serializer-append-2-base-1dep-bad-cache/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/serializer-append-2-base-1dep-bad-cache/index.js -------------------------------------------------------------------------------- /tests/fixtures/serializer-append-2-base-1dep-bad-cache/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/serializer-append-2-base-1dep-bad-cache/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/serializer-append-2-base-1dep-compact/fib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 2 : 0); 3 | }; -------------------------------------------------------------------------------- /tests/fixtures/serializer-append-2-base-1dep-compact/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/serializer-append-2-base-1dep-compact/index.js -------------------------------------------------------------------------------- /tests/fixtures/serializer-append-2-base-1dep-compact/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/serializer-append-2-base-1dep-compact/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/serializer-append-2-base-1dep/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/serializer-append-2-base-1dep/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/serializer-append-2-base-1dep/index.js -------------------------------------------------------------------------------- /tests/fixtures/serializer-append-2-base-1dep/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/serializer-append-2-base-1dep/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/serializer-append-base-1dep-compact/fib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 2 : 0); 3 | }; -------------------------------------------------------------------------------- /tests/fixtures/serializer-append-base-1dep-compact/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/serializer-append-base-1dep-compact/index.js -------------------------------------------------------------------------------- /tests/fixtures/serializer-append-base-1dep-compact/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/serializer-append-base-1dep-compact/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/serializer-append-base-1dep/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/serializer-append-base-1dep/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/serializer-append-base-1dep/index.js -------------------------------------------------------------------------------- /tests/fixtures/serializer-append-base-1dep/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/serializer-append-base-1dep/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/serializer-cacache-base-1dep/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/serializer-cacache-base-1dep/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/serializer-cacache-base-1dep/index.js -------------------------------------------------------------------------------- /tests/fixtures/serializer-cacache-base-1dep/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/serializer-cacache-base-1dep/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/serializer-json-base-1dep/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/serializer-json-base-1dep/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/serializer-json-base-1dep/index.js -------------------------------------------------------------------------------- /tests/fixtures/serializer-json-base-1dep/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/serializer-json-base-1dep/webpack.config.js -------------------------------------------------------------------------------- /tests/fixtures/serializer-leveldb-base-1dep/fib.js: -------------------------------------------------------------------------------- 1 | module.exports = function(n) { 2 | return n + (n > 0 ? n - 1 : 0); 3 | }; 4 | -------------------------------------------------------------------------------- /tests/fixtures/serializer-leveldb-base-1dep/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/serializer-leveldb-base-1dep/index.js -------------------------------------------------------------------------------- /tests/fixtures/serializer-leveldb-base-1dep/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/fixtures/serializer-leveldb-base-1dep/webpack.config.js -------------------------------------------------------------------------------- /tests/hard-source.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/hard-source.js -------------------------------------------------------------------------------- /tests/loaders-webpack-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/loaders-webpack-1.js -------------------------------------------------------------------------------- /tests/loaders-webpack-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/loaders-webpack-2.js -------------------------------------------------------------------------------- /tests/loaders-webpack-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/loaders-webpack-3.js -------------------------------------------------------------------------------- /tests/plugins-webpack-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/plugins-webpack-1.js -------------------------------------------------------------------------------- /tests/plugins-webpack-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/plugins-webpack-2.js -------------------------------------------------------------------------------- /tests/plugins-webpack-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/plugins-webpack-3.js -------------------------------------------------------------------------------- /tests/plugins-webpack-4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/plugins-webpack-4.js -------------------------------------------------------------------------------- /tests/serializers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/serializers.js -------------------------------------------------------------------------------- /tests/util/features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/util/features.js -------------------------------------------------------------------------------- /tests/util/force-write-records.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/util/force-write-records.js -------------------------------------------------------------------------------- /tests/util/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/util/index.js -------------------------------------------------------------------------------- /tests/util/webpack-if.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzgoddard/hard-source-webpack-plugin/HEAD/tests/util/webpack-if.js --------------------------------------------------------------------------------