@rushstack/webpack-preserve-dynamic-require-plugin 0.11.124 → 0.12.0
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/CHANGELOG.json +29 -0
- package/CHANGELOG.md +13 -1
- package/dist/tsdoc-metadata.json +1 -1
- package/lib-esm/index.js +29 -0
- package/lib-esm/index.js.map +1 -0
- package/lib-esm/index.test.js.map +1 -0
- package/package.json +26 -5
- /package/{lib → lib-commonjs}/index.js +0 -0
- /package/{lib → lib-commonjs}/index.js.map +0 -0
- /package/{lib → lib-commonjs}/index.test.js.map +0 -0
- /package/{lib → lib-dts}/index.d.ts +0 -0
- /package/{lib → lib-dts}/index.d.ts.map +0 -0
- /package/{lib → lib-dts}/index.test.d.ts +0 -0
- /package/{lib → lib-dts}/index.test.d.ts.map +0 -0
package/CHANGELOG.json
CHANGED
|
@@ -1,6 +1,35 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/webpack-preserve-dynamic-require-plugin",
|
|
3
3
|
"entries": [
|
|
4
|
+
{
|
|
5
|
+
"version": "0.12.0",
|
|
6
|
+
"tag": "@rushstack/webpack-preserve-dynamic-require-plugin_v0.12.0",
|
|
7
|
+
"date": "Thu, 19 Feb 2026 00:04:53 GMT",
|
|
8
|
+
"comments": {
|
|
9
|
+
"minor": [
|
|
10
|
+
{
|
|
11
|
+
"comment": "Normalize package layout. CommonJS is now under `lib-commonjs`, DTS is now under `lib-dts`, and ESM is now under `lib-esm`. Imports to `lib` still work as before, handled by the `\"exports\"` field in `package.json`."
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"dependency": [
|
|
15
|
+
{
|
|
16
|
+
"comment": "Updating dependency \"@rushstack/heft\" to `1.2.0`"
|
|
17
|
+
}
|
|
18
|
+
]
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
"version": "0.11.125",
|
|
23
|
+
"tag": "@rushstack/webpack-preserve-dynamic-require-plugin_v0.11.125",
|
|
24
|
+
"date": "Sat, 07 Feb 2026 01:13:26 GMT",
|
|
25
|
+
"comments": {
|
|
26
|
+
"dependency": [
|
|
27
|
+
{
|
|
28
|
+
"comment": "Updating dependency \"@rushstack/heft\" to `1.1.14`"
|
|
29
|
+
}
|
|
30
|
+
]
|
|
31
|
+
}
|
|
32
|
+
},
|
|
4
33
|
{
|
|
5
34
|
"version": "0.11.124",
|
|
6
35
|
"tag": "@rushstack/webpack-preserve-dynamic-require-plugin_v0.11.124",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,18 @@
|
|
|
1
1
|
# Change Log - @rushstack/webpack-preserve-dynamic-require-plugin
|
|
2
2
|
|
|
3
|
-
This log was last generated on
|
|
3
|
+
This log was last generated on Thu, 19 Feb 2026 00:04:53 GMT and should not be manually modified.
|
|
4
|
+
|
|
5
|
+
## 0.12.0
|
|
6
|
+
Thu, 19 Feb 2026 00:04:53 GMT
|
|
7
|
+
|
|
8
|
+
### Minor changes
|
|
9
|
+
|
|
10
|
+
- Normalize package layout. CommonJS is now under `lib-commonjs`, DTS is now under `lib-dts`, and ESM is now under `lib-esm`. Imports to `lib` still work as before, handled by the `"exports"` field in `package.json`.
|
|
11
|
+
|
|
12
|
+
## 0.11.125
|
|
13
|
+
Sat, 07 Feb 2026 01:13:26 GMT
|
|
14
|
+
|
|
15
|
+
_Version update only_
|
|
4
16
|
|
|
5
17
|
## 0.11.124
|
|
6
18
|
Wed, 04 Feb 2026 20:42:47 GMT
|
package/dist/tsdoc-metadata.json
CHANGED
package/lib-esm/index.js
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
|
|
2
|
+
// See LICENSE in the project root for license information.
|
|
3
|
+
const PLUGIN_NAME = 'PreserveDynamicRequireWebpackPlugin';
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export class PreserveDynamicRequireWebpackPlugin {
|
|
8
|
+
apply(compiler) {
|
|
9
|
+
compiler.hooks.thisCompilation.tap(PLUGIN_NAME, (compilation) => {
|
|
10
|
+
function processDependencies(block) {
|
|
11
|
+
const { dependencies } = block;
|
|
12
|
+
for (let i = dependencies.length - 1; i >= 0; i--) {
|
|
13
|
+
const dep = dependencies[i];
|
|
14
|
+
// Disable processing of dynamic require
|
|
15
|
+
if (dep.constructor.name === 'CommonJsRequireContextDependency') {
|
|
16
|
+
dependencies.splice(i, 1);
|
|
17
|
+
}
|
|
18
|
+
}
|
|
19
|
+
for (const child of block.blocks) {
|
|
20
|
+
processDependencies(child);
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
compilation.hooks.succeedModule.tap(PLUGIN_NAME, (mod) => {
|
|
24
|
+
processDependencies(mod);
|
|
25
|
+
});
|
|
26
|
+
});
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,4FAA4F;AAC5F,2DAA2D;AAI3D,MAAM,WAAW,GAA0C,qCAAqC,CAAC;AAEjG;;GAEG;AACH,MAAM,OAAO,mCAAmC;IACvC,KAAK,CAAC,QAA0B;QACrC,QAAQ,CAAC,KAAK,CAAC,eAAe,CAAC,GAAG,CAAC,WAAW,EAAE,CAAC,WAAgC,EAAE,EAAE;YACnF,SAAS,mBAAmB,CAC1B,KAAsE;gBAEtE,MAAM,EAAE,YAAY,EAAE,GAAG,KAAK,CAAC;gBAC/B,KAAK,IAAI,CAAC,GAAW,YAAY,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC;oBAC1D,MAAM,GAAG,GAAuB,YAAY,CAAC,CAAC,CAAC,CAAC;oBAChD,wCAAwC;oBACxC,IAAI,GAAG,CAAC,WAAW,CAAC,IAAI,KAAK,kCAAkC,EAAE,CAAC;wBAChE,YAAY,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC;oBAC5B,CAAC;gBACH,CAAC;gBAED,KAAK,MAAM,KAAK,IAAI,KAAK,CAAC,MAAM,EAAE,CAAC;oBACjC,mBAAmB,CAAC,KAAK,CAAC,CAAC;gBAC7B,CAAC;YACH,CAAC;YAED,WAAW,CAAC,KAAK,CAAC,aAAa,CAAC,GAAG,CAAC,WAAW,EAAE,CAAC,GAAmB,EAAE,EAAE;gBACvE,mBAAmB,CAAC,GAAG,CAAC,CAAC;YAC3B,CAAC,CAAC,CAAC;QACL,CAAC,CAAC,CAAC;IACL,CAAC;CACF","sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.\n// See LICENSE in the project root for license information.\n\nimport type * as webpack from 'webpack';\n\nconst PLUGIN_NAME: 'PreserveDynamicRequireWebpackPlugin' = 'PreserveDynamicRequireWebpackPlugin';\n\n/**\n * @public\n */\nexport class PreserveDynamicRequireWebpackPlugin {\n public apply(compiler: webpack.Compiler): void {\n compiler.hooks.thisCompilation.tap(PLUGIN_NAME, (compilation: webpack.Compilation) => {\n function processDependencies(\n block: Pick<webpack.AsyncDependenciesBlock, 'dependencies' | 'blocks'>\n ): void {\n const { dependencies } = block;\n for (let i: number = dependencies.length - 1; i >= 0; i--) {\n const dep: webpack.Dependency = dependencies[i];\n // Disable processing of dynamic require\n if (dep.constructor.name === 'CommonJsRequireContextDependency') {\n dependencies.splice(i, 1);\n }\n }\n\n for (const child of block.blocks) {\n processDependencies(child);\n }\n }\n\n compilation.hooks.succeedModule.tap(PLUGIN_NAME, (mod: webpack.Module) => {\n processDependencies(mod);\n });\n });\n }\n}\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.test.js","sourceRoot":"","sources":["../src/index.test.ts"],"names":[],"mappings":"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","sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.\n// See LICENSE in the project root for license information.\n\njest.disableAutomock();\nimport webpack from 'webpack';\n\nimport { PreserveDynamicRequireWebpackPlugin } from './index';\n\njest.setTimeout(1e9);\n\ndescribe(PreserveDynamicRequireWebpackPlugin.name, () => {\n it('Preserves dynamic require usage', async () => {\n const sources: Map<string, string> = new Map();\n sources.set('/package.json', JSON.stringify({}));\n sources.set('/file.js', 'require(process.env.SOME_PATH);');\n\n const compiler: webpack.Compiler = webpack({\n entry: {\n main: '/file.js'\n },\n output: {\n path: '/release',\n filename: '[name].js'\n },\n context: '/',\n mode: 'none',\n plugins: [new PreserveDynamicRequireWebpackPlugin()]\n });\n\n const inputFs: typeof compiler.inputFileSystem = {\n readFile(path: string, cb: (err?: NodeJS.ErrnoException | undefined, content?: string) => void): void {\n cb(undefined, sources.get(path));\n },\n readdir(path: string, cb: (err?: NodeJS.ErrnoException | undefined, files?: string[]) => void): void {\n cb(\n undefined,\n Array.from(sources.keys(), (key: string) => key.slice(1))\n );\n },\n readlink(path: string, cb: (err?: NodeJS.ErrnoException | undefined, dest?: string) => void): void {\n cb();\n },\n stat(path: string, cb: (err?: NodeJS.ErrnoException, stat?: unknown) => void): void {\n if (sources.has(path)) {\n return cb(undefined, {\n isFile() {\n return true;\n },\n isDirectory() {\n return false;\n }\n });\n } else if (path === '/') {\n return cb(undefined, {\n isFile() {\n return false;\n },\n isDirectory() {\n return true;\n }\n });\n }\n cb(new Error(`Unexpected stat call for ${path}`));\n }\n } as unknown as typeof compiler.inputFileSystem;\n\n const results: Map<string, string> = new Map();\n\n const outputFs: typeof compiler.outputFileSystem = {\n mkdir(path: string, cb: (err?: NodeJS.ErrnoException) => void): void {\n cb();\n },\n stat(path: string, cb: (err?: NodeJS.ErrnoException) => void): void {\n const err: NodeJS.ErrnoException = new Error(`No such file`);\n err.code = 'ENOENT';\n cb(err);\n },\n writeFile(path: string, content: Buffer, cb: (err?: NodeJS.ErrnoException) => void): void {\n results.set(path, content.toString('utf8'));\n cb();\n }\n } as unknown as typeof compiler.outputFileSystem;\n\n compiler.inputFileSystem = inputFs;\n compiler.outputFileSystem = outputFs;\n\n await new Promise<void>((resolve: () => void, reject: (err: Error) => void) =>\n compiler.run((err?: Error | null) => {\n if (err) {\n return reject(err);\n }\n resolve();\n })\n );\n\n expect(results).toMatchSnapshot();\n });\n});\n"]}
|
package/package.json
CHANGED
|
@@ -1,9 +1,30 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/webpack-preserve-dynamic-require-plugin",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.12.0",
|
|
4
4
|
"description": "This plugin tells webpack to leave dynamic calls to \"require\" as-is instead of trying to bundle them.",
|
|
5
|
-
"main": "lib/index.js",
|
|
6
|
-
"
|
|
5
|
+
"main": "./lib-commonjs/index.js",
|
|
6
|
+
"module": "./lib-esm/index.js",
|
|
7
|
+
"types": "./dist/webpack-preserve-dynamic-require-plugin.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/webpack-preserve-dynamic-require-plugin.d.ts",
|
|
11
|
+
"import": "./lib-esm/index.js",
|
|
12
|
+
"require": "./lib-commonjs/index.js"
|
|
13
|
+
},
|
|
14
|
+
"./lib/*": {
|
|
15
|
+
"types": "./lib-dts/*.d.ts",
|
|
16
|
+
"import": "./lib-esm/*.js",
|
|
17
|
+
"require": "./lib-commonjs/*.js"
|
|
18
|
+
},
|
|
19
|
+
"./package.json": "./package.json"
|
|
20
|
+
},
|
|
21
|
+
"typesVersions": {
|
|
22
|
+
"*": {
|
|
23
|
+
"lib/*": [
|
|
24
|
+
"lib-dts/*"
|
|
25
|
+
]
|
|
26
|
+
}
|
|
27
|
+
},
|
|
7
28
|
"license": "MIT",
|
|
8
29
|
"repository": {
|
|
9
30
|
"type": "git",
|
|
@@ -15,8 +36,8 @@
|
|
|
15
36
|
},
|
|
16
37
|
"devDependencies": {
|
|
17
38
|
"eslint": "~9.37.0",
|
|
18
|
-
"webpack": "~5.
|
|
19
|
-
"@rushstack/heft": "1.
|
|
39
|
+
"webpack": "~5.105.2",
|
|
40
|
+
"@rushstack/heft": "1.2.0",
|
|
20
41
|
"local-node-rig": "1.0.0"
|
|
21
42
|
},
|
|
22
43
|
"sideEffects": false,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|