weboptimizer 2.0.1503 → 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.
Files changed (3) hide show
  1. package/index.js +2 -2
  2. package/package.json +1 -1
  3. 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: coverage', 'test: coverage: report'].includes(commandLineArguments[2])) {
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: coverage', 'test: coverage: report'].includes(configuration.givenCommandLineArguments[2])) {
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.1503",
3
+ "version": "2.0.1504",
4
4
  "description": "A generic web optimizer, (module) bundler and development environment.",
5
5
  "keywords": [
6
6
  "webpack",
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: types': Array<Command> | Command;
185
+ 'check:types': Array<Command> | Command;
186
186
  }
187
187
  export type NodeEnvironment = BaseWebpackConfiguration['node'] & {
188
188
  '#': string;