@rushstack/webpack-preserve-dynamic-require-plugin 0.9.27 → 0.9.30
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/dist/tsdoc-metadata.json +1 -1
- package/package.json +4 -5
package/dist/tsdoc-metadata.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/webpack-preserve-dynamic-require-plugin",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.30",
|
|
4
4
|
"description": "This plugin tells webpack to leave dynamic calls to \"require\" as-is instead of trying to bundle them.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"typings": "dist/webpack-preserve-dynamic-require-plugin.d.ts",
|
|
@@ -16,8 +16,8 @@
|
|
|
16
16
|
"dependencies": {},
|
|
17
17
|
"devDependencies": {
|
|
18
18
|
"@rushstack/eslint-config": "3.0.0",
|
|
19
|
-
"@rushstack/heft": "0.47.
|
|
20
|
-
"@rushstack/heft-node-rig": "1.10.
|
|
19
|
+
"@rushstack/heft": "0.47.5",
|
|
20
|
+
"@rushstack/heft-node-rig": "1.10.7",
|
|
21
21
|
"@types/heft-jest": "1.0.1",
|
|
22
22
|
"@types/node": "12.20.24",
|
|
23
23
|
"webpack": "~5.68.0"
|
|
@@ -27,6 +27,5 @@
|
|
|
27
27
|
"build": "heft build --clean",
|
|
28
28
|
"_phase:build": "heft build --clean",
|
|
29
29
|
"_phase:test": "heft test --no-build"
|
|
30
|
-
}
|
|
31
|
-
"readme": "# @rushstack/webpack-preserve-dynamic-require-plugin\n\n## Overview\n\nThis Webpack plugin instructs webpack to leave dynamic usage of `require` as-is in the bundled code. For example, if your code contains:\n```js\nfunction requireSomeUserThing(path) {\n return require(path);\n}\n```\nThe emitted bundle will preserve the call to `require(path)` instead of trying to process it.\n"
|
|
30
|
+
}
|
|
32
31
|
}
|