@depup/webpack 5.105.4-depup.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +20 -0
- package/README.md +38 -0
- package/bin/webpack.js +196 -0
- package/hot/dev-server.js +90 -0
- package/hot/emitter-event-target.js +7 -0
- package/hot/emitter.js +2 -0
- package/hot/lazy-compilation-node.js +66 -0
- package/hot/lazy-compilation-universal.js +18 -0
- package/hot/lazy-compilation-web.js +93 -0
- package/hot/load-http.js +7 -0
- package/hot/log-apply-result.js +49 -0
- package/hot/log.js +78 -0
- package/hot/only-dev-server.js +118 -0
- package/hot/poll.js +41 -0
- package/hot/signal.js +66 -0
- package/lib/APIPlugin.js +392 -0
- package/lib/AbstractMethodError.js +56 -0
- package/lib/AsyncDependenciesBlock.js +128 -0
- package/lib/AsyncDependencyToInitialChunkError.js +34 -0
- package/lib/AutomaticPrefetchPlugin.js +66 -0
- package/lib/BannerPlugin.js +138 -0
- package/lib/Cache.js +168 -0
- package/lib/CacheFacade.js +349 -0
- package/lib/CaseSensitiveModulesWarning.js +72 -0
- package/lib/Chunk.js +899 -0
- package/lib/ChunkGraph.js +1968 -0
- package/lib/ChunkGroup.js +615 -0
- package/lib/ChunkRenderError.js +38 -0
- package/lib/ChunkTemplate.js +181 -0
- package/lib/CleanPlugin.js +495 -0
- package/lib/CodeGenerationError.js +35 -0
- package/lib/CodeGenerationResults.js +167 -0
- package/lib/CommentCompilationWarning.js +33 -0
- package/lib/CompatibilityPlugin.js +240 -0
- package/lib/Compilation.js +5876 -0
- package/lib/Compiler.js +1413 -0
- package/lib/ConcatenationScope.js +181 -0
- package/lib/ConcurrentCompilationError.js +18 -0
- package/lib/ConditionalInitFragment.js +120 -0
- package/lib/ConstPlugin.js +567 -0
- package/lib/ContextExclusionPlugin.js +33 -0
- package/lib/ContextModule.js +1411 -0
- package/lib/ContextModuleFactory.js +514 -0
- package/lib/ContextReplacementPlugin.js +227 -0
- package/lib/CssModule.js +179 -0
- package/lib/DefinePlugin.js +878 -0
- package/lib/DelegatedModule.js +279 -0
- package/lib/DelegatedModuleFactoryPlugin.js +116 -0
- package/lib/DelegatedPlugin.js +49 -0
- package/lib/DependenciesBlock.js +120 -0
- package/lib/Dependency.js +390 -0
- package/lib/DependencyTemplate.js +71 -0
- package/lib/DependencyTemplates.js +67 -0
- package/lib/DllEntryPlugin.js +76 -0
- package/lib/DllModule.js +175 -0
- package/lib/DllModuleFactory.js +38 -0
- package/lib/DllPlugin.js +73 -0
- package/lib/DllReferencePlugin.js +189 -0
- package/lib/DotenvPlugin.js +468 -0
- package/lib/DynamicEntryPlugin.js +93 -0
- package/lib/EntryOptionPlugin.js +98 -0
- package/lib/EntryPlugin.js +72 -0
- package/lib/Entrypoint.js +120 -0
- package/lib/EnvironmentNotSupportAsyncWarning.js +51 -0
- package/lib/EnvironmentPlugin.js +74 -0
- package/lib/ErrorHelpers.js +100 -0
- package/lib/EvalDevToolModulePlugin.js +135 -0
- package/lib/EvalSourceMapDevToolPlugin.js +252 -0
- package/lib/ExportsInfo.js +1663 -0
- package/lib/ExportsInfoApiPlugin.js +87 -0
- package/lib/ExternalModule.js +1169 -0
- package/lib/ExternalModuleFactoryPlugin.js +370 -0
- package/lib/ExternalsPlugin.js +93 -0
- package/lib/FalseIIFEUmdWarning.js +20 -0
- package/lib/FileSystemInfo.js +4131 -0
- package/lib/FlagAllModulesAsUsedPlugin.js +55 -0
- package/lib/FlagDependencyExportsPlugin.js +437 -0
- package/lib/FlagDependencyUsagePlugin.js +348 -0
- package/lib/FlagEntryExportAsUsedPlugin.js +56 -0
- package/lib/Generator.js +188 -0
- package/lib/GraphHelpers.js +46 -0
- package/lib/HarmonyLinkingError.js +17 -0
- package/lib/HookWebpackError.js +121 -0
- package/lib/HotModuleReplacementPlugin.js +930 -0
- package/lib/HotUpdateChunk.js +16 -0
- package/lib/IgnoreErrorModuleFactory.js +39 -0
- package/lib/IgnorePlugin.js +105 -0
- package/lib/IgnoreWarningsPlugin.js +41 -0
- package/lib/InitFragment.js +204 -0
- package/lib/InvalidDependenciesModuleWarning.js +44 -0
- package/lib/JavascriptMetaInfoPlugin.js +78 -0
- package/lib/LibManifestPlugin.js +144 -0
- package/lib/LibraryTemplatePlugin.js +48 -0
- package/lib/LoaderOptionsPlugin.js +81 -0
- package/lib/LoaderTargetPlugin.js +39 -0
- package/lib/MainTemplate.js +371 -0
- package/lib/ManifestPlugin.js +242 -0
- package/lib/Module.js +1319 -0
- package/lib/ModuleBuildError.js +83 -0
- package/lib/ModuleDependencyError.js +44 -0
- package/lib/ModuleDependencyWarning.js +49 -0
- package/lib/ModuleError.js +69 -0
- package/lib/ModuleFactory.js +57 -0
- package/lib/ModuleFilenameHelpers.js +388 -0
- package/lib/ModuleGraph.js +1024 -0
- package/lib/ModuleGraphConnection.js +199 -0
- package/lib/ModuleHashingError.js +31 -0
- package/lib/ModuleInfoHeaderPlugin.js +318 -0
- package/lib/ModuleNotFoundError.js +90 -0
- package/lib/ModuleParseError.js +125 -0
- package/lib/ModuleProfile.js +108 -0
- package/lib/ModuleRestoreError.js +46 -0
- package/lib/ModuleSourceTypeConstants.js +179 -0
- package/lib/ModuleStoreError.js +45 -0
- package/lib/ModuleTemplate.js +173 -0
- package/lib/ModuleTypeConstants.js +190 -0
- package/lib/ModuleWarning.js +68 -0
- package/lib/MultiCompiler.js +678 -0
- package/lib/MultiStats.js +213 -0
- package/lib/MultiWatching.js +77 -0
- package/lib/NoEmitOnErrorsPlugin.js +30 -0
- package/lib/NoModeWarning.js +23 -0
- package/lib/NodeStuffInWebError.js +35 -0
- package/lib/NodeStuffPlugin.js +587 -0
- package/lib/NormalModule.js +1798 -0
- package/lib/NormalModuleFactory.js +1455 -0
- package/lib/NormalModuleReplacementPlugin.js +75 -0
- package/lib/NullFactory.js +24 -0
- package/lib/OptimizationStages.js +10 -0
- package/lib/OptionsApply.js +24 -0
- package/lib/Parser.js +40 -0
- package/lib/PlatformPlugin.js +41 -0
- package/lib/PrefetchPlugin.js +56 -0
- package/lib/ProgressPlugin.js +712 -0
- package/lib/ProvidePlugin.js +121 -0
- package/lib/RawModule.js +180 -0
- package/lib/RecordIdsPlugin.js +216 -0
- package/lib/RequestShortener.js +36 -0
- package/lib/RequireJsStuffPlugin.js +84 -0
- package/lib/ResolverFactory.js +156 -0
- package/lib/RuntimeGlobals.js +450 -0
- package/lib/RuntimeModule.js +242 -0
- package/lib/RuntimePlugin.js +547 -0
- package/lib/RuntimeTemplate.js +1288 -0
- package/lib/SelfModuleFactory.js +33 -0
- package/lib/SingleEntryPlugin.js +8 -0
- package/lib/SizeFormatHelpers.js +25 -0
- package/lib/SourceMapDevToolModuleOptionsPlugin.js +52 -0
- package/lib/SourceMapDevToolPlugin.js +646 -0
- package/lib/Stats.js +89 -0
- package/lib/Template.js +427 -0
- package/lib/TemplatedPathPlugin.js +400 -0
- package/lib/UnhandledSchemeError.js +34 -0
- package/lib/UnsupportedFeatureWarning.js +35 -0
- package/lib/UseStrictPlugin.js +81 -0
- package/lib/WarnCaseSensitiveModulesPlugin.js +64 -0
- package/lib/WarnDeprecatedOptionPlugin.js +60 -0
- package/lib/WarnNoModeSetPlugin.js +27 -0
- package/lib/WatchIgnorePlugin.js +155 -0
- package/lib/Watching.js +531 -0
- package/lib/WebpackError.js +81 -0
- package/lib/WebpackIsIncludedPlugin.js +93 -0
- package/lib/WebpackOptionsApply.js +941 -0
- package/lib/WebpackOptionsDefaulter.js +26 -0
- package/lib/asset/AssetBytesGenerator.js +172 -0
- package/lib/asset/AssetBytesParser.js +37 -0
- package/lib/asset/AssetGenerator.js +816 -0
- package/lib/asset/AssetModulesPlugin.js +358 -0
- package/lib/asset/AssetParser.js +73 -0
- package/lib/asset/AssetSourceGenerator.js +171 -0
- package/lib/asset/AssetSourceParser.js +37 -0
- package/lib/asset/RawDataUrlModule.js +179 -0
- package/lib/async-modules/AsyncModuleHelpers.js +52 -0
- package/lib/async-modules/AwaitDependenciesInitFragment.js +90 -0
- package/lib/async-modules/InferAsyncModulesPlugin.js +54 -0
- package/lib/buildChunkGraph.js +1392 -0
- package/lib/cache/AddBuildDependenciesPlugin.js +32 -0
- package/lib/cache/AddManagedPathsPlugin.js +40 -0
- package/lib/cache/IdleFileCachePlugin.js +242 -0
- package/lib/cache/MemoryCachePlugin.js +57 -0
- package/lib/cache/MemoryWithGcCachePlugin.js +142 -0
- package/lib/cache/PackFileCacheStrategy.js +1600 -0
- package/lib/cache/ResolverCachePlugin.js +450 -0
- package/lib/cache/getLazyHashedEtag.js +91 -0
- package/lib/cache/mergeEtags.js +71 -0
- package/lib/cli.js +859 -0
- package/lib/config/browserslistTargetHandler.js +388 -0
- package/lib/config/defaults.js +2086 -0
- package/lib/config/normalization.js +681 -0
- package/lib/config/target.js +389 -0
- package/lib/container/ContainerEntryDependency.js +50 -0
- package/lib/container/ContainerEntryModule.js +303 -0
- package/lib/container/ContainerEntryModuleFactory.js +27 -0
- package/lib/container/ContainerExposedDependency.js +62 -0
- package/lib/container/ContainerPlugin.js +118 -0
- package/lib/container/ContainerReferencePlugin.js +139 -0
- package/lib/container/FallbackDependency.js +66 -0
- package/lib/container/FallbackItemDependency.js +34 -0
- package/lib/container/FallbackModule.js +193 -0
- package/lib/container/FallbackModuleFactory.js +27 -0
- package/lib/container/HoistContainerReferencesPlugin.js +256 -0
- package/lib/container/ModuleFederationPlugin.js +131 -0
- package/lib/container/RemoteModule.js +225 -0
- package/lib/container/RemoteRuntimeModule.js +144 -0
- package/lib/container/RemoteToExternalDependency.js +33 -0
- package/lib/container/options.js +105 -0
- package/lib/css/CssGenerator.js +587 -0
- package/lib/css/CssLoadingRuntimeModule.js +513 -0
- package/lib/css/CssMergeStyleSheetsRuntimeModule.js +56 -0
- package/lib/css/CssModulesPlugin.js +939 -0
- package/lib/css/CssParser.js +2621 -0
- package/lib/css/walkCssTokens.js +1740 -0
- package/lib/debug/ProfilingPlugin.js +589 -0
- package/lib/dependencies/AMDDefineDependency.js +267 -0
- package/lib/dependencies/AMDDefineDependencyParserPlugin.js +504 -0
- package/lib/dependencies/AMDPlugin.js +243 -0
- package/lib/dependencies/AMDRequireArrayDependency.js +124 -0
- package/lib/dependencies/AMDRequireContextDependency.js +69 -0
- package/lib/dependencies/AMDRequireDependenciesBlock.js +28 -0
- package/lib/dependencies/AMDRequireDependenciesBlockParserPlugin.js +425 -0
- package/lib/dependencies/AMDRequireDependency.js +189 -0
- package/lib/dependencies/AMDRequireItemDependency.js +41 -0
- package/lib/dependencies/AMDRuntimeModules.js +50 -0
- package/lib/dependencies/CachedConstDependency.js +135 -0
- package/lib/dependencies/CommonJsDependencyHelpers.js +65 -0
- package/lib/dependencies/CommonJsExportRequireDependency.js +416 -0
- package/lib/dependencies/CommonJsExportsDependency.js +184 -0
- package/lib/dependencies/CommonJsExportsParserPlugin.js +425 -0
- package/lib/dependencies/CommonJsFullRequireDependency.js +162 -0
- package/lib/dependencies/CommonJsImportsParserPlugin.js +611 -0
- package/lib/dependencies/CommonJsPlugin.js +316 -0
- package/lib/dependencies/CommonJsRequireContextDependency.js +73 -0
- package/lib/dependencies/CommonJsRequireDependency.js +42 -0
- package/lib/dependencies/CommonJsSelfReferenceDependency.js +156 -0
- package/lib/dependencies/ConstDependency.js +118 -0
- package/lib/dependencies/ContextDependency.js +183 -0
- package/lib/dependencies/ContextDependencyHelpers.js +277 -0
- package/lib/dependencies/ContextDependencyTemplateAsId.js +63 -0
- package/lib/dependencies/ContextDependencyTemplateAsRequireCall.js +62 -0
- package/lib/dependencies/ContextElementDependency.js +147 -0
- package/lib/dependencies/CreateRequireParserPlugin.js +356 -0
- package/lib/dependencies/CreateScriptUrlDependency.js +75 -0
- package/lib/dependencies/CriticalDependencyWarning.js +29 -0
- package/lib/dependencies/CssIcssExportDependency.js +539 -0
- package/lib/dependencies/CssIcssImportDependency.js +183 -0
- package/lib/dependencies/CssIcssSymbolDependency.js +131 -0
- package/lib/dependencies/CssImportDependency.js +120 -0
- package/lib/dependencies/CssUrlDependency.js +189 -0
- package/lib/dependencies/DelegatedSourceDependency.js +33 -0
- package/lib/dependencies/DllEntryDependency.js +61 -0
- package/lib/dependencies/DynamicExports.js +73 -0
- package/lib/dependencies/EntryDependency.js +30 -0
- package/lib/dependencies/ExportsInfoDependency.js +161 -0
- package/lib/dependencies/ExternalModuleDependency.js +109 -0
- package/lib/dependencies/ExternalModuleInitFragment.js +137 -0
- package/lib/dependencies/ExternalModuleInitFragmentDependency.js +87 -0
- package/lib/dependencies/HarmonyAcceptDependency.js +237 -0
- package/lib/dependencies/HarmonyAcceptImportDependency.js +37 -0
- package/lib/dependencies/HarmonyCompatibilityDependency.js +91 -0
- package/lib/dependencies/HarmonyDetectionParserPlugin.js +103 -0
- package/lib/dependencies/HarmonyEvaluatedImportSpecifierDependency.js +165 -0
- package/lib/dependencies/HarmonyExportDependencyParserPlugin.js +254 -0
- package/lib/dependencies/HarmonyExportExpressionDependency.js +211 -0
- package/lib/dependencies/HarmonyExportHeaderDependency.js +78 -0
- package/lib/dependencies/HarmonyExportImportedSpecifierDependency.js +1494 -0
- package/lib/dependencies/HarmonyExportInitFragment.js +191 -0
- package/lib/dependencies/HarmonyExportSpecifierDependency.js +127 -0
- package/lib/dependencies/HarmonyExports.js +46 -0
- package/lib/dependencies/HarmonyImportDependency.js +459 -0
- package/lib/dependencies/HarmonyImportDependencyParserPlugin.js +576 -0
- package/lib/dependencies/HarmonyImportSideEffectDependency.js +91 -0
- package/lib/dependencies/HarmonyImportSpecifierDependency.js +514 -0
- package/lib/dependencies/HarmonyModulesPlugin.js +158 -0
- package/lib/dependencies/HarmonyTopLevelThisParserPlugin.js +39 -0
- package/lib/dependencies/ImportContextDependency.js +81 -0
- package/lib/dependencies/ImportDependency.js +158 -0
- package/lib/dependencies/ImportEagerDependency.js +76 -0
- package/lib/dependencies/ImportMetaContextDependency.js +42 -0
- package/lib/dependencies/ImportMetaContextDependencyParserPlugin.js +312 -0
- package/lib/dependencies/ImportMetaContextPlugin.js +72 -0
- package/lib/dependencies/ImportMetaHotAcceptDependency.js +41 -0
- package/lib/dependencies/ImportMetaHotDeclineDependency.js +42 -0
- package/lib/dependencies/ImportMetaPlugin.js +447 -0
- package/lib/dependencies/ImportParserPlugin.js +602 -0
- package/lib/dependencies/ImportPhase.js +125 -0
- package/lib/dependencies/ImportPlugin.js +98 -0
- package/lib/dependencies/ImportWeakDependency.js +74 -0
- package/lib/dependencies/JsonExportsDependency.js +137 -0
- package/lib/dependencies/LoaderDependency.js +38 -0
- package/lib/dependencies/LoaderImportDependency.js +39 -0
- package/lib/dependencies/LoaderPlugin.js +294 -0
- package/lib/dependencies/LocalModule.js +60 -0
- package/lib/dependencies/LocalModuleDependency.js +84 -0
- package/lib/dependencies/LocalModulesHelpers.js +68 -0
- package/lib/dependencies/ModuleDecoratorDependency.js +136 -0
- package/lib/dependencies/ModuleDependency.js +100 -0
- package/lib/dependencies/ModuleDependencyTemplateAsId.js +35 -0
- package/lib/dependencies/ModuleDependencyTemplateAsRequireId.js +39 -0
- package/lib/dependencies/ModuleHotAcceptDependency.js +41 -0
- package/lib/dependencies/ModuleHotDeclineDependency.js +42 -0
- package/lib/dependencies/ModuleInitFragmentDependency.js +87 -0
- package/lib/dependencies/NullDependency.js +42 -0
- package/lib/dependencies/PrefetchDependency.js +27 -0
- package/lib/dependencies/ProvidedDependency.js +156 -0
- package/lib/dependencies/PureExpressionDependency.js +161 -0
- package/lib/dependencies/RequireContextDependency.js +38 -0
- package/lib/dependencies/RequireContextDependencyParserPlugin.js +69 -0
- package/lib/dependencies/RequireContextPlugin.js +167 -0
- package/lib/dependencies/RequireEnsureDependenciesBlock.js +29 -0
- package/lib/dependencies/RequireEnsureDependenciesBlockParserPlugin.js +145 -0
- package/lib/dependencies/RequireEnsureDependency.js +115 -0
- package/lib/dependencies/RequireEnsureItemDependency.js +36 -0
- package/lib/dependencies/RequireEnsurePlugin.js +86 -0
- package/lib/dependencies/RequireHeaderDependency.js +70 -0
- package/lib/dependencies/RequireIncludeDependency.js +79 -0
- package/lib/dependencies/RequireIncludeDependencyParserPlugin.js +100 -0
- package/lib/dependencies/RequireIncludePlugin.js +63 -0
- package/lib/dependencies/RequireResolveContextDependency.js +67 -0
- package/lib/dependencies/RequireResolveDependency.js +58 -0
- package/lib/dependencies/RequireResolveHeaderDependency.js +81 -0
- package/lib/dependencies/RuntimeRequirementsDependency.js +85 -0
- package/lib/dependencies/StaticExportsDependency.js +72 -0
- package/lib/dependencies/SystemPlugin.js +168 -0
- package/lib/dependencies/SystemRuntimeModule.js +35 -0
- package/lib/dependencies/URLContextDependency.js +65 -0
- package/lib/dependencies/URLDependency.js +165 -0
- package/lib/dependencies/URLPlugin.js +67 -0
- package/lib/dependencies/UnsupportedDependency.js +82 -0
- package/lib/dependencies/WebAssemblyExportImportedDependency.js +93 -0
- package/lib/dependencies/WebAssemblyImportDependency.js +108 -0
- package/lib/dependencies/WebpackIsIncludedDependency.js +84 -0
- package/lib/dependencies/WorkerDependency.js +141 -0
- package/lib/dependencies/WorkerPlugin.js +565 -0
- package/lib/dependencies/getFunctionExpression.js +66 -0
- package/lib/dependencies/processExportInfo.js +67 -0
- package/lib/electron/ElectronTargetPlugin.js +71 -0
- package/lib/errors/BuildCycleError.js +30 -0
- package/lib/esm/ExportWebpackRequireRuntimeModule.js +30 -0
- package/lib/esm/ModuleChunkFormatPlugin.js +273 -0
- package/lib/esm/ModuleChunkLoadingPlugin.js +143 -0
- package/lib/esm/ModuleChunkLoadingRuntimeModule.js +426 -0
- package/lib/formatLocation.js +67 -0
- package/lib/hmr/HotModuleReplacement.runtime.js +419 -0
- package/lib/hmr/HotModuleReplacementRuntimeModule.js +42 -0
- package/lib/hmr/JavascriptHotModuleReplacement.runtime.js +471 -0
- package/lib/hmr/JavascriptHotModuleReplacementHelper.js +37 -0
- package/lib/hmr/LazyCompilationPlugin.js +473 -0
- package/lib/hmr/lazyCompilationBackend.js +167 -0
- package/lib/ids/ChunkModuleIdRangePlugin.js +94 -0
- package/lib/ids/DeterministicChunkIdsPlugin.js +73 -0
- package/lib/ids/DeterministicModuleIdsPlugin.js +98 -0
- package/lib/ids/HashedModuleIdsPlugin.js +85 -0
- package/lib/ids/IdHelpers.js +492 -0
- package/lib/ids/NamedChunkIdsPlugin.js +92 -0
- package/lib/ids/NamedModuleIdsPlugin.js +68 -0
- package/lib/ids/NaturalChunkIdsPlugin.js +35 -0
- package/lib/ids/NaturalModuleIdsPlugin.js +40 -0
- package/lib/ids/OccurrenceChunkIdsPlugin.js +86 -0
- package/lib/ids/OccurrenceModuleIdsPlugin.js +168 -0
- package/lib/ids/SyncModuleIdsPlugin.js +161 -0
- package/lib/index.js +681 -0
- package/lib/javascript/ArrayPushCallbackChunkFormatPlugin.js +153 -0
- package/lib/javascript/BasicEvaluatedExpression.js +603 -0
- package/lib/javascript/ChunkFormatHelpers.js +70 -0
- package/lib/javascript/ChunkHelpers.js +45 -0
- package/lib/javascript/CommonJsChunkFormatPlugin.js +148 -0
- package/lib/javascript/EnableChunkLoadingPlugin.js +127 -0
- package/lib/javascript/JavascriptGenerator.js +277 -0
- package/lib/javascript/JavascriptModulesPlugin.js +1905 -0
- package/lib/javascript/JavascriptParser.js +5476 -0
- package/lib/javascript/JavascriptParserHelpers.js +129 -0
- package/lib/javascript/StartupHelpers.js +178 -0
- package/lib/json/JsonData.js +74 -0
- package/lib/json/JsonGenerator.js +234 -0
- package/lib/json/JsonModulesPlugin.js +66 -0
- package/lib/json/JsonParser.js +93 -0
- package/lib/library/AbstractLibraryPlugin.js +339 -0
- package/lib/library/AmdLibraryPlugin.js +181 -0
- package/lib/library/AssignLibraryPlugin.js +445 -0
- package/lib/library/EnableLibraryPlugin.js +306 -0
- package/lib/library/ExportPropertyLibraryPlugin.js +116 -0
- package/lib/library/JsonpLibraryPlugin.js +92 -0
- package/lib/library/ModuleLibraryPlugin.js +438 -0
- package/lib/library/SystemLibraryPlugin.js +256 -0
- package/lib/library/UmdLibraryPlugin.js +355 -0
- package/lib/logging/Logger.js +223 -0
- package/lib/logging/createConsoleLogger.js +217 -0
- package/lib/logging/runtime.js +45 -0
- package/lib/logging/truncateArgs.js +83 -0
- package/lib/node/CommonJsChunkLoadingPlugin.js +120 -0
- package/lib/node/NodeEnvironmentPlugin.js +73 -0
- package/lib/node/NodeSourcePlugin.js +19 -0
- package/lib/node/NodeTargetPlugin.js +102 -0
- package/lib/node/NodeTemplatePlugin.js +42 -0
- package/lib/node/NodeWatchFileSystem.js +198 -0
- package/lib/node/ReadFileChunkLoadingRuntimeModule.js +286 -0
- package/lib/node/ReadFileCompileAsyncWasmPlugin.js +123 -0
- package/lib/node/ReadFileCompileWasmPlugin.js +127 -0
- package/lib/node/RequireChunkLoadingRuntimeModule.js +239 -0
- package/lib/node/nodeConsole.js +185 -0
- package/lib/optimize/AggressiveMergingPlugin.js +98 -0
- package/lib/optimize/AggressiveSplittingPlugin.js +352 -0
- package/lib/optimize/ConcatenatedModule.js +2290 -0
- package/lib/optimize/EnsureChunkConditionsPlugin.js +88 -0
- package/lib/optimize/FlagIncludedChunksPlugin.js +137 -0
- package/lib/optimize/InnerGraph.js +368 -0
- package/lib/optimize/InnerGraphPlugin.js +455 -0
- package/lib/optimize/LimitChunkCountPlugin.js +302 -0
- package/lib/optimize/MangleExportsPlugin.js +194 -0
- package/lib/optimize/MergeDuplicateChunksPlugin.js +138 -0
- package/lib/optimize/MinChunkSizePlugin.js +121 -0
- package/lib/optimize/MinMaxSizeWarning.js +35 -0
- package/lib/optimize/ModuleConcatenationPlugin.js +971 -0
- package/lib/optimize/RealContentHashPlugin.js +488 -0
- package/lib/optimize/RemoveEmptyChunksPlugin.js +60 -0
- package/lib/optimize/RemoveParentModulesPlugin.js +216 -0
- package/lib/optimize/RuntimeChunkPlugin.js +52 -0
- package/lib/optimize/SideEffectsFlagPlugin.js +417 -0
- package/lib/optimize/SplitChunksPlugin.js +1836 -0
- package/lib/performance/AssetsOverSizeLimitWarning.js +37 -0
- package/lib/performance/EntrypointsOverSizeLimitWarning.js +40 -0
- package/lib/performance/NoAsyncChunksWarning.js +21 -0
- package/lib/performance/SizeLimitsPlugin.js +183 -0
- package/lib/prefetch/ChunkPrefetchFunctionRuntimeModule.js +46 -0
- package/lib/prefetch/ChunkPrefetchPreloadPlugin.js +95 -0
- package/lib/prefetch/ChunkPrefetchStartupRuntimeModule.js +56 -0
- package/lib/prefetch/ChunkPrefetchTriggerRuntimeModule.js +52 -0
- package/lib/prefetch/ChunkPreloadTriggerRuntimeModule.js +46 -0
- package/lib/rules/BasicEffectRulePlugin.js +56 -0
- package/lib/rules/BasicMatcherRulePlugin.js +68 -0
- package/lib/rules/ObjectMatcherRulePlugin.js +79 -0
- package/lib/rules/RuleSetCompiler.js +447 -0
- package/lib/rules/UseEffectRulePlugin.js +236 -0
- package/lib/runtime/AsyncModuleRuntimeModule.js +199 -0
- package/lib/runtime/AutoPublicPathRuntimeModule.js +90 -0
- package/lib/runtime/BaseUriRuntimeModule.js +35 -0
- package/lib/runtime/ChunkNameRuntimeModule.js +28 -0
- package/lib/runtime/CompatGetDefaultExportRuntimeModule.js +40 -0
- package/lib/runtime/CompatRuntimeModule.js +83 -0
- package/lib/runtime/CreateFakeNamespaceObjectRuntimeModule.js +69 -0
- package/lib/runtime/CreateScriptRuntimeModule.js +38 -0
- package/lib/runtime/CreateScriptUrlRuntimeModule.js +38 -0
- package/lib/runtime/DefinePropertyGettersRuntimeModule.js +42 -0
- package/lib/runtime/EnsureChunkRuntimeModule.js +69 -0
- package/lib/runtime/GetChunkFilenameRuntimeModule.js +299 -0
- package/lib/runtime/GetFullHashRuntimeModule.js +31 -0
- package/lib/runtime/GetMainFilenameRuntimeModule.js +49 -0
- package/lib/runtime/GetTrustedTypesPolicyRuntimeModule.js +99 -0
- package/lib/runtime/GlobalRuntimeModule.js +47 -0
- package/lib/runtime/HasOwnPropertyRuntimeModule.js +35 -0
- package/lib/runtime/HelperRuntimeModule.js +18 -0
- package/lib/runtime/LoadScriptRuntimeModule.js +174 -0
- package/lib/runtime/MakeDeferredNamespaceObjectRuntime.js +232 -0
- package/lib/runtime/MakeNamespaceObjectRuntimeModule.js +39 -0
- package/lib/runtime/NonceRuntimeModule.js +24 -0
- package/lib/runtime/OnChunksLoadedRuntimeModule.js +78 -0
- package/lib/runtime/PublicPathRuntimeModule.js +38 -0
- package/lib/runtime/RelativeUrlRuntimeModule.js +44 -0
- package/lib/runtime/RuntimeIdRuntimeModule.js +33 -0
- package/lib/runtime/StartupChunkDependenciesPlugin.js +88 -0
- package/lib/runtime/StartupChunkDependenciesRuntimeModule.js +77 -0
- package/lib/runtime/StartupEntrypointRuntimeModule.js +54 -0
- package/lib/runtime/SystemContextRuntimeModule.js +23 -0
- package/lib/runtime/ToBinaryRuntimeModule.js +72 -0
- package/lib/schemes/DataUriPlugin.js +47 -0
- package/lib/schemes/FileUriPlugin.js +54 -0
- package/lib/schemes/HttpUriPlugin.js +1410 -0
- package/lib/schemes/VirtualUrlPlugin.js +248 -0
- package/lib/serialization/AggregateErrorSerializer.js +41 -0
- package/lib/serialization/ArraySerializer.js +38 -0
- package/lib/serialization/BinaryMiddleware.js +1164 -0
- package/lib/serialization/DateObjectSerializer.js +28 -0
- package/lib/serialization/ErrorObjectSerializer.js +49 -0
- package/lib/serialization/FileMiddleware.js +766 -0
- package/lib/serialization/MapObjectSerializer.js +48 -0
- package/lib/serialization/NullPrototypeObjectSerializer.js +53 -0
- package/lib/serialization/ObjectMiddleware.js +877 -0
- package/lib/serialization/PlainObjectSerializer.js +119 -0
- package/lib/serialization/RegExpObjectSerializer.js +29 -0
- package/lib/serialization/Serializer.js +82 -0
- package/lib/serialization/SerializerMiddleware.js +226 -0
- package/lib/serialization/SetObjectSerializer.js +40 -0
- package/lib/serialization/SingleItemMiddleware.js +36 -0
- package/lib/serialization/types.js +13 -0
- package/lib/sharing/ConsumeSharedFallbackDependency.js +33 -0
- package/lib/sharing/ConsumeSharedModule.js +344 -0
- package/lib/sharing/ConsumeSharedPlugin.js +380 -0
- package/lib/sharing/ConsumeSharedRuntimeModule.js +358 -0
- package/lib/sharing/ProvideForSharedDependency.js +33 -0
- package/lib/sharing/ProvideSharedDependency.js +80 -0
- package/lib/sharing/ProvideSharedModule.js +196 -0
- package/lib/sharing/ProvideSharedModuleFactory.js +37 -0
- package/lib/sharing/ProvideSharedPlugin.js +248 -0
- package/lib/sharing/SharePlugin.js +91 -0
- package/lib/sharing/ShareRuntimeModule.js +152 -0
- package/lib/sharing/resolveMatchedConfigs.js +106 -0
- package/lib/sharing/utils.js +421 -0
- package/lib/stats/DefaultStatsFactoryPlugin.js +2791 -0
- package/lib/stats/DefaultStatsPresetPlugin.js +417 -0
- package/lib/stats/DefaultStatsPrinterPlugin.js +1860 -0
- package/lib/stats/StatsFactory.js +406 -0
- package/lib/stats/StatsPrinter.js +300 -0
- package/lib/url/URLParserPlugin.js +266 -0
- package/lib/util/AppendOnlyStackedSet.js +78 -0
- package/lib/util/ArrayHelpers.js +46 -0
- package/lib/util/ArrayQueue.js +104 -0
- package/lib/util/AsyncQueue.js +411 -0
- package/lib/util/Hash.js +68 -0
- package/lib/util/IterableHelpers.js +46 -0
- package/lib/util/LazyBucketSortedSet.js +272 -0
- package/lib/util/LazySet.js +236 -0
- package/lib/util/MapHelpers.js +34 -0
- package/lib/util/ParallelismFactorCalculator.js +70 -0
- package/lib/util/Queue.js +52 -0
- package/lib/util/Semaphore.js +51 -0
- package/lib/util/SetHelpers.js +94 -0
- package/lib/util/SortableSet.js +176 -0
- package/lib/util/StackedCacheMap.js +140 -0
- package/lib/util/StackedMap.js +164 -0
- package/lib/util/StringXor.js +103 -0
- package/lib/util/TupleQueue.js +70 -0
- package/lib/util/TupleSet.js +185 -0
- package/lib/util/URLAbsoluteSpecifier.js +86 -0
- package/lib/util/WeakTupleMap.js +227 -0
- package/lib/util/binarySearchBounds.js +136 -0
- package/lib/util/chainedImports.js +99 -0
- package/lib/util/cleverMerge.js +676 -0
- package/lib/util/comparators.js +645 -0
- package/lib/util/compileBooleanMatcher.js +313 -0
- package/lib/util/concatenate.js +232 -0
- package/lib/util/conventions.js +126 -0
- package/lib/util/create-schema-validation.js +41 -0
- package/lib/util/createHash.js +91 -0
- package/lib/util/dataURL.js +39 -0
- package/lib/util/deprecation.js +350 -0
- package/lib/util/deterministicGrouping.js +561 -0
- package/lib/util/extractSourceMap.js +318 -0
- package/lib/util/extractUrlAndGlobal.js +18 -0
- package/lib/util/findGraphRoots.js +211 -0
- package/lib/util/fs.js +675 -0
- package/lib/util/generateDebugId.js +33 -0
- package/lib/util/hash/BatchedHash.js +115 -0
- package/lib/util/hash/BulkUpdateHash.js +145 -0
- package/lib/util/hash/DebugHash.js +75 -0
- package/lib/util/hash/hash-digest.js +217 -0
- package/lib/util/hash/md4.js +20 -0
- package/lib/util/hash/wasm-hash.js +232 -0
- package/lib/util/hash/xxhash64.js +20 -0
- package/lib/util/identifier.js +471 -0
- package/lib/util/internalSerializables.js +222 -0
- package/lib/util/magicComment.js +25 -0
- package/lib/util/makeSerializable.js +60 -0
- package/lib/util/memoize.js +36 -0
- package/lib/util/nonNumericOnlyHash.js +22 -0
- package/lib/util/numberHash.js +95 -0
- package/lib/util/objectToMap.js +15 -0
- package/lib/util/processAsyncTree.js +68 -0
- package/lib/util/propertyAccess.js +30 -0
- package/lib/util/propertyName.js +76 -0
- package/lib/util/registerExternalSerializer.js +334 -0
- package/lib/util/removeBOM.js +25 -0
- package/lib/util/runtime.js +717 -0
- package/lib/util/semver.js +604 -0
- package/lib/util/serialization.js +153 -0
- package/lib/util/smartGrouping.js +221 -0
- package/lib/util/source.js +62 -0
- package/lib/util/traverseDestructuringAssignmentProperties.js +45 -0
- package/lib/validateSchema.js +177 -0
- package/lib/wasm/EnableWasmLoadingPlugin.js +146 -0
- package/lib/wasm-async/AsyncWasmLoadingRuntimeModule.js +154 -0
- package/lib/wasm-async/AsyncWebAssemblyGenerator.js +74 -0
- package/lib/wasm-async/AsyncWebAssemblyJavascriptGenerator.js +212 -0
- package/lib/wasm-async/AsyncWebAssemblyModulesPlugin.js +209 -0
- package/lib/wasm-async/AsyncWebAssemblyParser.js +80 -0
- package/lib/wasm-async/UniversalCompileAsyncWasmPlugin.js +107 -0
- package/lib/wasm-sync/UnsupportedWebAssemblyFeatureError.js +20 -0
- package/lib/wasm-sync/WasmChunkLoadingRuntimeModule.js +422 -0
- package/lib/wasm-sync/WasmFinalizeExportsPlugin.js +91 -0
- package/lib/wasm-sync/WebAssemblyGenerator.js +535 -0
- package/lib/wasm-sync/WebAssemblyInInitialChunkError.js +111 -0
- package/lib/wasm-sync/WebAssemblyJavascriptGenerator.js +236 -0
- package/lib/wasm-sync/WebAssemblyModulesPlugin.js +151 -0
- package/lib/wasm-sync/WebAssemblyParser.js +201 -0
- package/lib/wasm-sync/WebAssemblyUtils.js +66 -0
- package/lib/web/FetchCompileAsyncWasmPlugin.js +70 -0
- package/lib/web/FetchCompileWasmPlugin.js +86 -0
- package/lib/web/JsonpChunkLoadingPlugin.js +101 -0
- package/lib/web/JsonpChunkLoadingRuntimeModule.js +455 -0
- package/lib/web/JsonpTemplatePlugin.js +37 -0
- package/lib/webpack.js +227 -0
- package/lib/webworker/ImportScriptsChunkLoadingPlugin.js +110 -0
- package/lib/webworker/ImportScriptsChunkLoadingRuntimeModule.js +231 -0
- package/lib/webworker/WebWorkerTemplatePlugin.js +26 -0
- package/module.d.ts +238 -0
- package/package.json +258 -0
- package/schemas/WebpackOptions.check.d.ts +7 -0
- package/schemas/WebpackOptions.check.js +6 -0
- package/schemas/WebpackOptions.json +6179 -0
- package/schemas/_container.json +155 -0
- package/schemas/_sharing.json +118 -0
- package/schemas/plugins/BannerPlugin.check.d.ts +7 -0
- package/schemas/plugins/BannerPlugin.check.js +6 -0
- package/schemas/plugins/BannerPlugin.json +115 -0
- package/schemas/plugins/DllPlugin.check.d.ts +7 -0
- package/schemas/plugins/DllPlugin.check.js +6 -0
- package/schemas/plugins/DllPlugin.json +36 -0
- package/schemas/plugins/DllReferencePlugin.check.d.ts +7 -0
- package/schemas/plugins/DllReferencePlugin.check.js +6 -0
- package/schemas/plugins/DllReferencePlugin.json +206 -0
- package/schemas/plugins/IgnorePlugin.check.d.ts +7 -0
- package/schemas/plugins/IgnorePlugin.check.js +6 -0
- package/schemas/plugins/IgnorePlugin.json +34 -0
- package/schemas/plugins/LoaderOptionsPlugin.check.d.ts +7 -0
- package/schemas/plugins/LoaderOptionsPlugin.check.js +6 -0
- package/schemas/plugins/LoaderOptionsPlugin.json +27 -0
- package/schemas/plugins/ManifestPlugin.check.d.ts +7 -0
- package/schemas/plugins/ManifestPlugin.check.js +6 -0
- package/schemas/plugins/ManifestPlugin.json +98 -0
- package/schemas/plugins/ProgressPlugin.check.d.ts +7 -0
- package/schemas/plugins/ProgressPlugin.check.js +6 -0
- package/schemas/plugins/ProgressPlugin.json +65 -0
- package/schemas/plugins/SourceMapDevToolPlugin.check.d.ts +7 -0
- package/schemas/plugins/SourceMapDevToolPlugin.check.js +6 -0
- package/schemas/plugins/SourceMapDevToolPlugin.json +168 -0
- package/schemas/plugins/WatchIgnorePlugin.check.d.ts +7 -0
- package/schemas/plugins/WatchIgnorePlugin.check.js +6 -0
- package/schemas/plugins/WatchIgnorePlugin.json +25 -0
- package/schemas/plugins/asset/AssetGeneratorOptions.check.d.ts +7 -0
- package/schemas/plugins/asset/AssetGeneratorOptions.check.js +6 -0
- package/schemas/plugins/asset/AssetGeneratorOptions.json +3 -0
- package/schemas/plugins/asset/AssetInlineGeneratorOptions.check.d.ts +7 -0
- package/schemas/plugins/asset/AssetInlineGeneratorOptions.check.js +6 -0
- package/schemas/plugins/asset/AssetInlineGeneratorOptions.json +3 -0
- package/schemas/plugins/asset/AssetParserOptions.check.d.ts +7 -0
- package/schemas/plugins/asset/AssetParserOptions.check.js +6 -0
- package/schemas/plugins/asset/AssetParserOptions.json +3 -0
- package/schemas/plugins/asset/AssetResourceGeneratorOptions.check.d.ts +7 -0
- package/schemas/plugins/asset/AssetResourceGeneratorOptions.check.js +6 -0
- package/schemas/plugins/asset/AssetResourceGeneratorOptions.json +3 -0
- package/schemas/plugins/container/ContainerPlugin.check.d.ts +7 -0
- package/schemas/plugins/container/ContainerPlugin.check.js +6 -0
- package/schemas/plugins/container/ContainerPlugin.json +294 -0
- package/schemas/plugins/container/ContainerReferencePlugin.check.d.ts +7 -0
- package/schemas/plugins/container/ContainerReferencePlugin.check.js +6 -0
- package/schemas/plugins/container/ContainerReferencePlugin.json +132 -0
- package/schemas/plugins/container/ExternalsType.check.d.ts +7 -0
- package/schemas/plugins/container/ExternalsType.check.js +6 -0
- package/schemas/plugins/container/ExternalsType.json +3 -0
- package/schemas/plugins/container/ModuleFederationPlugin.check.d.ts +7 -0
- package/schemas/plugins/container/ModuleFederationPlugin.check.js +6 -0
- package/schemas/plugins/container/ModuleFederationPlugin.json +525 -0
- package/schemas/plugins/css/CssGeneratorOptions.check.d.ts +7 -0
- package/schemas/plugins/css/CssGeneratorOptions.check.js +6 -0
- package/schemas/plugins/css/CssGeneratorOptions.json +3 -0
- package/schemas/plugins/css/CssModuleGeneratorOptions.check.d.ts +7 -0
- package/schemas/plugins/css/CssModuleGeneratorOptions.check.js +6 -0
- package/schemas/plugins/css/CssModuleGeneratorOptions.json +3 -0
- package/schemas/plugins/css/CssModuleParserOptions.check.d.ts +7 -0
- package/schemas/plugins/css/CssModuleParserOptions.check.js +6 -0
- package/schemas/plugins/css/CssModuleParserOptions.json +3 -0
- package/schemas/plugins/css/CssParserOptions.check.d.ts +7 -0
- package/schemas/plugins/css/CssParserOptions.check.js +6 -0
- package/schemas/plugins/css/CssParserOptions.json +3 -0
- package/schemas/plugins/debug/ProfilingPlugin.check.d.ts +7 -0
- package/schemas/plugins/debug/ProfilingPlugin.check.js +6 -0
- package/schemas/plugins/debug/ProfilingPlugin.json +12 -0
- package/schemas/plugins/ids/HashedModuleIdsPlugin.check.d.ts +7 -0
- package/schemas/plugins/ids/HashedModuleIdsPlugin.check.js +6 -0
- package/schemas/plugins/ids/HashedModuleIdsPlugin.json +57 -0
- package/schemas/plugins/ids/OccurrenceChunkIdsPlugin.check.d.ts +7 -0
- package/schemas/plugins/ids/OccurrenceChunkIdsPlugin.check.js +6 -0
- package/schemas/plugins/ids/OccurrenceChunkIdsPlugin.json +11 -0
- package/schemas/plugins/ids/OccurrenceModuleIdsPlugin.check.d.ts +7 -0
- package/schemas/plugins/ids/OccurrenceModuleIdsPlugin.check.js +6 -0
- package/schemas/plugins/ids/OccurrenceModuleIdsPlugin.json +11 -0
- package/schemas/plugins/json/JsonModulesPluginGenerator.check.d.ts +7 -0
- package/schemas/plugins/json/JsonModulesPluginGenerator.check.js +6 -0
- package/schemas/plugins/json/JsonModulesPluginGenerator.json +3 -0
- package/schemas/plugins/json/JsonModulesPluginParser.check.d.ts +7 -0
- package/schemas/plugins/json/JsonModulesPluginParser.check.js +6 -0
- package/schemas/plugins/json/JsonModulesPluginParser.json +3 -0
- package/schemas/plugins/optimize/AggressiveSplittingPlugin.check.d.ts +7 -0
- package/schemas/plugins/optimize/AggressiveSplittingPlugin.check.js +6 -0
- package/schemas/plugins/optimize/AggressiveSplittingPlugin.json +23 -0
- package/schemas/plugins/optimize/LimitChunkCountPlugin.check.d.ts +7 -0
- package/schemas/plugins/optimize/LimitChunkCountPlugin.check.js +6 -0
- package/schemas/plugins/optimize/LimitChunkCountPlugin.json +21 -0
- package/schemas/plugins/optimize/MergeDuplicateChunksPlugin.check.d.ts +7 -0
- package/schemas/plugins/optimize/MergeDuplicateChunksPlugin.check.js +6 -0
- package/schemas/plugins/optimize/MergeDuplicateChunksPlugin.json +11 -0
- package/schemas/plugins/optimize/MinChunkSizePlugin.check.d.ts +7 -0
- package/schemas/plugins/optimize/MinChunkSizePlugin.check.js +6 -0
- package/schemas/plugins/optimize/MinChunkSizePlugin.json +20 -0
- package/schemas/plugins/schemes/HttpUriPlugin.check.d.ts +7 -0
- package/schemas/plugins/schemes/HttpUriPlugin.check.js +6 -0
- package/schemas/plugins/schemes/HttpUriPlugin.json +74 -0
- package/schemas/plugins/schemes/VirtualUrlPlugin.check.d.ts +7 -0
- package/schemas/plugins/schemes/VirtualUrlPlugin.check.js +6 -0
- package/schemas/plugins/schemes/VirtualUrlPlugin.json +77 -0
- package/schemas/plugins/sharing/ConsumeSharedPlugin.check.d.ts +7 -0
- package/schemas/plugins/sharing/ConsumeSharedPlugin.check.js +6 -0
- package/schemas/plugins/sharing/ConsumeSharedPlugin.json +120 -0
- package/schemas/plugins/sharing/ProvideSharedPlugin.check.d.ts +7 -0
- package/schemas/plugins/sharing/ProvideSharedPlugin.check.js +6 -0
- package/schemas/plugins/sharing/ProvideSharedPlugin.json +94 -0
- package/schemas/plugins/sharing/SharePlugin.check.d.ts +7 -0
- package/schemas/plugins/sharing/SharePlugin.check.js +6 -0
- package/schemas/plugins/sharing/SharePlugin.json +133 -0
- package/types.d.ts +20217 -0
|
@@ -0,0 +1,816 @@
|
|
|
1
|
+
/*
|
|
2
|
+
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
3
|
+
Author Sergey Melyukov @smelukov
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
"use strict";
|
|
7
|
+
|
|
8
|
+
const path = require("path");
|
|
9
|
+
const { RawSource } = require("webpack-sources");
|
|
10
|
+
const ConcatenationScope = require("../ConcatenationScope");
|
|
11
|
+
const Generator = require("../Generator");
|
|
12
|
+
const {
|
|
13
|
+
ASSET_AND_CSS_URL_TYPES,
|
|
14
|
+
ASSET_AND_JAVASCRIPT_AND_CSS_URL_TYPES,
|
|
15
|
+
ASSET_AND_JAVASCRIPT_TYPES,
|
|
16
|
+
ASSET_TYPES,
|
|
17
|
+
CSS_TYPE,
|
|
18
|
+
CSS_URL_TYPE,
|
|
19
|
+
CSS_URL_TYPES,
|
|
20
|
+
JAVASCRIPT_AND_CSS_URL_TYPES,
|
|
21
|
+
JAVASCRIPT_TYPE,
|
|
22
|
+
JAVASCRIPT_TYPES,
|
|
23
|
+
NO_TYPES
|
|
24
|
+
} = require("../ModuleSourceTypeConstants");
|
|
25
|
+
const { ASSET_MODULE_TYPE } = require("../ModuleTypeConstants");
|
|
26
|
+
const RuntimeGlobals = require("../RuntimeGlobals");
|
|
27
|
+
const CssUrlDependency = require("../dependencies/CssUrlDependency");
|
|
28
|
+
const createHash = require("../util/createHash");
|
|
29
|
+
const { makePathsRelative } = require("../util/identifier");
|
|
30
|
+
const memoize = require("../util/memoize");
|
|
31
|
+
const nonNumericOnlyHash = require("../util/nonNumericOnlyHash");
|
|
32
|
+
|
|
33
|
+
const getMimeTypes = memoize(() => require("mime-types"));
|
|
34
|
+
|
|
35
|
+
/** @typedef {import("webpack-sources").Source} Source */
|
|
36
|
+
/** @typedef {import("../../declarations/WebpackOptions").AssetGeneratorDataUrlOptions} AssetGeneratorDataUrlOptions */
|
|
37
|
+
/** @typedef {import("../../declarations/WebpackOptions").AssetGeneratorOptions} AssetGeneratorOptions */
|
|
38
|
+
/** @typedef {import("../../declarations/WebpackOptions").AssetModuleFilename} AssetModuleFilename */
|
|
39
|
+
/** @typedef {import("../../declarations/WebpackOptions").AssetModuleOutputPath} AssetModuleOutputPath */
|
|
40
|
+
/** @typedef {import("../../declarations/WebpackOptions").AssetResourceGeneratorOptions} AssetResourceGeneratorOptions */
|
|
41
|
+
/** @typedef {import("../../declarations/WebpackOptions").RawPublicPath} RawPublicPath */
|
|
42
|
+
/** @typedef {import("../ChunkGraph")} ChunkGraph */
|
|
43
|
+
/** @typedef {import("../Compilation").AssetInfo} AssetInfo */
|
|
44
|
+
/** @typedef {import("../Generator").GenerateContext} GenerateContext */
|
|
45
|
+
/** @typedef {import("../Generator").UpdateHashContext} UpdateHashContext */
|
|
46
|
+
/** @typedef {import("../Module")} Module */
|
|
47
|
+
/** @typedef {import("../Module").NameForCondition} NameForCondition */
|
|
48
|
+
/** @typedef {import("../Module").BuildInfo} BuildInfo */
|
|
49
|
+
/** @typedef {import("../Module").ConcatenationBailoutReasonContext} ConcatenationBailoutReasonContext */
|
|
50
|
+
/** @typedef {import("../Module").SourceType} SourceType */
|
|
51
|
+
/** @typedef {import("../Module").SourceTypes} SourceTypes */
|
|
52
|
+
/** @typedef {import("../ModuleGraph")} ModuleGraph */
|
|
53
|
+
/** @typedef {import("../NormalModule")} NormalModule */
|
|
54
|
+
/** @typedef {import("../RuntimeTemplate")} RuntimeTemplate */
|
|
55
|
+
/** @typedef {import("../util/Hash")} Hash */
|
|
56
|
+
/** @typedef {import("../util/runtime").RuntimeSpec} RuntimeSpec */
|
|
57
|
+
|
|
58
|
+
/** @typedef {(source: string | Buffer, context: { filename: string, module: Module }) => string} DataUrlFunction */
|
|
59
|
+
|
|
60
|
+
/**
|
|
61
|
+
* @template T
|
|
62
|
+
* @template U
|
|
63
|
+
* @param {null | string | T[] | Set<T> | undefined} a a
|
|
64
|
+
* @param {null | string | U[] | Set<U> | undefined} b b
|
|
65
|
+
* @returns {T[] & U[]} array
|
|
66
|
+
*/
|
|
67
|
+
const mergeMaybeArrays = (a, b) => {
|
|
68
|
+
/** @type {Set<T | U | null | undefined | string | Set<T> | Set<U>>} */
|
|
69
|
+
const set = new Set();
|
|
70
|
+
if (Array.isArray(a)) for (const item of a) set.add(item);
|
|
71
|
+
else set.add(a);
|
|
72
|
+
if (Array.isArray(b)) for (const item of b) set.add(item);
|
|
73
|
+
else set.add(b);
|
|
74
|
+
return /** @type {T[] & U[]} */ ([.../** @type {Set<T | U>} */ (set)]);
|
|
75
|
+
};
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* @param {AssetInfo} a a
|
|
79
|
+
* @param {AssetInfo} b b
|
|
80
|
+
* @returns {AssetInfo} object
|
|
81
|
+
*/
|
|
82
|
+
const mergeAssetInfo = (a, b) => {
|
|
83
|
+
/** @type {AssetInfo} */
|
|
84
|
+
const result = { ...a, ...b };
|
|
85
|
+
for (const key of Object.keys(a)) {
|
|
86
|
+
if (key in b) {
|
|
87
|
+
if (a[key] === b[key]) continue;
|
|
88
|
+
switch (key) {
|
|
89
|
+
case "fullhash":
|
|
90
|
+
case "chunkhash":
|
|
91
|
+
case "modulehash":
|
|
92
|
+
case "contenthash":
|
|
93
|
+
result[key] = mergeMaybeArrays(a[key], b[key]);
|
|
94
|
+
break;
|
|
95
|
+
case "immutable":
|
|
96
|
+
case "development":
|
|
97
|
+
case "hotModuleReplacement":
|
|
98
|
+
case "javascriptModule":
|
|
99
|
+
result[key] = a[key] || b[key];
|
|
100
|
+
break;
|
|
101
|
+
case "related":
|
|
102
|
+
result[key] = mergeRelatedInfo(
|
|
103
|
+
/** @type {NonNullable<AssetInfo["related"]>} */
|
|
104
|
+
(a[key]),
|
|
105
|
+
/** @type {NonNullable<AssetInfo["related"]>} */
|
|
106
|
+
(b[key])
|
|
107
|
+
);
|
|
108
|
+
break;
|
|
109
|
+
default:
|
|
110
|
+
throw new Error(`Can't handle conflicting asset info for ${key}`);
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
return result;
|
|
115
|
+
};
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* @param {NonNullable<AssetInfo["related"]>} a a
|
|
119
|
+
* @param {NonNullable<AssetInfo["related"]>} b b
|
|
120
|
+
* @returns {NonNullable<AssetInfo["related"]>} object
|
|
121
|
+
*/
|
|
122
|
+
const mergeRelatedInfo = (a, b) => {
|
|
123
|
+
const result = { ...a, ...b };
|
|
124
|
+
for (const key of Object.keys(a)) {
|
|
125
|
+
if (key in b) {
|
|
126
|
+
if (a[key] === b[key]) continue;
|
|
127
|
+
result[key] = mergeMaybeArrays(a[key], b[key]);
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
return result;
|
|
131
|
+
};
|
|
132
|
+
|
|
133
|
+
/**
|
|
134
|
+
* @param {"base64" | false} encoding encoding
|
|
135
|
+
* @param {Source} source source
|
|
136
|
+
* @returns {string} encoded data
|
|
137
|
+
*/
|
|
138
|
+
const encodeDataUri = (encoding, source) => {
|
|
139
|
+
/** @type {string | undefined} */
|
|
140
|
+
let encodedContent;
|
|
141
|
+
|
|
142
|
+
switch (encoding) {
|
|
143
|
+
case "base64": {
|
|
144
|
+
encodedContent = source.buffer().toString("base64");
|
|
145
|
+
break;
|
|
146
|
+
}
|
|
147
|
+
case false: {
|
|
148
|
+
const content = source.source();
|
|
149
|
+
|
|
150
|
+
if (typeof content !== "string") {
|
|
151
|
+
encodedContent = content.toString("utf8");
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
encodedContent = encodeURIComponent(
|
|
155
|
+
/** @type {string} */
|
|
156
|
+
(encodedContent)
|
|
157
|
+
).replace(
|
|
158
|
+
/[!'()*]/g,
|
|
159
|
+
(character) =>
|
|
160
|
+
`%${/** @type {number} */ (character.codePointAt(0)).toString(16)}`
|
|
161
|
+
);
|
|
162
|
+
break;
|
|
163
|
+
}
|
|
164
|
+
default:
|
|
165
|
+
throw new Error(`Unsupported encoding '${encoding}'`);
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
return encodedContent;
|
|
169
|
+
};
|
|
170
|
+
|
|
171
|
+
/**
|
|
172
|
+
* @param {"base64" | false} encoding encoding
|
|
173
|
+
* @param {string} content content
|
|
174
|
+
* @returns {Buffer} decoded content
|
|
175
|
+
*/
|
|
176
|
+
const decodeDataUriContent = (encoding, content) => {
|
|
177
|
+
const isBase64 = encoding === "base64";
|
|
178
|
+
|
|
179
|
+
if (isBase64) {
|
|
180
|
+
return Buffer.from(content, "base64");
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
// If we can't decode return the original body
|
|
184
|
+
try {
|
|
185
|
+
return Buffer.from(decodeURIComponent(content), "ascii");
|
|
186
|
+
} catch (_) {
|
|
187
|
+
return Buffer.from(content, "ascii");
|
|
188
|
+
}
|
|
189
|
+
};
|
|
190
|
+
|
|
191
|
+
const DEFAULT_ENCODING = "base64";
|
|
192
|
+
|
|
193
|
+
class AssetGenerator extends Generator {
|
|
194
|
+
/**
|
|
195
|
+
* @param {ModuleGraph} moduleGraph the module graph
|
|
196
|
+
* @param {AssetGeneratorOptions["dataUrl"]=} dataUrlOptions the options for the data url
|
|
197
|
+
* @param {AssetModuleFilename=} filename override for output.assetModuleFilename
|
|
198
|
+
* @param {RawPublicPath=} publicPath override for output.assetModulePublicPath
|
|
199
|
+
* @param {AssetModuleOutputPath=} outputPath the output path for the emitted file which is not included in the runtime import
|
|
200
|
+
* @param {boolean=} emit generate output asset
|
|
201
|
+
*/
|
|
202
|
+
constructor(
|
|
203
|
+
moduleGraph,
|
|
204
|
+
dataUrlOptions,
|
|
205
|
+
filename,
|
|
206
|
+
publicPath,
|
|
207
|
+
outputPath,
|
|
208
|
+
emit
|
|
209
|
+
) {
|
|
210
|
+
super();
|
|
211
|
+
/** @type {AssetGeneratorOptions["dataUrl"] | undefined} */
|
|
212
|
+
this.dataUrlOptions = dataUrlOptions;
|
|
213
|
+
/** @type {AssetModuleFilename | undefined} */
|
|
214
|
+
this.filename = filename;
|
|
215
|
+
/** @type {RawPublicPath | undefined} */
|
|
216
|
+
this.publicPath = publicPath;
|
|
217
|
+
/** @type {AssetModuleOutputPath | undefined} */
|
|
218
|
+
this.outputPath = outputPath;
|
|
219
|
+
/** @type {boolean | undefined} */
|
|
220
|
+
this.emit = emit;
|
|
221
|
+
/** @type {ModuleGraph} */
|
|
222
|
+
this._moduleGraph = moduleGraph;
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
/**
|
|
226
|
+
* @param {NormalModule} module module
|
|
227
|
+
* @param {RuntimeTemplate} runtimeTemplate runtime template
|
|
228
|
+
* @returns {string} source file name
|
|
229
|
+
*/
|
|
230
|
+
static getSourceFileName(module, runtimeTemplate) {
|
|
231
|
+
return makePathsRelative(
|
|
232
|
+
runtimeTemplate.compilation.compiler.context,
|
|
233
|
+
/** @type {string} */
|
|
234
|
+
(module.getResource()),
|
|
235
|
+
runtimeTemplate.compilation.compiler.root
|
|
236
|
+
).replace(/^\.\//, "");
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
/**
|
|
240
|
+
* @param {NormalModule} module module
|
|
241
|
+
* @param {RuntimeTemplate} runtimeTemplate runtime template
|
|
242
|
+
* @returns {[string, string]} return full hash and non-numeric full hash
|
|
243
|
+
*/
|
|
244
|
+
static getFullContentHash(module, runtimeTemplate) {
|
|
245
|
+
const hash = createHash(runtimeTemplate.outputOptions.hashFunction);
|
|
246
|
+
|
|
247
|
+
if (runtimeTemplate.outputOptions.hashSalt) {
|
|
248
|
+
hash.update(runtimeTemplate.outputOptions.hashSalt);
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
const source = module.originalSource();
|
|
252
|
+
|
|
253
|
+
if (source) {
|
|
254
|
+
hash.update(source.buffer());
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
if (module.error) {
|
|
258
|
+
hash.update(module.error.toString());
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
const fullContentHash = hash.digest(
|
|
262
|
+
runtimeTemplate.outputOptions.hashDigest
|
|
263
|
+
);
|
|
264
|
+
|
|
265
|
+
const contentHash = nonNumericOnlyHash(
|
|
266
|
+
fullContentHash,
|
|
267
|
+
runtimeTemplate.outputOptions.hashDigestLength
|
|
268
|
+
);
|
|
269
|
+
|
|
270
|
+
return [fullContentHash, contentHash];
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
/**
|
|
274
|
+
* @param {NormalModule} module module for which the code should be generated
|
|
275
|
+
* @param {Pick<AssetResourceGeneratorOptions, "filename" | "outputPath">} generatorOptions generator options
|
|
276
|
+
* @param {{ runtime: RuntimeSpec, runtimeTemplate: RuntimeTemplate, chunkGraph: ChunkGraph }} generateContext context for generate
|
|
277
|
+
* @param {string} contentHash the content hash
|
|
278
|
+
* @returns {{ filename: string, originalFilename: string, assetInfo: AssetInfo }} info
|
|
279
|
+
*/
|
|
280
|
+
static getFilenameWithInfo(
|
|
281
|
+
module,
|
|
282
|
+
generatorOptions,
|
|
283
|
+
{ runtime, runtimeTemplate, chunkGraph },
|
|
284
|
+
contentHash
|
|
285
|
+
) {
|
|
286
|
+
const assetModuleFilename =
|
|
287
|
+
generatorOptions.filename ||
|
|
288
|
+
runtimeTemplate.outputOptions.assetModuleFilename;
|
|
289
|
+
|
|
290
|
+
const sourceFilename = AssetGenerator.getSourceFileName(
|
|
291
|
+
module,
|
|
292
|
+
runtimeTemplate
|
|
293
|
+
);
|
|
294
|
+
let { path: filename, info: assetInfo } =
|
|
295
|
+
runtimeTemplate.compilation.getAssetPathWithInfo(assetModuleFilename, {
|
|
296
|
+
module,
|
|
297
|
+
runtime,
|
|
298
|
+
filename: sourceFilename,
|
|
299
|
+
chunkGraph,
|
|
300
|
+
contentHash
|
|
301
|
+
});
|
|
302
|
+
|
|
303
|
+
const originalFilename = filename;
|
|
304
|
+
|
|
305
|
+
if (generatorOptions.outputPath) {
|
|
306
|
+
const { path: outputPath, info } =
|
|
307
|
+
runtimeTemplate.compilation.getAssetPathWithInfo(
|
|
308
|
+
generatorOptions.outputPath,
|
|
309
|
+
{
|
|
310
|
+
module,
|
|
311
|
+
runtime,
|
|
312
|
+
filename: sourceFilename,
|
|
313
|
+
chunkGraph,
|
|
314
|
+
contentHash
|
|
315
|
+
}
|
|
316
|
+
);
|
|
317
|
+
filename = path.posix.join(outputPath, filename);
|
|
318
|
+
assetInfo = mergeAssetInfo(assetInfo, info);
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
return { originalFilename, filename, assetInfo };
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
/**
|
|
325
|
+
* @param {NormalModule} module module for which the code should be generated
|
|
326
|
+
* @param {Pick<AssetResourceGeneratorOptions, "publicPath">} generatorOptions generator options
|
|
327
|
+
* @param {GenerateContext} generateContext context for generate
|
|
328
|
+
* @param {string} filename the filename
|
|
329
|
+
* @param {AssetInfo} assetInfo the asset info
|
|
330
|
+
* @param {string} contentHash the content hash
|
|
331
|
+
* @returns {{ assetPath: string, assetInfo: AssetInfo }} asset path and info
|
|
332
|
+
*/
|
|
333
|
+
static getAssetPathWithInfo(
|
|
334
|
+
module,
|
|
335
|
+
generatorOptions,
|
|
336
|
+
{ runtime, runtimeTemplate, type, chunkGraph, runtimeRequirements },
|
|
337
|
+
filename,
|
|
338
|
+
assetInfo,
|
|
339
|
+
contentHash
|
|
340
|
+
) {
|
|
341
|
+
const sourceFilename = AssetGenerator.getSourceFileName(
|
|
342
|
+
module,
|
|
343
|
+
runtimeTemplate
|
|
344
|
+
);
|
|
345
|
+
|
|
346
|
+
/** @type {undefined | string} */
|
|
347
|
+
let assetPath;
|
|
348
|
+
|
|
349
|
+
if (generatorOptions.publicPath !== undefined && type === JAVASCRIPT_TYPE) {
|
|
350
|
+
const { path, info } = runtimeTemplate.compilation.getAssetPathWithInfo(
|
|
351
|
+
generatorOptions.publicPath,
|
|
352
|
+
{
|
|
353
|
+
module,
|
|
354
|
+
runtime,
|
|
355
|
+
filename: sourceFilename,
|
|
356
|
+
chunkGraph,
|
|
357
|
+
contentHash
|
|
358
|
+
}
|
|
359
|
+
);
|
|
360
|
+
assetInfo = mergeAssetInfo(assetInfo, info);
|
|
361
|
+
assetPath = JSON.stringify(path + filename);
|
|
362
|
+
} else if (
|
|
363
|
+
generatorOptions.publicPath !== undefined &&
|
|
364
|
+
type === CSS_URL_TYPE
|
|
365
|
+
) {
|
|
366
|
+
const { path, info } = runtimeTemplate.compilation.getAssetPathWithInfo(
|
|
367
|
+
generatorOptions.publicPath,
|
|
368
|
+
{
|
|
369
|
+
module,
|
|
370
|
+
runtime,
|
|
371
|
+
filename: sourceFilename,
|
|
372
|
+
chunkGraph,
|
|
373
|
+
contentHash
|
|
374
|
+
}
|
|
375
|
+
);
|
|
376
|
+
assetInfo = mergeAssetInfo(assetInfo, info);
|
|
377
|
+
assetPath = path + filename;
|
|
378
|
+
} else if (type === JAVASCRIPT_TYPE) {
|
|
379
|
+
// add __webpack_require__.p
|
|
380
|
+
runtimeRequirements.add(RuntimeGlobals.publicPath);
|
|
381
|
+
assetPath = runtimeTemplate.concatenation(
|
|
382
|
+
{ expr: RuntimeGlobals.publicPath },
|
|
383
|
+
filename
|
|
384
|
+
);
|
|
385
|
+
} else if (type === CSS_URL_TYPE) {
|
|
386
|
+
const compilation = runtimeTemplate.compilation;
|
|
387
|
+
const path =
|
|
388
|
+
compilation.outputOptions.publicPath === "auto"
|
|
389
|
+
? CssUrlDependency.PUBLIC_PATH_AUTO
|
|
390
|
+
: compilation.getAssetPath(compilation.outputOptions.publicPath, {
|
|
391
|
+
hash: compilation.hash
|
|
392
|
+
});
|
|
393
|
+
|
|
394
|
+
assetPath = path + filename;
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
return {
|
|
398
|
+
assetPath: /** @type {string} */ (assetPath),
|
|
399
|
+
assetInfo: { sourceFilename, ...assetInfo }
|
|
400
|
+
};
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
/**
|
|
404
|
+
* @param {NormalModule} module module for which the bailout reason should be determined
|
|
405
|
+
* @param {ConcatenationBailoutReasonContext} context context
|
|
406
|
+
* @returns {string | undefined} reason why this module can't be concatenated, undefined when it can be concatenated
|
|
407
|
+
*/
|
|
408
|
+
getConcatenationBailoutReason(module, context) {
|
|
409
|
+
return undefined;
|
|
410
|
+
}
|
|
411
|
+
|
|
412
|
+
/**
|
|
413
|
+
* @param {NormalModule} module module
|
|
414
|
+
* @returns {string} mime type
|
|
415
|
+
*/
|
|
416
|
+
getMimeType(module) {
|
|
417
|
+
if (typeof this.dataUrlOptions === "function") {
|
|
418
|
+
throw new Error(
|
|
419
|
+
"This method must not be called when dataUrlOptions is a function"
|
|
420
|
+
);
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
/** @type {string | boolean | undefined} */
|
|
424
|
+
let mimeType =
|
|
425
|
+
/** @type {AssetGeneratorDataUrlOptions} */
|
|
426
|
+
(this.dataUrlOptions).mimetype;
|
|
427
|
+
if (mimeType === undefined) {
|
|
428
|
+
const ext = path.extname(
|
|
429
|
+
/** @type {NameForCondition} */
|
|
430
|
+
(module.nameForCondition())
|
|
431
|
+
);
|
|
432
|
+
if (
|
|
433
|
+
module.resourceResolveData &&
|
|
434
|
+
module.resourceResolveData.mimetype !== undefined
|
|
435
|
+
) {
|
|
436
|
+
mimeType =
|
|
437
|
+
module.resourceResolveData.mimetype +
|
|
438
|
+
module.resourceResolveData.parameters;
|
|
439
|
+
} else if (ext) {
|
|
440
|
+
mimeType = getMimeTypes().lookup(ext);
|
|
441
|
+
|
|
442
|
+
if (typeof mimeType !== "string") {
|
|
443
|
+
throw new Error(
|
|
444
|
+
"DataUrl can't be generated automatically, " +
|
|
445
|
+
`because there is no mimetype for "${ext}" in mimetype database. ` +
|
|
446
|
+
'Either pass a mimetype via "generator.mimetype" or ' +
|
|
447
|
+
'use type: "asset/resource" to create a resource file instead of a DataUrl'
|
|
448
|
+
);
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
if (typeof mimeType !== "string") {
|
|
454
|
+
throw new Error(
|
|
455
|
+
"DataUrl can't be generated automatically. " +
|
|
456
|
+
'Either pass a mimetype via "generator.mimetype" or ' +
|
|
457
|
+
'use type: "asset/resource" to create a resource file instead of a DataUrl'
|
|
458
|
+
);
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
return /** @type {string} */ (mimeType);
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
/**
|
|
465
|
+
* @param {NormalModule} module module for which the code should be generated
|
|
466
|
+
* @returns {string} DataURI
|
|
467
|
+
*/
|
|
468
|
+
generateDataUri(module) {
|
|
469
|
+
const source = /** @type {Source} */ (module.originalSource());
|
|
470
|
+
|
|
471
|
+
/** @type {string} */
|
|
472
|
+
let encodedSource;
|
|
473
|
+
|
|
474
|
+
if (typeof this.dataUrlOptions === "function") {
|
|
475
|
+
encodedSource = this.dataUrlOptions.call(null, source.source(), {
|
|
476
|
+
filename: /** @type {string} */ (module.getResource()),
|
|
477
|
+
module
|
|
478
|
+
});
|
|
479
|
+
} else {
|
|
480
|
+
let encoding =
|
|
481
|
+
/** @type {AssetGeneratorDataUrlOptions} */
|
|
482
|
+
(this.dataUrlOptions).encoding;
|
|
483
|
+
if (
|
|
484
|
+
encoding === undefined &&
|
|
485
|
+
module.resourceResolveData &&
|
|
486
|
+
module.resourceResolveData.encoding !== undefined
|
|
487
|
+
) {
|
|
488
|
+
encoding = module.resourceResolveData.encoding;
|
|
489
|
+
}
|
|
490
|
+
if (encoding === undefined) {
|
|
491
|
+
encoding = DEFAULT_ENCODING;
|
|
492
|
+
}
|
|
493
|
+
const mimeType = this.getMimeType(module);
|
|
494
|
+
|
|
495
|
+
/** @type {string} */
|
|
496
|
+
let encodedContent;
|
|
497
|
+
|
|
498
|
+
if (
|
|
499
|
+
module.resourceResolveData &&
|
|
500
|
+
module.resourceResolveData.encoding === encoding &&
|
|
501
|
+
decodeDataUriContent(
|
|
502
|
+
module.resourceResolveData.encoding,
|
|
503
|
+
/** @type {string} */ (module.resourceResolveData.encodedContent)
|
|
504
|
+
).equals(source.buffer())
|
|
505
|
+
) {
|
|
506
|
+
encodedContent =
|
|
507
|
+
/** @type {string} */
|
|
508
|
+
(module.resourceResolveData.encodedContent);
|
|
509
|
+
} else {
|
|
510
|
+
encodedContent = encodeDataUri(
|
|
511
|
+
/** @type {"base64" | false} */ (encoding),
|
|
512
|
+
source
|
|
513
|
+
);
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
encodedSource = `data:${mimeType}${
|
|
517
|
+
encoding ? `;${encoding}` : ""
|
|
518
|
+
},${encodedContent}`;
|
|
519
|
+
}
|
|
520
|
+
|
|
521
|
+
return encodedSource;
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
/**
|
|
525
|
+
* @param {NormalModule} module module for which the code should be generated
|
|
526
|
+
* @param {GenerateContext} generateContext context for generate
|
|
527
|
+
* @returns {Source | null} generated code
|
|
528
|
+
*/
|
|
529
|
+
generate(module, generateContext) {
|
|
530
|
+
const {
|
|
531
|
+
type,
|
|
532
|
+
getData,
|
|
533
|
+
runtimeTemplate,
|
|
534
|
+
runtimeRequirements,
|
|
535
|
+
concatenationScope
|
|
536
|
+
} = generateContext;
|
|
537
|
+
|
|
538
|
+
/** @type {string} */
|
|
539
|
+
let content;
|
|
540
|
+
|
|
541
|
+
const needContent = type === JAVASCRIPT_TYPE || type === CSS_URL_TYPE;
|
|
542
|
+
const data = getData ? getData() : undefined;
|
|
543
|
+
|
|
544
|
+
if (
|
|
545
|
+
/** @type {BuildInfo} */
|
|
546
|
+
(module.buildInfo).dataUrl &&
|
|
547
|
+
needContent
|
|
548
|
+
) {
|
|
549
|
+
const encodedSource = this.generateDataUri(module);
|
|
550
|
+
content =
|
|
551
|
+
type === JAVASCRIPT_TYPE
|
|
552
|
+
? JSON.stringify(encodedSource)
|
|
553
|
+
: encodedSource;
|
|
554
|
+
|
|
555
|
+
if (data) {
|
|
556
|
+
data.set("url", { [type]: content, ...data.get("url") });
|
|
557
|
+
}
|
|
558
|
+
} else {
|
|
559
|
+
const [fullContentHash, contentHash] = AssetGenerator.getFullContentHash(
|
|
560
|
+
module,
|
|
561
|
+
runtimeTemplate
|
|
562
|
+
);
|
|
563
|
+
|
|
564
|
+
if (data) {
|
|
565
|
+
data.set("fullContentHash", fullContentHash);
|
|
566
|
+
data.set("contentHash", contentHash);
|
|
567
|
+
}
|
|
568
|
+
|
|
569
|
+
/** @type {BuildInfo} */
|
|
570
|
+
(module.buildInfo).fullContentHash = fullContentHash;
|
|
571
|
+
|
|
572
|
+
const { originalFilename, filename, assetInfo } =
|
|
573
|
+
AssetGenerator.getFilenameWithInfo(
|
|
574
|
+
module,
|
|
575
|
+
{ filename: this.filename, outputPath: this.outputPath },
|
|
576
|
+
generateContext,
|
|
577
|
+
contentHash
|
|
578
|
+
);
|
|
579
|
+
|
|
580
|
+
if (data) {
|
|
581
|
+
data.set("filename", filename);
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
let { assetPath, assetInfo: newAssetInfo } =
|
|
585
|
+
AssetGenerator.getAssetPathWithInfo(
|
|
586
|
+
module,
|
|
587
|
+
{ publicPath: this.publicPath },
|
|
588
|
+
generateContext,
|
|
589
|
+
originalFilename,
|
|
590
|
+
assetInfo,
|
|
591
|
+
contentHash
|
|
592
|
+
);
|
|
593
|
+
|
|
594
|
+
if (data && (type === JAVASCRIPT_TYPE || type === CSS_URL_TYPE)) {
|
|
595
|
+
data.set("url", { [type]: assetPath, ...data.get("url") });
|
|
596
|
+
}
|
|
597
|
+
|
|
598
|
+
if (data) {
|
|
599
|
+
const oldAssetInfo = data.get("assetInfo");
|
|
600
|
+
|
|
601
|
+
if (oldAssetInfo) {
|
|
602
|
+
newAssetInfo = mergeAssetInfo(oldAssetInfo, newAssetInfo);
|
|
603
|
+
}
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
if (data) {
|
|
607
|
+
data.set("assetInfo", newAssetInfo);
|
|
608
|
+
}
|
|
609
|
+
|
|
610
|
+
// Due to code generation caching module.buildInfo.XXX can't used to store such information
|
|
611
|
+
// It need to be stored in the code generation results instead, where it's cached too
|
|
612
|
+
// TODO webpack 6 For back-compat reasons we also store in on module.buildInfo
|
|
613
|
+
/** @type {BuildInfo} */
|
|
614
|
+
(module.buildInfo).filename = filename;
|
|
615
|
+
|
|
616
|
+
/** @type {BuildInfo} */
|
|
617
|
+
(module.buildInfo).assetInfo = newAssetInfo;
|
|
618
|
+
|
|
619
|
+
content = assetPath;
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
if (type === JAVASCRIPT_TYPE) {
|
|
623
|
+
if (concatenationScope) {
|
|
624
|
+
concatenationScope.registerNamespaceExport(
|
|
625
|
+
ConcatenationScope.NAMESPACE_OBJECT_EXPORT
|
|
626
|
+
);
|
|
627
|
+
|
|
628
|
+
return new RawSource(
|
|
629
|
+
`${runtimeTemplate.renderConst()} ${
|
|
630
|
+
ConcatenationScope.NAMESPACE_OBJECT_EXPORT
|
|
631
|
+
} = ${content};`
|
|
632
|
+
);
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
runtimeRequirements.add(RuntimeGlobals.module);
|
|
636
|
+
|
|
637
|
+
return new RawSource(`${module.moduleArgument}.exports = ${content};`);
|
|
638
|
+
} else if (type === CSS_URL_TYPE) {
|
|
639
|
+
return null;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
return /** @type {Source} */ (module.originalSource());
|
|
643
|
+
}
|
|
644
|
+
|
|
645
|
+
/**
|
|
646
|
+
* @param {Error} error the error
|
|
647
|
+
* @param {NormalModule} module module for which the code should be generated
|
|
648
|
+
* @param {GenerateContext} generateContext context for generate
|
|
649
|
+
* @returns {Source | null} generated code
|
|
650
|
+
*/
|
|
651
|
+
generateError(error, module, generateContext) {
|
|
652
|
+
switch (generateContext.type) {
|
|
653
|
+
case "asset": {
|
|
654
|
+
return new RawSource(error.message);
|
|
655
|
+
}
|
|
656
|
+
case JAVASCRIPT_TYPE: {
|
|
657
|
+
return new RawSource(
|
|
658
|
+
`throw new Error(${JSON.stringify(error.message)});`
|
|
659
|
+
);
|
|
660
|
+
}
|
|
661
|
+
default:
|
|
662
|
+
return null;
|
|
663
|
+
}
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
/**
|
|
667
|
+
* @param {NormalModule} module fresh module
|
|
668
|
+
* @returns {SourceTypes} available types (do not mutate)
|
|
669
|
+
*/
|
|
670
|
+
getTypes(module) {
|
|
671
|
+
/** @type {Set<string>} */
|
|
672
|
+
const sourceTypes = new Set();
|
|
673
|
+
const connections = this._moduleGraph.getIncomingConnections(module);
|
|
674
|
+
|
|
675
|
+
for (const connection of connections) {
|
|
676
|
+
if (!connection.originModule) {
|
|
677
|
+
continue;
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
sourceTypes.add(connection.originModule.type.split("/")[0]);
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
if ((module.buildInfo && module.buildInfo.dataUrl) || this.emit === false) {
|
|
684
|
+
if (sourceTypes.size > 0) {
|
|
685
|
+
if (sourceTypes.has(JAVASCRIPT_TYPE) && sourceTypes.has(CSS_TYPE)) {
|
|
686
|
+
return JAVASCRIPT_AND_CSS_URL_TYPES;
|
|
687
|
+
} else if (sourceTypes.has(CSS_TYPE)) {
|
|
688
|
+
return CSS_URL_TYPES;
|
|
689
|
+
}
|
|
690
|
+
return JAVASCRIPT_TYPES;
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
return NO_TYPES;
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
if (sourceTypes.size > 0) {
|
|
697
|
+
if (sourceTypes.has(JAVASCRIPT_TYPE) && sourceTypes.has(CSS_TYPE)) {
|
|
698
|
+
return ASSET_AND_JAVASCRIPT_AND_CSS_URL_TYPES;
|
|
699
|
+
} else if (sourceTypes.has(CSS_TYPE)) {
|
|
700
|
+
return ASSET_AND_CSS_URL_TYPES;
|
|
701
|
+
}
|
|
702
|
+
return ASSET_AND_JAVASCRIPT_TYPES;
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
return ASSET_TYPES;
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
/**
|
|
709
|
+
* @param {NormalModule} module the module
|
|
710
|
+
* @param {SourceType=} type source type
|
|
711
|
+
* @returns {number} estimate size of the module
|
|
712
|
+
*/
|
|
713
|
+
getSize(module, type) {
|
|
714
|
+
switch (type) {
|
|
715
|
+
case ASSET_MODULE_TYPE: {
|
|
716
|
+
const originalSource = module.originalSource();
|
|
717
|
+
|
|
718
|
+
if (!originalSource) {
|
|
719
|
+
return 0;
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
return originalSource.size();
|
|
723
|
+
}
|
|
724
|
+
default:
|
|
725
|
+
if (module.buildInfo && module.buildInfo.dataUrl) {
|
|
726
|
+
const originalSource = module.originalSource();
|
|
727
|
+
|
|
728
|
+
if (!originalSource) {
|
|
729
|
+
return 0;
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
// roughly for data url
|
|
733
|
+
// Example: m.exports="data:image/png;base64,ag82/f+2=="
|
|
734
|
+
// 4/3 = base64 encoding
|
|
735
|
+
// 34 = ~ data url header + footer + rounding
|
|
736
|
+
return originalSource.size() * 1.34 + 36;
|
|
737
|
+
}
|
|
738
|
+
// it's only estimated so this number is probably fine
|
|
739
|
+
// Example: m.exports=r.p+"0123456789012345678901.ext"
|
|
740
|
+
return 42;
|
|
741
|
+
}
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
/**
|
|
745
|
+
* @param {Hash} hash hash that will be modified
|
|
746
|
+
* @param {UpdateHashContext} updateHashContext context for updating hash
|
|
747
|
+
*/
|
|
748
|
+
updateHash(hash, updateHashContext) {
|
|
749
|
+
const { module } = updateHashContext;
|
|
750
|
+
|
|
751
|
+
if (
|
|
752
|
+
/** @type {BuildInfo} */
|
|
753
|
+
(module.buildInfo).dataUrl
|
|
754
|
+
) {
|
|
755
|
+
hash.update("data-url");
|
|
756
|
+
// this.dataUrlOptions as function should be pure and only depend on input source and filename
|
|
757
|
+
// therefore it doesn't need to be hashed
|
|
758
|
+
if (typeof this.dataUrlOptions === "function") {
|
|
759
|
+
const ident = /** @type {{ ident?: string }} */ (this.dataUrlOptions)
|
|
760
|
+
.ident;
|
|
761
|
+
if (ident) hash.update(ident);
|
|
762
|
+
} else {
|
|
763
|
+
const dataUrlOptions =
|
|
764
|
+
/** @type {AssetGeneratorDataUrlOptions} */
|
|
765
|
+
(this.dataUrlOptions);
|
|
766
|
+
if (
|
|
767
|
+
dataUrlOptions.encoding &&
|
|
768
|
+
dataUrlOptions.encoding !== DEFAULT_ENCODING
|
|
769
|
+
) {
|
|
770
|
+
hash.update(dataUrlOptions.encoding);
|
|
771
|
+
}
|
|
772
|
+
if (dataUrlOptions.mimetype) hash.update(dataUrlOptions.mimetype);
|
|
773
|
+
// computed mimetype depends only on module filename which is already part of the hash
|
|
774
|
+
}
|
|
775
|
+
} else {
|
|
776
|
+
hash.update("resource");
|
|
777
|
+
|
|
778
|
+
const { module, chunkGraph, runtime } = updateHashContext;
|
|
779
|
+
const runtimeTemplate =
|
|
780
|
+
/** @type {NonNullable<UpdateHashContext["runtimeTemplate"]>} */
|
|
781
|
+
(updateHashContext.runtimeTemplate);
|
|
782
|
+
|
|
783
|
+
const pathData = {
|
|
784
|
+
module,
|
|
785
|
+
runtime,
|
|
786
|
+
filename: AssetGenerator.getSourceFileName(module, runtimeTemplate),
|
|
787
|
+
chunkGraph,
|
|
788
|
+
contentHash: runtimeTemplate.contentHashReplacement
|
|
789
|
+
};
|
|
790
|
+
|
|
791
|
+
if (typeof this.publicPath === "function") {
|
|
792
|
+
hash.update("path");
|
|
793
|
+
const assetInfo = {};
|
|
794
|
+
hash.update(this.publicPath(pathData, assetInfo));
|
|
795
|
+
hash.update(JSON.stringify(assetInfo));
|
|
796
|
+
} else if (this.publicPath) {
|
|
797
|
+
hash.update("path");
|
|
798
|
+
hash.update(this.publicPath);
|
|
799
|
+
} else {
|
|
800
|
+
hash.update("no-path");
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
const assetModuleFilename =
|
|
804
|
+
this.filename || runtimeTemplate.outputOptions.assetModuleFilename;
|
|
805
|
+
const { path: filename, info } =
|
|
806
|
+
runtimeTemplate.compilation.getAssetPathWithInfo(
|
|
807
|
+
assetModuleFilename,
|
|
808
|
+
pathData
|
|
809
|
+
);
|
|
810
|
+
hash.update(filename);
|
|
811
|
+
hash.update(JSON.stringify(info));
|
|
812
|
+
}
|
|
813
|
+
}
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
module.exports = AssetGenerator;
|