weboptimizer 2.0.1502 → 2.0.1504
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/index.js +2 -2
- package/package.json +2 -2
- package/type.d.ts +1 -1
package/index.js
CHANGED
|
@@ -274,7 +274,7 @@ var main = function main(context) {
|
|
|
274
274
|
}).filter(function (filePath) {
|
|
275
275
|
return !configuration.path.context.startsWith(filePath);
|
|
276
276
|
}), configuration["package"].main.fileNames);
|
|
277
|
-
if (!['build', 'document', 'test', 'test:
|
|
277
|
+
if (!['build', 'document', 'test', 'test:coverage', 'test:coverage:report'].includes(commandLineArguments[2])) {
|
|
278
278
|
_context3.next = 75;
|
|
279
279
|
break;
|
|
280
280
|
}
|
|
@@ -537,7 +537,7 @@ var main = function main(context) {
|
|
|
537
537
|
_iterator9.f();
|
|
538
538
|
}
|
|
539
539
|
}; /// region a-/synchronous
|
|
540
|
-
if (!['document', 'test', 'test:
|
|
540
|
+
if (!['document', 'test', 'test:coverage', 'test:coverage:report'].includes(configuration.givenCommandLineArguments[2])) {
|
|
541
541
|
_context3.next = 117;
|
|
542
542
|
break;
|
|
543
543
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "weboptimizer",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1504",
|
|
4
4
|
"description": "A generic web optimizer, (module) bundler and development environment.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"webpack",
|
|
@@ -100,7 +100,7 @@
|
|
|
100
100
|
"babel-loader": "^9.1.3",
|
|
101
101
|
"babel-plugin-transform-modern-regexp": "^0.0.6",
|
|
102
102
|
"babel-preset-minify": "^0.5.2",
|
|
103
|
-
"clientnode": "3.0.
|
|
103
|
+
"clientnode": "3.0.1177",
|
|
104
104
|
"ejs": "^3.1.10",
|
|
105
105
|
"exports-loader": "^5.0.0",
|
|
106
106
|
"extract-loader": "^5.1.0",
|
package/type.d.ts
CHANGED
|
@@ -182,7 +182,7 @@ export interface CommandLineArguments {
|
|
|
182
182
|
serve: Array<Command> | Command;
|
|
183
183
|
test: Array<Command> | Command;
|
|
184
184
|
'test:browser': Array<Command> | Command;
|
|
185
|
-
'check:
|
|
185
|
+
'check:types': Array<Command> | Command;
|
|
186
186
|
}
|
|
187
187
|
export type NodeEnvironment = BaseWebpackConfiguration['node'] & {
|
|
188
188
|
'#': string;
|