@schemastore/bundleconfig 0.0.5 → 0.0.7

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 +22 -6
  2. package/index.d.ts +10 -10
  3. package/package.json +4 -4
package/README.md CHANGED
@@ -1,12 +1,28 @@
1
- # Installation
2
- > `npm install --save @schemastore/bundleconfig`
1
+ # Type definitions for bundleconfig
2
+
3
+ ## Installation
4
+
5
+ ```
6
+ npm i @schemastore/bundleconfig
7
+ yarn add @schemastore/bundleconfig
8
+ ```
9
+
10
+ ## Summary
3
11
 
4
- # Summary
5
12
  This package contains type definitions for bundleconfig.
6
13
 
7
- ## Details
8
- Files were exported from https://github.com/ffflorian/schemastore-updater/tree/main/schemas/bundleconfig.
14
+ ## Usage
15
+
16
+ ```ts
17
+ import * as bundleconfig from '@schemastore/bundleconfig';
18
+ ```
19
+
20
+ ## Note
21
+
22
+ The definitions were auto-generated by [schemastore-updater](https://github.com/ffflorian/schemastore-updater) using [`json-schema-to-typescript`](https://www.npmjs.com/package/json-schema-to-typescript).
9
23
 
10
24
  ## Additional Details
11
- * Last updated: Fri, Feb 24, 2023, 11:23:30 GMT
25
+
26
+ * [Schema source](https://github.com/SchemaStore/schemastore/tree/master/src/schemas/json/bundleconfig)
27
+ * Last updated: Sat, Jul 19, 2025, 17:01:19 GMT
12
28
  * 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": "31c9c2912414e433fe8ab4b1e3a7900af902854409be227393050184a1d9b1b1",
13
+ "version": "0.0.7"
14
+ }