weboptimizer 2.0.1223 → 2.0.1225

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/declarations.d.ts CHANGED
@@ -40,6 +40,10 @@ declare module 'webOptimizerDefaultTemplateFilePath'
40
40
  declare module 'svgo' {
41
41
  export type Options = any
42
42
  }
43
+ declare module '*/module' {
44
+ const classes:Mapping
45
+ export default classes
46
+ }
43
47
  declare module '*.module' {
44
48
  const classes:Mapping
45
49
  export default classes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "weboptimizer",
3
- "version": "2.0.1223",
3
+ "version": "2.0.1225",
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 . --non-interactive --new-version $npm_package_version --tag $npm_package_version && git push",
75
+ "postversion": "yarn publish --non-interactive && git push --tags && 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",