package-build-stats 7.3.12 → 7.3.13

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.
@@ -36,6 +36,7 @@ function makeWebpackConfig({ packageName, entry, externals, debug, minifier }) {
36
36
  const builtInNode = {}
37
37
  builtin_modules_1.default.forEach(mod => {
38
38
  builtInNode[mod] = 'empty'
39
+ builtInNode[`node:${mod}`] = 'empty'
39
40
  })
40
41
  builtInNode['setImmediate'] = false
41
42
  builtInNode['console'] = false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "package-build-stats",
3
- "version": "7.3.12",
3
+ "version": "7.3.13",
4
4
  "author": "Shubham Kanodia <shubham.kanodia10@gmail.com>",
5
5
  "repository": "https://github.com/pastelsky/package-build-stats",
6
6
  "publishConfig": {
@@ -47,6 +47,7 @@ export default function makeWebpackConfig({
47
47
  const builtInNode: NodeBuiltIn = {}
48
48
  builtinModules.forEach(mod => {
49
49
  builtInNode[mod] = 'empty'
50
+ builtInNode[`node:${mod}`] = 'empty'
50
51
  })
51
52
 
52
53
  builtInNode['setImmediate'] = false