@digest/webpack 4.0.11 → 4.1.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/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@digest/webpack",
3
3
  "title": "Webpack Digest",
4
4
  "license": "LGPL-3.0-or-later",
5
- "version": "4.0.11",
5
+ "version": "4.1.0",
6
6
  "description": "Digested Webpack Configurations",
7
7
  "author": {
8
8
  "name": "wallzero @wallzeroblog",
@@ -30,8 +30,6 @@
30
30
  "/dist/scriptLoaders.js",
31
31
  "/dist/styleLoaders.d.ts",
32
32
  "/dist/styleLoaders.js",
33
- "/dist/threadLoader.d.ts",
34
- "/dist/threadLoader.js",
35
33
  "/dist/webpack.config.d.ts",
36
34
  "/dist/webpack.config.js",
37
35
  "/share/favicon.png",
@@ -47,8 +45,8 @@
47
45
  "clean": "rimraf node_modules dist package-lock.json npm-debug.log"
48
46
  },
49
47
  "dependencies": {
50
- "@digest/scripts": "^4.0.11",
51
- "@swc/core": "^1.3.9",
48
+ "@digest/scripts": "^4.1.0",
49
+ "@swc/core": "^1.3.14",
52
50
  "@vue/preload-webpack-plugin": "^2.0.0",
53
51
  "case-sensitive-paths-webpack-plugin": "^2.4.0",
54
52
  "circular-dependency-plugin": "^5.2.2",
@@ -73,18 +71,18 @@
73
71
  "thread-loader": "^3.0.4",
74
72
  "url-loader": "^4.1.1",
75
73
  "webpack": "^5.74.0",
76
- "webpack-bundle-analyzer": "^4.6.1",
74
+ "webpack-bundle-analyzer": "^4.7.0",
77
75
  "webpack-cli": "^4.10.0",
78
76
  "webpack-favicons": "^1.3.8",
79
77
  "webpack-node-externals": "^3.0.0",
80
78
  "webpack-subresource-integrity": "^5.1.0"
81
79
  },
82
80
  "devDependencies": {
83
- "@digest/webpack-workbox": "^4.0.11",
81
+ "@digest/webpack-workbox": "^4.1.0",
84
82
  "@types/clean-webpack-plugin": "^0.1.3",
85
83
  "@types/ip": "^1.1.0",
86
84
  "@types/mini-css-extract-plugin": "^2.5.1",
87
- "@types/node": "^18.11.2",
85
+ "@types/node": "^18.11.9",
88
86
  "@types/terser-webpack-plugin": "^5.2.0",
89
87
  "@types/webpack-bundle-analyzer": "^4.6.0",
90
88
  "@types/webpack-env": "^1.18.0"
@@ -94,5 +92,5 @@
94
92
  "build",
95
93
  "hmr"
96
94
  ],
97
- "gitHead": "8e973193864f0340eee89b67229204e2636ae60f"
95
+ "gitHead": "cc0103a57b0e6e7274731596da8a14d151e40422"
98
96
  }
@@ -1 +0,0 @@
1
- export {};
@@ -1,16 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- const node_os_1 = __importDefault(require("node:os"));
7
- const workers = node_os_1.default.cpus().length - 2 < 1 ?
8
- 1 :
9
- node_os_1.default.cpus().length - 2;
10
- const threadLoader = {
11
- loader: 'thread-loader',
12
- options: {
13
- workers
14
- }
15
- };
16
- module.exports = threadLoader;