weboptimizer 2.0.1379 → 2.0.1381
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 +6 -3
- package/tsconfig.json +1 -2
- package/tsconfigApplication.json +0 -4
- package/tsconfigLibrary.json +0 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "weboptimizer",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1381",
|
|
4
4
|
"description": "A generic web optimizer, (module) bundler and development environment.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"webpack",
|
|
@@ -70,7 +70,7 @@
|
|
|
70
70
|
"clear": "rimraf apiDocumentation browser.d.ts configurator.d.ts ejsLoader.d.ts helper.d.ts index.d.ts jestEnvironmentBrowser.d.ts stylelintConfigurator.d.ts type.d.ts webpackConfigurator.d.ts *.js *.compiled.* *.compiled test/*.js test/*.compiled.* test/*.d.ts *.html *.log node_modules/weboptimizer .coverage .nyc_output || true",
|
|
71
71
|
"document": "yarn build:plain && jsdoc --package ./package.json --readme ./readme.md --destination apiDocumentation *.js",
|
|
72
72
|
"lint": "yarn lint:base",
|
|
73
|
-
"lint:base": "eslint --ignore-pattern '*.compiled.*' --ignore-pattern '*.d.ts' --ignore-pattern '*.js' --parser-options=project:tsconfig.json '*.ts' 'test/*.ts'",
|
|
73
|
+
"lint:base": "eslint --ignore-pattern **/exclude/* --ignore-pattern '*.compiled.*' --ignore-pattern '*.d.ts' --ignore-pattern '*.js' --parser-options=project:tsconfig.json '*.ts' 'test/*.ts'",
|
|
74
74
|
"prepare": "yarn build",
|
|
75
75
|
"postversion": "yarn publish --non-interactive; git push --tags && git push",
|
|
76
76
|
"prettify": "yarn lint:base --fix || true",
|
|
@@ -483,6 +483,8 @@
|
|
|
483
483
|
"--ignore-pattern",
|
|
484
484
|
"'**/backup/*'",
|
|
485
485
|
"--ignore-pattern",
|
|
486
|
+
"'**/exclude/*'",
|
|
487
|
+
"--ignore-pattern",
|
|
486
488
|
"'**/plugins/*'",
|
|
487
489
|
"--ignore-pattern",
|
|
488
490
|
"'*.d.ts'",
|
|
@@ -753,7 +755,8 @@
|
|
|
753
755
|
"./type",
|
|
754
756
|
"./type.js",
|
|
755
757
|
"./type.ts",
|
|
756
|
-
".coverage"
|
|
758
|
+
".coverage",
|
|
759
|
+
"exclude"
|
|
757
760
|
],
|
|
758
761
|
"chunks": {},
|
|
759
762
|
"entry": {
|
package/tsconfig.json
CHANGED
package/tsconfigApplication.json
CHANGED