weboptimizer 2.0.1272 → 2.0.1274
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 +17 -7
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "weboptimizer",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1274",
|
|
4
4
|
"description": "A generic web optimizer, (module) bundler and development environment.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"webpack",
|
|
@@ -102,7 +102,7 @@
|
|
|
102
102
|
"html-webpack-plugin": "*",
|
|
103
103
|
"imports-loader": "*",
|
|
104
104
|
"jest-environment-jsdom": "*",
|
|
105
|
-
"rimraf": "
|
|
105
|
+
"rimraf": ">=4",
|
|
106
106
|
"script-loader": "*",
|
|
107
107
|
"typescript": "*",
|
|
108
108
|
"webpack": "*",
|
|
@@ -1364,8 +1364,12 @@
|
|
|
1364
1364
|
{
|
|
1365
1365
|
"__evaluate__": "path.resolve(self.path.target.base, '**/*.css.js')"
|
|
1366
1366
|
},
|
|
1367
|
-
|
|
1368
|
-
|
|
1367
|
+
{
|
|
1368
|
+
"__evaluate__": "'!' + path.resolve(self.path.target.base, 'node_modules/**/*.css.js')"
|
|
1369
|
+
},
|
|
1370
|
+
{
|
|
1371
|
+
"__evaluate__": "'!' + path.resolve(self.path.target.base, '**/node_modules/**/*.css.js')"
|
|
1372
|
+
}
|
|
1369
1373
|
],
|
|
1370
1374
|
"tidyUpOnClear": [
|
|
1371
1375
|
{
|
|
@@ -1385,9 +1389,15 @@
|
|
|
1385
1389
|
{
|
|
1386
1390
|
"__evaluate__": "path.resolve(self.path.target.base, '**/*.d.ts')"
|
|
1387
1391
|
},
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1392
|
+
{
|
|
1393
|
+
"__evaluate__": "'!' + path.resolve(self.path.target.base, 'node_modules/**/*.d.ts')"
|
|
1394
|
+
},
|
|
1395
|
+
{
|
|
1396
|
+
"__evaluate__": "'!' + path.resolve(self.path.target.base, '**/node_modules/**/*.d.ts')"
|
|
1397
|
+
},
|
|
1398
|
+
{
|
|
1399
|
+
"__evaluate__": "'!' + path.resolve(self.path.target.base, '**/declarations.d.ts')"
|
|
1400
|
+
}
|
|
1391
1401
|
]
|
|
1392
1402
|
},
|
|
1393
1403
|
"performanceHints": {
|