weboptimizer 2.0.1225 → 2.0.1227

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,10 +40,6 @@ 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
- }
47
43
  declare module '*.module' {
48
44
  const classes:Mapping
49
45
  export default classes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "weboptimizer",
3
- "version": "2.0.1225",
3
+ "version": "2.0.1227",
4
4
  "description": "A generic web optimizer, (module) bundler and development environment.",
5
5
  "keywords": [
6
6
  "webpack",
@@ -1739,6 +1739,9 @@
1739
1739
  "**/package.json",
1740
1740
  {
1741
1741
  "__evaluate__": "path.resolve(self.path.target.base, '*.js')"
1742
+ },
1743
+ {
1744
+ "__evaluate__": "path.resolve(self.path.target.base, '**/*.js')"
1742
1745
  }
1743
1746
  ]
1744
1747
  }
package/tsconfig.json CHANGED
@@ -24,6 +24,7 @@
24
24
  },
25
25
  "include": [
26
26
  "*.ts", "*.tsx",
27
- "*/*.ts", "*/*.tsx"
27
+ "*/*.ts", "*/*.tsx",
28
+ "src/**/*.ts", "src/**/*.tsx"
28
29
  ]
29
30
  }
@@ -15,6 +15,7 @@
15
15
  "extends": "./tsconfig.json",
16
16
  "include": [
17
17
  "../../*.ts", "../../*.tsx",
18
- "../../*/*.ts", "../../*/*.tsx"
18
+ "../../*/*.ts", "../../*/*.tsx",
19
+ "../../src/**/*.ts", "../../src/**/*.tsx"
19
20
  ]
20
21
  }
@@ -15,6 +15,7 @@
15
15
  "extends": "./tsconfig.json",
16
16
  "include": [
17
17
  "../../*.ts", "../../*.tsx",
18
- "../../*/*.ts", "../../*/*.tsx"
18
+ "../../*/*.ts", "../../*/*.tsx",
19
+ "../../src/**/*.ts", "../../src/**/*.tsx"
19
20
  ]
20
21
  }