weboptimizer 2.0.1349 → 2.0.1351

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "weboptimizer",
3
- "version": "2.0.1349",
3
+ "version": "2.0.1351",
4
4
  "description": "A generic web optimizer, (module) bundler and development environment.",
5
5
  "keywords": [
6
6
  "webpack",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "compilerOptions": {
3
- "declaration": true,
3
+ "declaration": false,
4
4
  "paths": {
5
5
  "@asset/*": ["source/*"],
6
6
  "@cascadingStyleSheet/*": ["source/cascadingStyleSheet/*"],
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "compilerOptions": {
3
- "declaration": false,
3
+ "declaration": true,
4
4
  "paths": {
5
5
  "@asset/*": ["*"],
6
6
  "@cascadingStyleSheet/*": ["*"],
package/type.d.ts CHANGED
@@ -35,8 +35,8 @@ export interface PackageDescriptor {
35
35
  }
36
36
  export type Replacements = Mapping<SecondParameter<string['replace']>>;
37
37
  export type Resolvable = {
38
- [_K in '__evaluate__' | '__execute__' | string]: Resolvable | string | unknown;
39
- };
38
+ [_K in '__evaluate__' | '__execute__']?: Resolvable;
39
+ } & Mapping<unknown>;
40
40
  export interface RedundantRequest {
41
41
  path: string;
42
42
  version: string;
@@ -202,7 +202,7 @@ export interface HTMLConfiguration {
202
202
  filePath: string;
203
203
  options?: PlainObject;
204
204
  postCompileOptions: PlainObject;
205
- request: string | string;
205
+ request: string;
206
206
  use: Array<WebpackLoader> | WebpackLoader;
207
207
  };
208
208
  }