weboptimizer 2.0.1220 → 2.0.1222
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 +9 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "weboptimizer",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1222",
|
|
4
4
|
"description": "A generic web optimizer, (module) bundler and development environment.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"webpack",
|
|
@@ -72,7 +72,7 @@
|
|
|
72
72
|
"lint": "yarn lint:base",
|
|
73
73
|
"lint:base": "eslint --ignore-pattern '*.compiled.*' --ignore-pattern '*.d.ts' --ignore-pattern '*.js' --parser-options=project:tsconfig.json '*.ts' 'test/*.ts'",
|
|
74
74
|
"prepare": "yarn build",
|
|
75
|
-
"postversion": "git push --tags && yarn publish . --tag $npm_package_version && git push",
|
|
75
|
+
"postversion": "git push --tags && yarn publish . --non-interactive --tag $npm_package_version && git push",
|
|
76
76
|
"prettify": "yarn lint:base --fix || true",
|
|
77
77
|
"test": "yarn build:test && jest --config ./jest.json --root-dir './' --test-regex '/test/.+\\\\.js$' test/browser.js test/configurator.js test/helper.js test/ejsLoader.js test/stylelintConfigurator.js test/index.js test/webpackConfigurator.js",
|
|
78
78
|
"test:coverage": "yarn test --ci --coverage --coverageReporters=text --coverageReporters=text-summary --silent --testLocationInResults",
|
|
@@ -183,6 +183,7 @@
|
|
|
183
183
|
"postcss-import": "*",
|
|
184
184
|
"postcss-loader": "*",
|
|
185
185
|
"postcss-preset-env": "*",
|
|
186
|
+
"postcss-scss": "*",
|
|
186
187
|
"postcss-sprites": "*",
|
|
187
188
|
"postcss-url": "*",
|
|
188
189
|
"style-loader": "*",
|
|
@@ -268,6 +269,9 @@
|
|
|
268
269
|
"postcss-preset-env": {
|
|
269
270
|
"optional": true
|
|
270
271
|
},
|
|
272
|
+
"postcss-scss": {
|
|
273
|
+
"optional": true
|
|
274
|
+
},
|
|
271
275
|
"postcss-sprites": {
|
|
272
276
|
"optional": true
|
|
273
277
|
},
|
|
@@ -1411,6 +1415,9 @@
|
|
|
1411
1415
|
"__evaluate__": "self.debug"
|
|
1412
1416
|
},
|
|
1413
1417
|
"stylelint": {
|
|
1418
|
+
"customSyntax": {
|
|
1419
|
+
"__evaluate__": "optionalRequire('postcss-scss') ? 'postcss-scss' : null"
|
|
1420
|
+
},
|
|
1414
1421
|
"extends": "stylelint-config-standard",
|
|
1415
1422
|
"ignoreFiles": "**/node_modules/*",
|
|
1416
1423
|
"rules": {
|