@umijs/bundler-webpack 4.3.1 → 4.3.2
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/compiled/webpack/ConsumeSharedModule.js +1 -0
- package/compiled/webpack/ConsumeSharedPlugin.check.js +1 -0
- package/compiled/webpack/ConsumeSharedPlugin.json +126 -0
- package/compiled/webpack/Dependency.js +1 -0
- package/compiled/webpack/EntryDependency.js +1 -0
- package/compiled/webpack/ExternalModule.js +1 -0
- package/compiled/webpack/ExternalsType.check.js +1 -0
- package/compiled/webpack/FileSystemInfo.js +1 -0
- package/compiled/webpack/JavascriptHotModuleReplacement.runtime.js +1 -463
- package/compiled/webpack/JavascriptModulesPlugin.js +1 -0
- package/compiled/webpack/LazySet.js +1 -0
- package/compiled/webpack/Module.js +1 -0
- package/compiled/webpack/ModuleDependency.js +1 -0
- package/compiled/webpack/ModuleFactory.js +1 -0
- package/compiled/webpack/ModuleFederationPlugin.js +1 -0
- package/compiled/webpack/ModuleNotFoundError.js +1 -0
- package/compiled/webpack/NodeEnvironmentPlugin.js +1 -0
- package/compiled/webpack/ObjectMiddleware.js +1 -0
- package/compiled/webpack/ResolverFactory.js +1 -0
- package/compiled/webpack/SortableSet.js +1 -0
- package/compiled/webpack/StartupChunkDependenciesPlugin.js +1 -0
- package/compiled/webpack/StaticExportsDependency.js +1 -0
- package/compiled/webpack/TemplatedPathPlugin.js +1 -0
- package/compiled/webpack/WebpackError.js +1 -0
- package/compiled/webpack/comparators.js +1 -0
- package/compiled/webpack/compileBooleanMatcher.js +1 -0
- package/compiled/webpack/create-schema-validation.js +1 -0
- package/compiled/webpack/createHash.js +1 -0
- package/compiled/webpack/deepImports.json +35 -2
- package/compiled/webpack/extractUrlAndGlobal.js +1 -0
- package/compiled/webpack/fs.js +1 -0
- package/compiled/webpack/identifier.js +1 -0
- package/compiled/webpack/index.js +685 -106
- package/compiled/webpack/makeSerializable.js +1 -0
- package/compiled/webpack/semver.js +1 -0
- package/dist/requireHook.js +16 -2
- package/package.json +5 -5
|
@@ -22,5 +22,38 @@
|
|
|
22
22
|
"webpack/lib/optimize/LimitChunkCountPlugin",
|
|
23
23
|
"webpack/lib/web/FetchCompileAsyncWasmPlugin",
|
|
24
24
|
"webpack/lib/web/FetchCompileWasmPlugin",
|
|
25
|
-
"webpack/lib/util/StringXor"
|
|
26
|
-
|
|
25
|
+
"webpack/lib/util/StringXor",
|
|
26
|
+
"webpack/lib/TemplatedPathPlugin",
|
|
27
|
+
"webpack/lib/util/createHash",
|
|
28
|
+
"webpack/lib/runtime/StartupChunkDependenciesPlugin",
|
|
29
|
+
"webpack/lib/util/identifier",
|
|
30
|
+
"webpack/lib/util/compileBooleanMatcher",
|
|
31
|
+
"webpack/lib/javascript/JavascriptModulesPlugin",
|
|
32
|
+
"webpack/lib/util/SortableSet",
|
|
33
|
+
"webpack/lib/container/ModuleFederationPlugin",
|
|
34
|
+
"webpack/lib/node/NodeEnvironmentPlugin",
|
|
35
|
+
"webpack/lib/hmr/JavascriptHotModuleReplacement.runtime",
|
|
36
|
+
"webpack/lib/util/makeSerializable",
|
|
37
|
+
"webpack/lib/Module",
|
|
38
|
+
"webpack/lib/WebpackError",
|
|
39
|
+
"webpack/lib/dependencies/StaticExportsDependency",
|
|
40
|
+
"webpack/lib/dependencies/EntryDependency",
|
|
41
|
+
"webpack/lib/ModuleFactory",
|
|
42
|
+
"webpack/lib/dependencies/ModuleDependency",
|
|
43
|
+
"webpack/lib/util/create-schema-validation",
|
|
44
|
+
"webpack/lib/Dependency",
|
|
45
|
+
"webpack/lib/ResolverFactory",
|
|
46
|
+
"webpack/lib/FileSystemInfo",
|
|
47
|
+
"webpack/lib/serialization/ObjectMiddleware",
|
|
48
|
+
"webpack/lib/ExternalModule",
|
|
49
|
+
"webpack/lib/util/extractUrlAndGlobal",
|
|
50
|
+
"webpack/lib/util/semver",
|
|
51
|
+
"webpack/lib/ModuleNotFoundError",
|
|
52
|
+
"webpack/lib/util/LazySet",
|
|
53
|
+
"webpack/lib/util/fs",
|
|
54
|
+
"webpack/lib/util/comparators",
|
|
55
|
+
"webpack/lib/sharing/ConsumeSharedModule",
|
|
56
|
+
"webpack/schemas/plugins/container/ExternalsType.check",
|
|
57
|
+
"webpack/schemas/plugins/sharing/ConsumeSharedPlugin.check",
|
|
58
|
+
"webpack/schemas/plugins/sharing/ConsumeSharedPlugin.json"
|
|
59
|
+
]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('./').extractUrlAndGlobal;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('./').fs;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('./').identifier;
|