@schemastore/bundleconfig 0.0.5 → 0.0.6

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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/index.d.ts +10 -10
  3. package/package.json +4 -4
package/README.md CHANGED
@@ -8,5 +8,5 @@ This package contains type definitions for bundleconfig.
8
8
  Files were exported from https://github.com/ffflorian/schemastore-updater/tree/main/schemas/bundleconfig.
9
9
 
10
10
  ## Additional Details
11
- * Last updated: Fri, Feb 24, 2023, 11:23:30 GMT
11
+ * Last updated: Thu, Apr 27, 2023, 09:50:34 GMT
12
12
  * Dependencies: none
package/index.d.ts CHANGED
@@ -23,13 +23,13 @@ export type Bundle = {
23
23
  * Produce a .gz file after minification.
24
24
  */
25
25
  gzip?: boolean;
26
- [k: string]: unknown;
26
+ [k: string]: unknown | undefined;
27
27
  };
28
28
  /**
29
29
  * The relative path to the desired output file name.
30
30
  */
31
31
  outputFileName: string;
32
- [k: string]: unknown;
32
+ [k: string]: unknown | undefined;
33
33
  } & Bundle1;
34
34
  export type Bundle1 = JsBundle | CssBundle | HtmlBundle;
35
35
  /**
@@ -39,7 +39,7 @@ export type Bundleconfig = Bundle[];
39
39
 
40
40
  export interface JsBundle {
41
41
  outputFileName?: {
42
- [k: string]: unknown;
42
+ [k: string]: unknown | undefined;
43
43
  };
44
44
  /**
45
45
  * JavaScript only. Set to true to produce a source map.
@@ -50,7 +50,7 @@ export interface JsBundle {
50
50
  */
51
51
  sourceMapRootPath?: string;
52
52
  minify?: AjaxminBaseSettings;
53
- [k: string]: unknown;
53
+ [k: string]: unknown | undefined;
54
54
  }
55
55
  export interface AjaxminBaseSettings {
56
56
  /**
@@ -61,18 +61,18 @@ export interface AjaxminBaseSettings {
61
61
  * SingleLine minifies everything to a single line. MultipleLines breaks the minified code into multiple lines for easier reading.
62
62
  */
63
63
  outputMode?: "multipleLines" | "singleLine" | "none";
64
- [k: string]: unknown;
64
+ [k: string]: unknown | undefined;
65
65
  }
66
66
  export interface CssBundle {
67
67
  outputFileName?: {
68
- [k: string]: unknown;
68
+ [k: string]: unknown | undefined;
69
69
  };
70
70
  minify?: AjaxminBaseSettings;
71
- [k: string]: unknown;
71
+ [k: string]: unknown | undefined;
72
72
  }
73
73
  export interface HtmlBundle {
74
74
  outputFileName?: {
75
- [k: string]: unknown;
75
+ [k: string]: unknown | undefined;
76
76
  };
77
77
  minify?: {
78
78
  /**
@@ -119,7 +119,7 @@ export interface HtmlBundle {
119
119
  * HTML only. Indicating whether to remove quoted attributes when possible.
120
120
  */
121
121
  removeQuotedAttributes?: boolean;
122
- [k: string]: unknown;
122
+ [k: string]: unknown | undefined;
123
123
  };
124
- [k: string]: unknown;
124
+ [k: string]: unknown | undefined;
125
125
  }
package/package.json CHANGED
@@ -7,8 +7,8 @@
7
7
  "name": "@schemastore/bundleconfig",
8
8
  "repository": "https://github.com/ffflorian/schemastore-updater/tree/main/schemas/bundleconfig",
9
9
  "scripts": {},
10
- "typesPublisherContentHash": "31c9c2912414e433fe8ab4b1e3a7900af902854409be227393050184a1d9b1b1",
10
+ "typeScriptVersion": "2.2",
11
11
  "types": "index.d.ts",
12
- "version": "0.0.5",
13
- "typeScriptVersion": "2.2"
14
- }
12
+ "typesPublisherContentHash": "389af74d1684491b58f812e2b9460651cb576715de118f381d6cc29dbce2f464",
13
+ "version": "0.0.6"
14
+ }