@schemastore/bundleconfig 0.0.4 → 0.0.5
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/LICENSE +1 -1
- package/README.md +1 -1
- package/index.d.ts +29 -3
- package/package.json +3 -3
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) Florian
|
|
3
|
+
Copyright (c) Florian Imdahl. All rights reserved.
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
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:
|
|
11
|
+
* Last updated: Fri, Feb 24, 2023, 11:23:30 GMT
|
|
12
12
|
* Dependencies: none
|
package/index.d.ts
CHANGED
|
@@ -1,11 +1,37 @@
|
|
|
1
|
-
/*
|
|
1
|
+
/* eslint-disable */
|
|
2
2
|
/**
|
|
3
3
|
* This file was automatically generated by json-schema-to-typescript.
|
|
4
4
|
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
|
|
5
5
|
* and run json-schema-to-typescript to regenerate this file.
|
|
6
6
|
*/
|
|
7
7
|
|
|
8
|
-
export type Bundle =
|
|
8
|
+
export type Bundle = {
|
|
9
|
+
/**
|
|
10
|
+
* Set to true to include the output file in the project. Doesn't work in some Visual Studio project types like ASP.NET Core applications.
|
|
11
|
+
*/
|
|
12
|
+
includeInProject?: boolean;
|
|
13
|
+
/**
|
|
14
|
+
* One or more relative file names or globbing patterns to bundle. Example: "scripts/** /*.js"
|
|
15
|
+
*/
|
|
16
|
+
inputFiles: string[];
|
|
17
|
+
/**
|
|
18
|
+
* Specify options for minification of the output file.
|
|
19
|
+
*/
|
|
20
|
+
minify?: {
|
|
21
|
+
enabled: boolean;
|
|
22
|
+
/**
|
|
23
|
+
* Produce a .gz file after minification.
|
|
24
|
+
*/
|
|
25
|
+
gzip?: boolean;
|
|
26
|
+
[k: string]: unknown;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* The relative path to the desired output file name.
|
|
30
|
+
*/
|
|
31
|
+
outputFileName: string;
|
|
32
|
+
[k: string]: unknown;
|
|
33
|
+
} & Bundle1;
|
|
34
|
+
export type Bundle1 = JsBundle | CssBundle | HtmlBundle;
|
|
9
35
|
/**
|
|
10
36
|
* Schema for bundleconfig.json files
|
|
11
37
|
*/
|
|
@@ -58,7 +84,7 @@ export interface HtmlBundle {
|
|
|
58
84
|
*/
|
|
59
85
|
collapseWhitespace?: boolean;
|
|
60
86
|
/**
|
|
61
|
-
* HTML only. Indicating whether the parsing is
|
|
87
|
+
* HTML only. Indicating whether the parsing is occurring on an HTML fragment, to avoid creating missing tags (like html, body, head).
|
|
62
88
|
*/
|
|
63
89
|
isFragmentOnly?: boolean;
|
|
64
90
|
/**
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"author": "Florian
|
|
2
|
+
"author": "Florian Imdahl <git@ffflorian.de>",
|
|
3
3
|
"dependencies": {},
|
|
4
4
|
"description": "TypeScript definitions for bundleconfig.",
|
|
5
5
|
"license": "MIT",
|
|
@@ -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": "
|
|
10
|
+
"typesPublisherContentHash": "31c9c2912414e433fe8ab4b1e3a7900af902854409be227393050184a1d9b1b1",
|
|
11
11
|
"types": "index.d.ts",
|
|
12
|
-
"version": "0.0.
|
|
12
|
+
"version": "0.0.5",
|
|
13
13
|
"typeScriptVersion": "2.2"
|
|
14
14
|
}
|