keycloakify 9.3.0-rc.0 → 9.3.0
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/README.md +0 -11
- package/bin/constants.d.ts +1 -0
- package/bin/constants.js +2 -1
- package/bin/constants.js.map +1 -1
- package/bin/download-builtin-keycloak-theme.js +28 -1
- package/bin/download-builtin-keycloak-theme.js.map +1 -1
- package/bin/keycloakify/BuildOptions.d.ts +2 -0
- package/bin/keycloakify/BuildOptions.js +8 -60
- package/bin/keycloakify/BuildOptions.js.map +1 -1
- package/bin/keycloakify/generateFtl/generateFtl.js +1 -1
- package/bin/keycloakify/generateFtl/generateFtl.js.map +1 -1
- package/bin/keycloakify/generateJavaStackFiles/bringInAccountV1.js +17 -4
- package/bin/keycloakify/generateJavaStackFiles/bringInAccountV1.js.map +1 -1
- package/bin/keycloakify/generateJavaStackFiles/generateJavaStackFiles.d.ts +1 -0
- package/bin/keycloakify/generateJavaStackFiles/generateJavaStackFiles.js +9 -2
- package/bin/keycloakify/generateJavaStackFiles/generateJavaStackFiles.js.map +1 -1
- package/bin/keycloakify/generateTheme/generateTheme.d.ts +1 -0
- package/bin/keycloakify/generateTheme/generateTheme.js +18 -4
- package/bin/keycloakify/generateTheme/generateTheme.js.map +1 -1
- package/bin/keycloakify/replacers/replaceImportsFromStaticInJsCode.d.ts +0 -11
- package/bin/keycloakify/replacers/replaceImportsFromStaticInJsCode.js +13 -27
- package/bin/keycloakify/replacers/replaceImportsFromStaticInJsCode.js.map +1 -1
- package/bin/promptKeycloakVersion.js +2 -0
- package/bin/promptKeycloakVersion.js.map +1 -1
- package/package.json +3 -17
- package/src/bin/constants.ts +1 -0
- package/src/bin/download-builtin-keycloak-theme.ts +45 -0
- package/src/bin/keycloakify/BuildOptions.ts +5 -13
- package/src/bin/keycloakify/generateFtl/generateFtl.ts +1 -1
- package/src/bin/keycloakify/generateJavaStackFiles/bringInAccountV1.ts +17 -3
- package/src/bin/keycloakify/generateJavaStackFiles/generateJavaStackFiles.ts +11 -2
- package/src/bin/keycloakify/generateTheme/generateTheme.ts +31 -7
- package/src/bin/keycloakify/replacers/replaceImportsFromStaticInJsCode.ts +10 -24
- package/src/bin/promptKeycloakVersion.ts +2 -0
- package/src/tsconfig.json +1 -1
- package/src/vite-plugin/index.ts +0 -1
- package/src/vite-plugin/tsconfig.json +0 -12
- package/src/vite-plugin/vite-plugin.ts +0 -31
- package/vite-plugin/index.d.ts +0 -1
- package/vite-plugin/index.js +0 -18
- package/vite-plugin/index.js.map +0 -1
- package/vite-plugin/tsconfig.tsbuildinfo +0 -1
- package/vite-plugin/vite-plugin.d.ts +0 -2
- package/vite-plugin/vite-plugin.js +0 -49
- package/vite-plugin/vite-plugin.js.map +0 -1
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "keycloakify",
|
3
|
-
"version": "9.3.0
|
3
|
+
"version": "9.3.0",
|
4
4
|
"description": "Create Keycloak themes using React",
|
5
5
|
"repository": {
|
6
6
|
"type": "git",
|
@@ -212,9 +212,6 @@
|
|
212
212
|
"src/tools/useConst.ts",
|
213
213
|
"src/tools/useConstCallback.ts",
|
214
214
|
"src/tsconfig.json",
|
215
|
-
"src/vite-plugin/index.ts",
|
216
|
-
"src/vite-plugin/tsconfig.json",
|
217
|
-
"src/vite-plugin/vite-plugin.ts",
|
218
215
|
"account/Fallback.d.ts",
|
219
216
|
"account/Fallback.js",
|
220
217
|
"account/Fallback.js.map",
|
@@ -895,9 +892,6 @@
|
|
895
892
|
"src/tools/useConst.ts",
|
896
893
|
"src/tools/useConstCallback.ts",
|
897
894
|
"src/tsconfig.json",
|
898
|
-
"src/vite-plugin/index.ts",
|
899
|
-
"src/vite-plugin/tsconfig.json",
|
900
|
-
"src/vite-plugin/vite-plugin.ts",
|
901
895
|
"tools/AndByDiscriminatingKey.d.ts",
|
902
896
|
"tools/AndByDiscriminatingKey.js",
|
903
897
|
"tools/AndByDiscriminatingKey.js.map",
|
@@ -945,14 +939,7 @@
|
|
945
939
|
"tools/useConst.js.map",
|
946
940
|
"tools/useConstCallback.d.ts",
|
947
941
|
"tools/useConstCallback.js",
|
948
|
-
"tools/useConstCallback.js.map"
|
949
|
-
"vite-plugin/index.d.ts",
|
950
|
-
"vite-plugin/index.js",
|
951
|
-
"vite-plugin/index.js.map",
|
952
|
-
"vite-plugin/tsconfig.tsbuildinfo",
|
953
|
-
"vite-plugin/vite-plugin.d.ts",
|
954
|
-
"vite-plugin/vite-plugin.js",
|
955
|
-
"vite-plugin/vite-plugin.js.map"
|
942
|
+
"tools/useConstCallback.js.map"
|
956
943
|
],
|
957
944
|
"keywords": [
|
958
945
|
"bluehats",
|
@@ -1006,8 +993,7 @@
|
|
1006
993
|
"tss-react": "^4.8.2",
|
1007
994
|
"typescript": "^4.9.1-beta",
|
1008
995
|
"vitest": "^0.29.8",
|
1009
|
-
"zod-to-json-schema": "^3.20.4"
|
1010
|
-
"vite": "^5.0.12"
|
996
|
+
"zod-to-json-schema": "^3.20.4"
|
1011
997
|
},
|
1012
998
|
"dependencies": {
|
1013
999
|
"@babel/generator": "^7.22.9",
|
package/src/bin/constants.ts
CHANGED
@@ -3,6 +3,7 @@ export const resources_common = "resources-common";
|
|
3
3
|
export const lastKeycloakVersionWithAccountV1 = "21.1.2";
|
4
4
|
|
5
5
|
export const themeTypes = ["login", "account"] as const;
|
6
|
+
export const retrocompatPostfix = "_retrocompat";
|
6
7
|
export const accountV1 = "account-v1";
|
7
8
|
|
8
9
|
export type ThemeType = (typeof themeTypes)[number];
|
@@ -27,6 +27,51 @@ export async function downloadBuiltinKeycloakTheme(params: { keycloakVersion: st
|
|
27
27
|
"preCacheTransform": {
|
28
28
|
"actionCacheId": "npm install and build",
|
29
29
|
"action": async ({ destDirPath }) => {
|
30
|
+
fix_account_css: {
|
31
|
+
const accountCssFilePath = pathJoin(destDirPath, "keycloak", "account", "resources", "css", "account.css");
|
32
|
+
|
33
|
+
if (!fs.existsSync(accountCssFilePath)) {
|
34
|
+
break fix_account_css;
|
35
|
+
}
|
36
|
+
|
37
|
+
fs.writeFileSync(
|
38
|
+
accountCssFilePath,
|
39
|
+
Buffer.from(fs.readFileSync(accountCssFilePath).toString("utf8").replace("top: -34px;", "top: -34px !important;"), "utf8")
|
40
|
+
);
|
41
|
+
}
|
42
|
+
|
43
|
+
fix_account_topt: {
|
44
|
+
const totpFtlFilePath = pathJoin(destDirPath, "base", "account", "totp.ftl");
|
45
|
+
|
46
|
+
if (!fs.existsSync(totpFtlFilePath)) {
|
47
|
+
break fix_account_topt;
|
48
|
+
}
|
49
|
+
|
50
|
+
fs.writeFileSync(
|
51
|
+
totpFtlFilePath,
|
52
|
+
Buffer.from(
|
53
|
+
fs
|
54
|
+
.readFileSync(totpFtlFilePath)
|
55
|
+
.toString("utf8")
|
56
|
+
.replace(
|
57
|
+
[
|
58
|
+
" <#list totp.policy.supportedApplications as app>",
|
59
|
+
" <li>${app}</li>",
|
60
|
+
" </#list>"
|
61
|
+
].join("\n"),
|
62
|
+
[
|
63
|
+
" <#if totp.policy.supportedApplications?has_content>",
|
64
|
+
" <#list totp.policy.supportedApplications as app>",
|
65
|
+
" <li>${app}</li>",
|
66
|
+
" </#list>",
|
67
|
+
" </#if>"
|
68
|
+
].join("\n")
|
69
|
+
),
|
70
|
+
"utf8"
|
71
|
+
)
|
72
|
+
);
|
73
|
+
}
|
74
|
+
|
30
75
|
install_common_node_modules: {
|
31
76
|
const commonResourcesDirPath = pathJoin(destDirPath, "keycloak", "common", "resources");
|
32
77
|
|
@@ -3,7 +3,6 @@ import { getParsedPackageJson } from "./parsedPackageJson";
|
|
3
3
|
import { join as pathJoin } from "path";
|
4
4
|
import parseArgv from "minimist";
|
5
5
|
import { getAbsoluteAndInOsFormatPath } from "../tools/getAbsoluteAndInOsFormatPath";
|
6
|
-
import * as fs from "fs";
|
7
6
|
|
8
7
|
/** Consolidated build option gathered form CLI arguments and config in package.json */
|
9
8
|
export type BuildOptions = {
|
@@ -16,6 +15,7 @@ export type BuildOptions = {
|
|
16
15
|
doCreateJar: boolean;
|
17
16
|
loginThemeResourcesFromKeycloakVersion: string;
|
18
17
|
reactAppRootDirPath: string;
|
18
|
+
/** Directory of your built react project. Defaults to {cwd}/build */
|
19
19
|
reactAppBuildDirPath: string;
|
20
20
|
/** Directory that keycloakify outputs to. Defaults to {cwd}/build_keycloak */
|
21
21
|
keycloakifyBuildDirPath: string;
|
@@ -24,6 +24,7 @@ export type BuildOptions = {
|
|
24
24
|
/** If your app is hosted under a subpath, it's the case in CRA if you have "homepage": "https://example.com/my-app" in your package.json
|
25
25
|
* In this case the urlPathname will be "/my-app/" */
|
26
26
|
urlPathname: string | undefined;
|
27
|
+
doBuildRetrocompatAccountTheme: boolean;
|
27
28
|
};
|
28
29
|
|
29
30
|
export function readBuildOptions(params: { reactAppRootDirPath: string; processArgv: string[] }): BuildOptions {
|
@@ -106,17 +107,7 @@ export function readBuildOptions(params: { reactAppRootDirPath: string; processA
|
|
106
107
|
});
|
107
108
|
}
|
108
109
|
|
109
|
-
|
110
|
-
const out = pathJoin(reactAppRootDirPath, name);
|
111
|
-
|
112
|
-
if (!fs.existsSync(out)) {
|
113
|
-
continue;
|
114
|
-
}
|
115
|
-
|
116
|
-
return out;
|
117
|
-
}
|
118
|
-
|
119
|
-
throw new Error("Please use the reactAppBuildDirPath option to specify the build directory of your react app");
|
110
|
+
return pathJoin(reactAppRootDirPath, "build");
|
120
111
|
})(),
|
121
112
|
"keycloakifyBuildDirPath": (() => {
|
122
113
|
const { keycloakifyBuildDirPath } = parsedPackageJson.keycloakify ?? {};
|
@@ -160,6 +151,7 @@ export function readBuildOptions(params: { reactAppRootDirPath: string; processA
|
|
160
151
|
|
161
152
|
const out = url.pathname.replace(/([^/])$/, "$1/");
|
162
153
|
return out === "/" ? undefined : out;
|
163
|
-
})()
|
154
|
+
})(),
|
155
|
+
"doBuildRetrocompatAccountTheme": parsedPackageJson.keycloakify?.doBuildRetrocompatAccountTheme ?? true
|
164
156
|
};
|
165
157
|
}
|
@@ -37,7 +37,7 @@ export function generateFtlFilesCodeFactory(params: {
|
|
37
37
|
|
38
38
|
assert(jsCode !== null);
|
39
39
|
|
40
|
-
const { fixedJsCode } = replaceImportsFromStaticInJsCode({ jsCode
|
40
|
+
const { fixedJsCode } = replaceImportsFromStaticInJsCode({ jsCode });
|
41
41
|
|
42
42
|
$(element).text(fixedJsCode);
|
43
43
|
});
|
@@ -38,7 +38,21 @@ export async function bringInAccountV1(params: { buildOptions: BuildOptionsLike
|
|
38
38
|
|
39
39
|
const commonResourceFilePaths = [
|
40
40
|
"node_modules/patternfly/dist/css/patternfly.min.css",
|
41
|
-
"node_modules/patternfly/dist/css/patternfly-additions.min.css"
|
41
|
+
"node_modules/patternfly/dist/css/patternfly-additions.min.css",
|
42
|
+
...[
|
43
|
+
"OpenSans-Light-webfont.woff2",
|
44
|
+
"OpenSans-Regular-webfont.woff2",
|
45
|
+
"OpenSans-Bold-webfont.woff2",
|
46
|
+
"OpenSans-Semibold-webfont.woff2",
|
47
|
+
"OpenSans-Bold-webfont.woff",
|
48
|
+
"OpenSans-Light-webfont.woff",
|
49
|
+
"OpenSans-Regular-webfont.woff",
|
50
|
+
"OpenSans-Semibold-webfont.woff",
|
51
|
+
"OpenSans-Regular-webfont.ttf",
|
52
|
+
"OpenSans-Light-webfont.ttf",
|
53
|
+
"OpenSans-Semibold-webfont.ttf",
|
54
|
+
"OpenSans-Bold-webfont.ttf"
|
55
|
+
].map(path => `node_modules/patternfly/dist/fonts/${path}`)
|
42
56
|
];
|
43
57
|
|
44
58
|
for (const relativeFilePath of commonResourceFilePaths.map(path => pathJoin(...path.split("/")))) {
|
@@ -49,7 +63,7 @@ export async function bringInAccountV1(params: { buildOptions: BuildOptionsLike
|
|
49
63
|
fs.cpSync(pathJoin(builtinKeycloakThemeTmpDirPath, "keycloak", "common", "resources", relativeFilePath), destFilePath);
|
50
64
|
}
|
51
65
|
|
52
|
-
const resourceFilePaths = ["css/account.css"];
|
66
|
+
const resourceFilePaths = ["css/account.css", "img/icon-sidebar-active.png", "img/logo.png"];
|
53
67
|
|
54
68
|
for (const relativeFilePath of resourceFilePaths.map(path => pathJoin(...path.split("/")))) {
|
55
69
|
const destFilePath = pathJoin(accountV1DirPath, "resources", relativeFilePath);
|
@@ -69,7 +83,7 @@ export async function bringInAccountV1(params: { buildOptions: BuildOptionsLike
|
|
69
83
|
"",
|
70
84
|
"locales=ar,ca,cs,da,de,en,es,fr,fi,hu,it,ja,lt,nl,no,pl,pt-BR,ru,sk,sv,tr,zh-CN",
|
71
85
|
"",
|
72
|
-
"styles=" + [...resourceFilePaths, ...commonResourceFilePaths.map(path => `
|
86
|
+
"styles=" + [...resourceFilePaths, ...commonResourceFilePaths.map(path => `resources-common/${path}`)].join(" "),
|
73
87
|
"",
|
74
88
|
"##### css classes for form buttons",
|
75
89
|
"# main class used for all buttons",
|
@@ -3,7 +3,7 @@ import { join as pathJoin, dirname as pathDirname } from "path";
|
|
3
3
|
import { assert } from "tsafe/assert";
|
4
4
|
import { Reflect } from "tsafe/Reflect";
|
5
5
|
import type { BuildOptions } from "../BuildOptions";
|
6
|
-
import { type ThemeType, accountV1 } from "../../constants";
|
6
|
+
import { type ThemeType, retrocompatPostfix, accountV1 } from "../../constants";
|
7
7
|
import { bringInAccountV1 } from "./bringInAccountV1";
|
8
8
|
|
9
9
|
export type BuildOptionsLike = {
|
@@ -13,6 +13,7 @@ export type BuildOptionsLike = {
|
|
13
13
|
cacheDirPath: string;
|
14
14
|
keycloakifyBuildDirPath: string;
|
15
15
|
themeNames: string[];
|
16
|
+
doBuildRetrocompatAccountTheme: boolean;
|
16
17
|
};
|
17
18
|
|
18
19
|
{
|
@@ -113,7 +114,15 @@ export async function generateJavaStackFiles(params: {
|
|
113
114
|
"types": Object.entries(implementedThemeTypes)
|
114
115
|
.filter(([, isImplemented]) => isImplemented)
|
115
116
|
.map(([themeType]) => themeType)
|
116
|
-
}
|
117
|
+
},
|
118
|
+
...(!implementedThemeTypes.account || !buildOptions.doBuildRetrocompatAccountTheme
|
119
|
+
? []
|
120
|
+
: [
|
121
|
+
{
|
122
|
+
"name": `${themeName}${retrocompatPostfix}`,
|
123
|
+
"types": ["account"]
|
124
|
+
}
|
125
|
+
])
|
117
126
|
])
|
118
127
|
.flat()
|
119
128
|
]
|
@@ -1,10 +1,10 @@
|
|
1
1
|
import { transformCodebase } from "../../tools/transformCodebase";
|
2
2
|
import * as fs from "fs";
|
3
|
-
import { join as pathJoin, resolve as pathResolve } from "path";
|
3
|
+
import { join as pathJoin, basename as pathBasename, resolve as pathResolve } from "path";
|
4
4
|
import { replaceImportsFromStaticInJsCode } from "../replacers/replaceImportsFromStaticInJsCode";
|
5
5
|
import { replaceImportsInCssCode } from "../replacers/replaceImportsInCssCode";
|
6
6
|
import { generateFtlFilesCodeFactory, loginThemePageIds, accountThemePageIds } from "../generateFtl";
|
7
|
-
import { themeTypes, type ThemeType, lastKeycloakVersionWithAccountV1, keycloak_resources, accountV1 } from "../../constants";
|
7
|
+
import { themeTypes, type ThemeType, lastKeycloakVersionWithAccountV1, keycloak_resources, retrocompatPostfix, accountV1 } from "../../constants";
|
8
8
|
import { isInside } from "../../tools/isInside";
|
9
9
|
import type { BuildOptions } from "../BuildOptions";
|
10
10
|
import { assert, type Equals } from "tsafe/assert";
|
@@ -22,6 +22,7 @@ export type BuildOptionsLike = {
|
|
22
22
|
keycloakifyBuildDirPath: string;
|
23
23
|
reactAppBuildDirPath: string;
|
24
24
|
cacheDirPath: string;
|
25
|
+
doBuildRetrocompatAccountTheme: boolean;
|
25
26
|
};
|
26
27
|
|
27
28
|
assert<BuildOptions extends BuildOptionsLike ? true : false>();
|
@@ -35,9 +36,17 @@ export async function generateTheme(params: {
|
|
35
36
|
}): Promise<void> {
|
36
37
|
const { themeName, themeSrcDirPath, keycloakifySrcDirPath, buildOptions, keycloakifyVersion } = params;
|
37
38
|
|
38
|
-
const getThemeTypeDirPath = (params: { themeType: ThemeType | "email" }) => {
|
39
|
-
const { themeType } = params;
|
40
|
-
return pathJoin(
|
39
|
+
const getThemeTypeDirPath = (params: { themeType: ThemeType | "email"; isRetrocompat?: true }) => {
|
40
|
+
const { themeType, isRetrocompat = false } = params;
|
41
|
+
return pathJoin(
|
42
|
+
buildOptions.keycloakifyBuildDirPath,
|
43
|
+
"src",
|
44
|
+
"main",
|
45
|
+
"resources",
|
46
|
+
"theme",
|
47
|
+
`${themeName}${isRetrocompat ? retrocompatPostfix : ""}`,
|
48
|
+
themeType
|
49
|
+
);
|
41
50
|
};
|
42
51
|
|
43
52
|
let allCssGlobalsToDefine: Record<string, string> = {};
|
@@ -93,8 +102,7 @@ export async function generateTheme(params: {
|
|
93
102
|
|
94
103
|
if (/\.js?$/i.test(filePath)) {
|
95
104
|
const { fixedJsCode } = replaceImportsFromStaticInJsCode({
|
96
|
-
"jsCode": sourceCode.toString("utf8")
|
97
|
-
"bundler": "vite"
|
105
|
+
"jsCode": sourceCode.toString("utf8")
|
98
106
|
});
|
99
107
|
|
100
108
|
return { "modifiedSourceCode": Buffer.from(fixedJsCode, "utf8") };
|
@@ -193,6 +201,22 @@ export async function generateTheme(params: {
|
|
193
201
|
"utf8"
|
194
202
|
)
|
195
203
|
);
|
204
|
+
|
205
|
+
if (themeType === "account" && buildOptions.doBuildRetrocompatAccountTheme) {
|
206
|
+
transformCodebase({
|
207
|
+
"srcDirPath": themeTypeDirPath,
|
208
|
+
"destDirPath": getThemeTypeDirPath({ themeType, "isRetrocompat": true }),
|
209
|
+
"transformSourceCode": ({ filePath, sourceCode }) => {
|
210
|
+
if (pathBasename(filePath) === "theme.properties") {
|
211
|
+
return {
|
212
|
+
"modifiedSourceCode": Buffer.from(sourceCode.toString("utf8").replace(`parent=${accountV1}`, "parent=keycloak"), "utf8")
|
213
|
+
};
|
214
|
+
}
|
215
|
+
|
216
|
+
return { "modifiedSourceCode": sourceCode };
|
217
|
+
}
|
218
|
+
});
|
219
|
+
}
|
196
220
|
}
|
197
221
|
|
198
222
|
email: {
|
@@ -1,32 +1,18 @@
|
|
1
1
|
import { ftlValuesGlobalName } from "../ftlValuesGlobalName";
|
2
2
|
|
3
|
-
export function replaceImportsFromStaticInJsCode(params: { jsCode: string
|
4
|
-
|
5
|
-
|
6
|
-
const { fixedJsCode } = (() => {
|
7
|
-
switch (params.bundler) {
|
8
|
-
case "vite":
|
9
|
-
return replaceImportsFromStaticInJsCode_vite({ jsCode });
|
10
|
-
case "webpack":
|
11
|
-
return replaceImportsFromStaticInJsCode_webpack({ jsCode });
|
12
|
-
}
|
13
|
-
})();
|
14
|
-
|
15
|
-
return { fixedJsCode };
|
16
|
-
}
|
17
|
-
|
18
|
-
export function replaceImportsFromStaticInJsCode_vite(params: { jsCode: string }): { fixedJsCode: string } {
|
19
|
-
const { jsCode } = params;
|
3
|
+
export function replaceImportsFromStaticInJsCode(params: { jsCode: string }): { fixedJsCode: string } {
|
4
|
+
/*
|
5
|
+
NOTE:
|
20
6
|
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
7
|
+
When we have urlOrigin defined it means that
|
8
|
+
we are building with --external-assets
|
9
|
+
so we have to make sur that the fixed js code will run
|
10
|
+
inside and outside keycloak.
|
25
11
|
|
26
|
-
|
27
|
-
|
12
|
+
When urlOrigin isn't defined we can assume the fixedJsCode
|
13
|
+
will always run in keycloak context.
|
14
|
+
*/
|
28
15
|
|
29
|
-
export function replaceImportsFromStaticInJsCode_webpack(params: { jsCode: string }): { fixedJsCode: string } {
|
30
16
|
const { jsCode } = params;
|
31
17
|
|
32
18
|
const getReplaceArgs = (language: "js" | "css"): Parameters<typeof String.prototype.replace> => [
|
@@ -1,6 +1,7 @@
|
|
1
1
|
import { getLatestsSemVersionedTagFactory } from "./tools/octokit-addons/getLatestsSemVersionedTag";
|
2
2
|
import { Octokit } from "@octokit/rest";
|
3
3
|
import cliSelect from "cli-select";
|
4
|
+
import { lastKeycloakVersionWithAccountV1 } from "./constants";
|
4
5
|
|
5
6
|
export async function promptKeycloakVersion() {
|
6
7
|
const { getLatestsSemVersionedTag } = (() => {
|
@@ -26,6 +27,7 @@ export async function promptKeycloakVersion() {
|
|
26
27
|
"owner": "keycloak",
|
27
28
|
"repo": "keycloak"
|
28
29
|
}).then(arr => arr.map(({ tag }) => tag))),
|
30
|
+
lastKeycloakVersionWithAccountV1,
|
29
31
|
"11.0.3"
|
30
32
|
];
|
31
33
|
|
package/src/tsconfig.json
CHANGED
package/src/vite-plugin/index.ts
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
export * from "./vite-plugin";
|
@@ -1,12 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"extends": "../../tsproject.json",
|
3
|
-
"compilerOptions": {
|
4
|
-
"module": "CommonJS",
|
5
|
-
"target": "ES5",
|
6
|
-
"esModuleInterop": true,
|
7
|
-
"lib": ["es2015", "ES2019.Object"],
|
8
|
-
"outDir": "../../dist/vite-plugin",
|
9
|
-
"rootDir": ".",
|
10
|
-
"skipLibCheck": true
|
11
|
-
}
|
12
|
-
}
|
@@ -1,31 +0,0 @@
|
|
1
|
-
// index.ts
|
2
|
-
|
3
|
-
import type { Plugin, ResolvedConfig } from "vite";
|
4
|
-
import * as fs from "fs";
|
5
|
-
|
6
|
-
console.log("Hello world!");
|
7
|
-
|
8
|
-
export function keycloakify(): Plugin {
|
9
|
-
let config: ResolvedConfig;
|
10
|
-
|
11
|
-
return {
|
12
|
-
"name": "keycloakify",
|
13
|
-
|
14
|
-
"configResolved": resolvedConfig => {
|
15
|
-
// Store the resolved config
|
16
|
-
config = resolvedConfig;
|
17
|
-
|
18
|
-
console.log("========> configResolved", config);
|
19
|
-
|
20
|
-
fs.writeFileSync("/Users/joseph/github/keycloakify-starter/log.txt", Buffer.from("Hello World", "utf8"));
|
21
|
-
},
|
22
|
-
|
23
|
-
"buildStart": () => {
|
24
|
-
console.log("Public Directory:", config.publicDir); // Path to the public directory
|
25
|
-
console.log("Dist Directory:", config.build.outDir); // Path to the dist directory
|
26
|
-
console.log("Assets Directory:", config.build.assetsDir); // Path to the assets directory within outDir
|
27
|
-
}
|
28
|
-
|
29
|
-
// ... other hooks
|
30
|
-
};
|
31
|
-
}
|
package/vite-plugin/index.d.ts
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
export * from "./vite-plugin";
|
package/vite-plugin/index.js
DELETED
@@ -1,18 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
3
|
-
if (k2 === undefined) k2 = k;
|
4
|
-
var desc = Object.getOwnPropertyDescriptor(m, k);
|
5
|
-
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
6
|
-
desc = { enumerable: true, get: function() { return m[k]; } };
|
7
|
-
}
|
8
|
-
Object.defineProperty(o, k2, desc);
|
9
|
-
}) : (function(o, m, k, k2) {
|
10
|
-
if (k2 === undefined) k2 = k;
|
11
|
-
o[k2] = m[k];
|
12
|
-
}));
|
13
|
-
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
14
|
-
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
15
|
-
};
|
16
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
17
|
-
__exportStar(require("./vite-plugin"), exports);
|
18
|
-
//# sourceMappingURL=index.js.map
|
package/vite-plugin/index.js.map
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/vite-plugin/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,gDAA8B"}
|
@@ -1 +0,0 @@
|
|
1
|
-
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.es2020.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/dom-events.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/rollup/node_modules/@types/estree/index.d.ts","../../node_modules/rollup/dist/rollup.d.ts","../../node_modules/vite/types/hmrPayload.d.ts","../../node_modules/vite/types/customEvent.d.ts","../../node_modules/esbuild/lib/main.d.ts","../../node_modules/source-map-js/source-map.d.ts","../../node_modules/vite/node_modules/postcss/lib/previous-map.d.ts","../../node_modules/vite/node_modules/postcss/lib/input.d.ts","../../node_modules/vite/node_modules/postcss/lib/css-syntax-error.d.ts","../../node_modules/vite/node_modules/postcss/lib/declaration.d.ts","../../node_modules/vite/node_modules/postcss/lib/root.d.ts","../../node_modules/vite/node_modules/postcss/lib/warning.d.ts","../../node_modules/vite/node_modules/postcss/lib/lazy-result.d.ts","../../node_modules/vite/node_modules/postcss/lib/no-work-result.d.ts","../../node_modules/vite/node_modules/postcss/lib/processor.d.ts","../../node_modules/vite/node_modules/postcss/lib/result.d.ts","../../node_modules/vite/node_modules/postcss/lib/document.d.ts","../../node_modules/vite/node_modules/postcss/lib/rule.d.ts","../../node_modules/vite/node_modules/postcss/lib/node.d.ts","../../node_modules/vite/node_modules/postcss/lib/comment.d.ts","../../node_modules/vite/node_modules/postcss/lib/container.d.ts","../../node_modules/vite/node_modules/postcss/lib/at-rule.d.ts","../../node_modules/vite/node_modules/postcss/lib/list.d.ts","../../node_modules/vite/node_modules/postcss/lib/postcss.d.ts","../../node_modules/vite/types/importGlob.d.ts","../../node_modules/vite/types/metadata.d.ts","../../node_modules/vite/dist/node/index.d.ts","../../src/vite-plugin/vite-plugin.ts","../../src/vite-plugin/index.ts","../../node_modules/@types/aria-query/index.d.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@types/chai/index.d.ts","../../node_modules/@types/chai-subset/index.d.ts","../../node_modules/@types/eslint/helpers.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/eslint/index.d.ts","../../node_modules/@types/eslint-scope/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/unist/index.d.ts","../../node_modules/@types/hast/index.d.ts","../../node_modules/@types/html-minifier-terser/index.d.ts","../../node_modules/@types/is-function/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/@types/lodash/common/common.d.ts","../../node_modules/@types/lodash/common/array.d.ts","../../node_modules/@types/lodash/common/collection.d.ts","../../node_modules/@types/lodash/common/date.d.ts","../../node_modules/@types/lodash/common/function.d.ts","../../node_modules/@types/lodash/common/lang.d.ts","../../node_modules/@types/lodash/common/math.d.ts","../../node_modules/@types/lodash/common/number.d.ts","../../node_modules/@types/lodash/common/object.d.ts","../../node_modules/@types/lodash/common/seq.d.ts","../../node_modules/@types/lodash/common/string.d.ts","../../node_modules/@types/lodash/common/util.d.ts","../../node_modules/@types/lodash/index.d.ts","../../node_modules/form-data/index.d.ts","../../node_modules/@types/node-fetch/externals.d.ts","../../node_modules/@types/node-fetch/index.d.ts","../../node_modules/@types/ssri/index.d.ts","../../node_modules/@types/retry/index.d.ts","../../node_modules/@types/make-fetch-happen/index.d.ts","../../node_modules/@types/mdast/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/npmlog/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/pretty-hrtime/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/react/ts5.0/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/scheduler/tracing.d.ts","../../node_modules/@types/react/ts5.0/index.d.ts","../../node_modules/@types/react-dom/index.d.ts","../../node_modules/@types/scheduler/index.d.ts","../../node_modules/@types/semver/classes/semver.d.ts","../../node_modules/@types/semver/functions/parse.d.ts","../../node_modules/@types/semver/functions/valid.d.ts","../../node_modules/@types/semver/functions/clean.d.ts","../../node_modules/@types/semver/functions/inc.d.ts","../../node_modules/@types/semver/functions/diff.d.ts","../../node_modules/@types/semver/functions/major.d.ts","../../node_modules/@types/semver/functions/minor.d.ts","../../node_modules/@types/semver/functions/patch.d.ts","../../node_modules/@types/semver/functions/prerelease.d.ts","../../node_modules/@types/semver/functions/compare.d.ts","../../node_modules/@types/semver/functions/rcompare.d.ts","../../node_modules/@types/semver/functions/compare-loose.d.ts","../../node_modules/@types/semver/functions/compare-build.d.ts","../../node_modules/@types/semver/functions/sort.d.ts","../../node_modules/@types/semver/functions/rsort.d.ts","../../node_modules/@types/semver/functions/gt.d.ts","../../node_modules/@types/semver/functions/lt.d.ts","../../node_modules/@types/semver/functions/eq.d.ts","../../node_modules/@types/semver/functions/neq.d.ts","../../node_modules/@types/semver/functions/gte.d.ts","../../node_modules/@types/semver/functions/lte.d.ts","../../node_modules/@types/semver/functions/cmp.d.ts","../../node_modules/@types/semver/functions/coerce.d.ts","../../node_modules/@types/semver/classes/comparator.d.ts","../../node_modules/@types/semver/classes/range.d.ts","../../node_modules/@types/semver/functions/satisfies.d.ts","../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../node_modules/@types/semver/ranges/min-version.d.ts","../../node_modules/@types/semver/ranges/valid.d.ts","../../node_modules/@types/semver/ranges/outside.d.ts","../../node_modules/@types/semver/ranges/gtr.d.ts","../../node_modules/@types/semver/ranges/ltr.d.ts","../../node_modules/@types/semver/ranges/intersects.d.ts","../../node_modules/@types/semver/ranges/simplify.d.ts","../../node_modules/@types/semver/ranges/subset.d.ts","../../node_modules/@types/semver/internals/identifiers.d.ts","../../node_modules/@types/semver/index.d.ts","../../node_modules/@types/source-list-map/index.d.ts","../../node_modules/@types/tapable/index.d.ts","../../node_modules/source-map/source-map.d.ts","../../node_modules/@types/uglify-js/index.d.ts","../../node_modules/anymatch/index.d.ts","../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts","../../node_modules/@types/webpack-sources/lib/Source.d.ts","../../node_modules/@types/webpack-sources/lib/CompatSource.d.ts","../../node_modules/@types/webpack-sources/lib/ConcatSource.d.ts","../../node_modules/@types/webpack-sources/lib/OriginalSource.d.ts","../../node_modules/@types/webpack-sources/lib/PrefixSource.d.ts","../../node_modules/@types/webpack-sources/lib/RawSource.d.ts","../../node_modules/@types/webpack-sources/lib/ReplaceSource.d.ts","../../node_modules/@types/webpack-sources/lib/SizeOnlySource.d.ts","../../node_modules/@types/webpack-sources/lib/SourceMapSource.d.ts","../../node_modules/@types/webpack-sources/lib/index.d.ts","../../node_modules/@types/webpack-sources/lib/CachedSource.d.ts","../../node_modules/@types/webpack-sources/index.d.ts","../../node_modules/@types/webpack/index.d.ts","../../node_modules/@types/webpack-env/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts","../../node_modules/@types/yauzl/index.d.ts","../../node_modules/@types/yazl/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3aafcb693fe5b5c3bd277bd4c3a617b53db474fe498fc5df067c5603b1eebde7","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"57b6cb95756d1fe3bfeb20205de27b0c5406e4a86e130c6dfa6bd92af641e09d","affectsGlobalScope":true},"11e2d554398d2bd460e7d06b2fa5827a297c8acfbe00b4f894a224ac0862857f",{"version":"e193e634a99c9c1d71f1c6e4e1567a4a73584328d21ea02dd5cddbaad6693f61","affectsGlobalScope":true},"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","e596c9bb2f29a2699fdd4ae89139612652245192f67f45617c5a4b20832aaae9","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","1cdcfc1f624d6c08aa12c73935f6e13f095919cd99edf95752951796eb225729","216717f17c095cde1dc19375e1ab3af0a4a485355860c077a4f9d6ea59fab5b5","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"80473bd0dd90ca1e166514c2dfead9d5803f9c51418864ca35abbeec6e6847e1","1c84b46267610a34028edfd0d035509341751262bac1062857f3c8df7aff7153","e6c86d83bd526c8bdb5d0bf935b8e72ce983763d600743f74d812fdf4abf4df6","a3d541d303ee505053f5dcbf9fafb65cac3d5631037501cd616195863a6c5740","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e630e5528e899219ae319e83bef54bf3bcb91b01d76861ecf881e8e614b167f0","affectsGlobalScope":true},"bcebb922784739bdb34c18ee51095d25a92b560c78ccd2eaacd6bd00f7443d83","7ee6ed878c4528215c82b664fe0cfe80e8b4da6c0d4cc80869367868774db8b1","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"0715e4cd28ad471b2a93f3e552ff51a3ae423417a01a10aa1d3bc7c6b95059d6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","7d55d78cd47cf5280643b53434b16c2d9d11d144126932759fbdd51da525eec4","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","f69ff39996a61a0dd10f4bce73272b52e8024a4d58b13ab32bf4712909d0a2b7",{"version":"3c4ba1dd9b12ffa284b565063108f2f031d150ea15b8fafbdc17f5d2a07251f3","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","c4577fb855ca259bdbf3ea663ca73988ce5f84251a92b4aef80a1f4122b6f98e","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"ff07a9a03c65732ccc59b3c65bc584173da093bd563a6565411c01f5703bd3cb","affectsGlobalScope":true},"6de4a219df57d2b27274d59b67708f13c2cbf7ed211abe57d8f9ab8b25cde776","0fe8985a28f82c450a04a6edf1279d7181c0893f37da7d2a27f8efd4fd5edb03","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"d8d555f3d607ecaa18d55de6995ea8f206342ecc93305919eac945c7c78c78c6","ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea",{"version":"bf1b2e7c6fc81ec0118c8264c4d004458e60ed8af4c16b3267885a932e2a6c11","affectsGlobalScope":true},"bcb6ea18f23dae2c48459d7b86d3adccd6898f824fcbf9da08b935f559896580","1363ba7d52f2353d0c4306d0ecdaf171bf4509c0148842f9fd8d3986c098a2eb","4ac282004b0038c107795523475e549e6b357a347831cc635eb08360d63c1468","858d0d831826c6eb563df02f7db71c90e26deadd0938652096bea3cc14899700","8885cf05f3e2abf117590bbb951dcf6359e3e5ac462af1c901cfd24c6a6472e2","18c04c22baee54d13b505fa6e8bcd4223f8ba32beee80ec70e6cac972d1cc9a6","5e92a2e8ba5cbcdfd9e51428f94f7bd0ab6e45c9805b1c9552b64abaffad3ce3","53ca39fe70232633759dd3006fc5f467ecda540252c0c819ab53e9f6ad97b226","e7174a839d4732630d904a8b488f22380e5bcf1d6405d1f59614e10795eca17d","7ec359bbc29b69d4063fe7dad0baaf35f1856f914db16b3f4f6e3e1bca4099fa","b9261ac3e9944d3d72c5ee4cf888ad35d9743a5563405c6963c4e43ee3708ca4","c84fd54e8400def0d1ef1569cafd02e9f39a622df9fa69b57ccc82128856b916","c7a38c1ef8d6ae4bf252be67bd9a8b012b2cdea65bd6225a3d1a726c4f0d52b6","e773630f8772a06e82d97046fc92da59ada8414c61689894fff0155dd08f102c","74f2815d9e1b8530120dcad409ed5f706df8513c4d93e99fc6213997aa4dd60e","9d1f36ccd354f2e286b909bf01d626a3a28dd6590770303a18afa7796fe50db9","c4bc6a572f9d763ac7fa0d839be3de80273a67660e2002e3225e00ef716b4f37","106e607866d6c3e9a497a696ac949c3e2ec46b6e7dda35aabe76100bf740833b","8a6c755dc994d16c4e072bba010830fa2500d98ff322c442c7c91488d160a10d","d4514d11e7d11c53da7d43b948654d6e608a3d93d666a36f8d01e18ece04c9bd","3d65182eff7bbb16de1a69e17651c51083f740af11a1a92359be6dab939e8bcf","670ddaf1f1b881abaa1cc28236430d86b691affbeaefd66b3ee1db31fdfb8dba","21092de52736dc30f478fe5f1e88ad1b545ce4b276062999302aa65b30a6787a","8f07f2b6514744ac96e51d7cb8518c0f4de319471237ea10cf688b8d0e9d0225","304df321f3b710c2a0951f2c9cddfe34986e4aeb6994fa4f9d21efd06835abec",{"version":"20360ebb72e1b8eaf4fffb28e7def0e36bd88c35d862dda009a66c70e39bfd99","signature":"734cfb1280bc5df4f4cbececd37cdabf975672188d9edf9107694e2d778ee7a8"},"d5bfb6a9f9d81a07102788e3eb6d6ef5b6e74eeb6b53fa424e1d03713fdc3d70","21522c0f405e58c8dd89cd97eb3d1aa9865ba017fde102d01f86ab50b44e5610","ac65f04c2df0218cb8e54f012745cbfcc3c0e67c1f6b1e557d88842bbb72e2db","cc957354aa3c94c9961ebf46282cfde1e81d107fc5785a61f62c67f1dd3ac2eb",{"version":"b9734142a4b241cfb505be4a2eb0261d211647df7c73043f817f4fdd8d96c846","affectsGlobalScope":true},{"version":"f4c0db3a49cea9babd5d224ba14243a6a6119bf65a65198994033aaea3a60a71","affectsGlobalScope":true},{"version":"64d4b35c5456adf258d2cf56c341e203a073253f229ef3208fc0d5020253b241","affectsGlobalScope":true},"bee89e1eb6425eb49894f3f25e4562dc2564e84e5aa7610b7e13d8ecddf8f5db","f3e604694b624fa3f83f6684185452992088f5efb2cf136b62474aa106d6f1b6","dea2650c477f53d503a27f78ed17b13d7184c2f922eb4d3367ccf52634765467","e050a0afcdbb269720a900c85076d18e0c1ab73e580202a2bf6964978181222a","963d59066dd6742da1918a6213a209bcc205b8ee53b1876ee2b4e6d80f97c85e","9c5c92b7fb8c38ff1b46df69701f2d1ea8e2d6468e3cd8f73d8af5e6f7864576","bf88ef4208a770ca39a844b182b3695df536326ea566893fdc5b8418702a331e","cddf5c26907c0b8378bc05543161c11637b830da9fadf59e02a11e675d11e180","3d2cd8f3047fff04a71e7037a6a4cb9f4accb28dbd8c0d83164d414811025af0","70b34c8420d6226ed565d55f47fe04912d0ca0ad128825c5a06e018a3498db32","de1d6e224048139baf7494237a9231be6bab9e990fb239c7825bfd38b06d8c90","8b06ac3faeacb8484d84ddb44571d8f410697f98d7bfa86c0fda60373a9f5215","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","675e702f2032766a91eeadee64f51014c64688525da99dccd8178f0c599f13a8","458111fc89d11d2151277c822dfdc1a28fa5b6b2493cf942e37d4cd0a6ee5f22","d70c026dd2eeaa974f430ea229230a1897fdb897dc74659deebe2afd4feeb08f","187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","febf0b2de54781102b00f61653b21377390a048fbf5262718c91860d11ff34a6","98f9d826db9cd99d27a01a59ee5f22863df00ccf1aaf43e1d7db80ebf716f7c3","0aaef8cded245bf5036a7a40b65622dd6c4da71f7a35343112edbe112b348a1e","00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","dcd91d3b697cb650b95db5471189b99815af5db2a1cd28760f91e0b12ede8ed5","3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","3cf0d343c2276842a5b617f22ba82af6322c7cfe8bb52238ffc0c491a3c21019","df996e25faa505f85aeb294d15ebe61b399cf1d1e49959cdfaf2cc0815c203f9",{"version":"f2eff8704452659641164876c1ef0df4174659ce7311b0665798ea3f556fa9ad","affectsGlobalScope":true},"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","c8a34d0c858532a9fab7f0b65f3cff6507df055a0cd8b965c4fd5667b5a0cf7d","3663d1b50f356656a314e5df169bb51cb9d5fd75905fa703f75db6bb32030568","2e588ef3417282f95b0c54b657dba1fa6d05abfaddc5093c3988fc0415abbfbe","510616459e6edd01acbce333fb256e06bdffdad43ca233a9090164bf8bb83912","2c70fc3e0c2a7f64018e295f630a9ed3d343cba94b508de654ddb8ef5e8fdf2a","5774751340e987a6a9e4a5dcc03ff68a6515adc2b91423e1af2f660fc8f30e81","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","df38da6685578ac3d0e4ce2d20f3d59462ee53959b8263d2532ec9cec48ae098","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","c555dd691dd05955e99cd93dd99c685a65e5287813ccb5e6bfde951183248e26","c0a3ea3aee13c4946a6aefce3a6ab9292a40a29f6622cde0fda0b1067a1a1f5f","6a386ff939f180ae8ef064699d8b7b6e62bc2731a62d7fbf5e02589383838dea","ba601641fac98c229ccd4a303f747de376d761babb33229bb7153bed9356c9cc",{"version":"49a253ec027e56c55c7450a0c331cfe96212b3d1cc215b1710ba94a083404cf3","affectsGlobalScope":true},"4c68749a564a6facdf675416d75789ee5a557afda8960e0803cf6711fa569288","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"278fe30e638dad09488d130287c728f99f61cb315ed86b70c36040e4311f9cf5","affectsGlobalScope":true},"d035565d969404edfb3dfce8a2e762fbed98f6dfd7388ac01af173aa1ef665bd","7ccce4adb23a87a044c257685613126b47160f6975b224cea5f6af36c7f37514","2b93035328f7778d200252681c1d86285d501ed424825a18f81e4c3028aa51d9","2ac9c8332c5f8510b8bdd571f8271e0f39b0577714d5e95c1e79a12b2616f069","42c21aa963e7b86fa00801d96e88b36803188018d5ad91db2a9101bccd40b3ff","d31eb848cdebb4c55b4893b335a7c0cca95ad66dee13cbb7d0893810c0a9c301","77c1d91a129ba60b8c405f9f539e42df834afb174fe0785f89d92a2c7c16b77a","7a9e0a564fee396cacf706523b5aeed96e04c6b871a8bebefad78499fbffc5bc","906c751ef5822ec0dadcea2f0e9db64a33fb4ee926cc9f7efa38afe5d5371b2a","5387c049e9702f2d2d7ece1a74836a14b47fbebe9bbeb19f94c580a37c855351","c68391fb9efad5d99ff332c65b1606248c4e4a9f1dd9a087204242b56c7126d6","e9cf02252d3a0ced987d24845dcb1f11c1be5541f17e5daa44c6de2d18138d0c","e8b02b879754d85f48489294f99147aeccc352c760d95a6fe2b6e49cd400b2fe","9f6908ab3d8a86c68b86e38578afc7095114e66b2fc36a2a96e9252aac3998e0","0eedb2344442b143ddcd788f87096961cd8572b64f10b4afc3356aa0460171c6","71405cc70f183d029cc5018375f6c35117ffdaf11846c35ebf85ee3956b1b2a6","c68baff4d8ba346130e9753cefe2e487a16731bf17e05fdacc81e8c9a26aae9d","2cd15528d8bb5d0453aa339b4b52e0696e8b07e790c153831c642c3dea5ac8af","479d622e66283ffa9883fbc33e441f7fc928b2277ff30aacbec7b7761b4e9579","ade307876dc5ca267ca308d09e737b611505e015c535863f22420a11fffc1c54","f8cdefa3e0dee639eccbe9794b46f90291e5fd3989fcba60d2f08fde56179fb9","86c5a62f99aac7053976e317dbe9acb2eaf903aaf3d2e5bb1cafe5c2df7b37a8","2b300954ce01a8343866f737656e13243e86e5baef51bd0631b21dcef1f6e954","a2d409a9ffd872d6b9d78ead00baa116bbc73cfa959fce9a2f29d3227876b2a1","b288936f560cd71f4a6002953290de9ff8dfbfbf37f5a9391be5c83322324898","61178a781ef82e0ff54f9430397e71e8f365fc1e3725e0e5346f2de7b0d50dfa","6a6ccb37feb3aad32d9be026a3337db195979cd5727a616fc0f557e974101a54","c649ea79205c029a02272ef55b7ab14ada0903db26144d2205021f24727ac7a3","38e2b02897c6357bbcff729ef84c736727b45cc152abe95a7567caccdfad2a1d","d6610ea7e0b1a7686dba062a1e5544dd7d34140f4545305b7c6afaebfb348341","3dee35db743bdba2c8d19aece7ac049bde6fa587e195d86547c882784e6ba34c","b15e55c5fa977c2f25ca0b1db52cfa2d1fd4bf0baf90a8b90d4a7678ca462ff1","f41d30972724714763a2698ae949fbc463afb203b5fa7c4ad7e4de0871129a17","843dd7b6a7c6269fd43827303f5cbe65c1fecabc30b4670a50d5a15d57daeeb9","f06d8b8567ee9fd799bf7f806efe93b67683ef24f4dea5b23ef12edff4434d9d","6017384f697ff38bc3ef6a546df5b230c3c31329db84cbfe686c83bec011e2b2","e1a5b30d9248549ca0c0bb1d653bafae20c64c4aa5928cc4cd3017b55c2177b0","a593632d5878f17295bd53e1c77f27bf4c15212822f764a2bfc1702f4b413fa0","a868a534ba1c2ca9060b8a13b0ffbbbf78b4be7b0ff80d8c75b02773f7192c29","da7545aba8f54a50fde23e2ede00158dc8112560d934cee58098dfb03aae9b9d","34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","6aee496bf0ecfbf6731aa8cca32f4b6e92cdc0a444911a7d88410408a45ecc5d","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","3833c70307dc3d2b46cb6f2a8b6a90e4d7e7367a21ab18c481d7de0909a43e67","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","9dcd1a6ae84def6ce3e80b27a367912e5b8e9f15c039143820ab76f7ceb8f3ab","eac647a94fb1f09789e12dfecb52dcd678d05159a4796b4e415aa15892f3b103","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","05d64cc1118031b29786632a9a0f6d7cf1dcacb303f27023a466cf3cdc860538","e0fff9119e1a5d2fdd46345734126cd6cb99c2d98a9debf0257047fe3937cc3f","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","e275297155ec3251200abbb334c7f5641fecc68b2a9573e40eed50dff7584762","1fc49547f60101e7fac0d9113a52c29178be082d46d7525009aebafdbb170a69",{"version":"401845ce10d4d9848a8e39f5004446eef7c3db2de5e9341b8a17c9b00aefcc0a","affectsGlobalScope":true},"70e9a18da08294f75bf23e46c7d69e67634c0765d355887b9b41f0d959e1426e","9cdb157e06005f2614aa42ddd4d6b46a3623145349bbac5dd1ee221fb71dcc25","65dfa4bc49ccd1355789abb6ae215b302a5b050fdee9651124fe7e826f33113c","942f54ddd7bc7cf3ba8aad472947434dc9c29707efbd0d38c4e480c3cf1a8057"],"options":{"composite":true,"declaration":true,"downlevelIteration":true,"esModuleInterop":true,"module":1,"newLine":1,"noFallthroughCasesInSwitch":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","rootDir":"../../src/vite-plugin","skipLibCheck":true,"sourceMap":true,"strict":true,"target":1},"fileIdsList":[[89],[89,127],[89,129],[89,132,134],[89,131,132,133],[59,60,89,96,136],[60,89,96],[89,139],[89,143],[89,144],[89,146,148,149,150,151,152,153,154,155,156,157,158],[89,146,147,149,150,151,152,153,154,155,156,157,158],[89,147,148,149,150,151,152,153,154,155,156,157,158],[89,146,147,148,150,151,152,153,154,155,156,157,158],[89,146,147,148,149,151,152,153,154,155,156,157,158],[89,146,147,148,149,150,152,153,154,155,156,157,158],[89,146,147,148,149,150,151,153,154,155,156,157,158],[89,146,147,148,149,150,151,152,154,155,156,157,158],[89,146,147,148,149,150,151,152,153,155,156,157,158],[89,146,147,148,149,150,151,152,153,154,156,157,158],[89,146,147,148,149,150,151,152,153,154,155,157,158],[89,146,147,148,149,150,151,152,153,154,155,156,158],[89,146,147,148,149,150,151,152,153,154,155,156,157],[62,85,88,89,161,162,163],[62,88,89,96,159,160],[43,89],[46,89],[47,52,80,89],[48,59,60,67,77,88,89],[48,49,59,67,89],[50,89],[51,52,60,68,89],[52,77,85,89],[53,55,59,67,89],[54,89],[55,56,89],[59,89],[57,59,89],[59,60,61,77,88,89],[59,60,61,74,77,80,89],[89,93],[55,62,67,77,88,89],[59,60,62,63,67,77,85,88,89],[62,64,77,85,88,89],[43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95],[59,65,89],[66,88,89],[55,59,67,77,89],[68,89],[69,89],[46,70,89],[71,87,89,93],[72,89],[73,89],[59,74,75,89],[74,76,89,91],[47,59,77,78,79,80,89],[47,77,79,89],[77,78,89],[80,89],[81,89],[59,83,84,89],[83,84,89],[52,67,77,85,89],[86,89],[67,87,89],[47,62,73,88,89],[52,89],[77,89,90],[89,91],[89,92],[47,52,59,61,70,77,88,89,91,93],[77,89,94],[89,177],[89,172,174,175,176],[89,180,219],[89,180,204,219],[89,219],[89,180],[89,180,205,219],[89,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218],[89,205,219],[52,77,89,96],[89,222],[89,96,226,227,228,229,230,231,232,233,234,235,236],[89,225,226,235],[89,226,235],[89,220,225,226,235],[89,226],[52,89,225,235],[89,225,226,227,228,229,230,231,232,233,234,236],[52,89,96,221,222,223,224,237],[89,240],[59,77,89,96],[47,89,96],[62,77,89,96],[89,97],[89,102],[59,60,62,63,64,67,77,85,88,89,94,96,98,99,100,101,120,121,122],[89,117],[89,115,117],[89,106,114,115,116,118],[89,104],[89,107,112,117,120],[89,103,120],[89,107,108,111,112,113,120],[89,107,108,109,111,112,120],[89,104,105,106,107,108,112,113,114,116,117,118,120],[89,102,104,105,106,107,108,109,111,112,113,114,115,116,117,118,119],[89,102,120],[89,107,109,110,112,113,120],[89,111,120],[89,112,113,117,120],[89,105,115],[89,99],[89,98],[89,124],[60,89,123],[123]],"referencedMap":[[127,1],[126,1],[128,2],[130,3],[129,1],[135,4],[131,1],[134,5],[132,1],[137,6],[138,7],[140,8],[141,1],[142,1],[143,1],[144,9],[145,10],[133,1],[147,11],[148,12],[146,13],[149,14],[150,15],[151,16],[152,17],[153,18],[154,19],[155,20],[156,21],[157,22],[158,23],[164,24],[165,8],[136,1],[166,1],[160,1],[161,25],[43,26],[44,26],[46,27],[47,28],[48,29],[49,30],[50,31],[51,32],[52,33],[53,34],[54,35],[55,36],[56,36],[58,37],[57,38],[59,37],[60,39],[61,40],[45,41],[95,1],[62,42],[63,43],[64,44],[96,45],[65,46],[66,47],[67,48],[68,49],[69,50],[70,51],[71,52],[72,53],[73,54],[74,55],[75,55],[76,56],[77,57],[79,58],[78,59],[80,60],[81,61],[82,1],[83,62],[84,63],[85,64],[86,65],[87,66],[88,67],[89,68],[90,69],[91,70],[92,71],[93,72],[94,73],[167,1],[168,37],[169,1],[170,1],[171,1],[172,1],[173,1],[178,74],[174,1],[177,75],[163,1],[179,1],[176,1],[204,76],[205,77],[180,78],[183,78],[202,76],[203,76],[193,76],[192,79],[190,76],[185,76],[198,76],[196,76],[200,76],[184,76],[197,76],[201,76],[186,76],[187,76],[199,76],[181,76],[188,76],[189,76],[191,76],[195,76],[206,80],[194,76],[182,76],[219,81],[218,1],[213,80],[215,82],[214,80],[207,80],[208,80],[210,80],[212,80],[216,82],[217,82],[209,82],[211,82],[220,1],[162,83],[221,1],[223,84],[139,1],[239,1],[237,85],[236,86],[227,87],[228,88],[229,88],[230,87],[231,87],[232,87],[233,89],[226,90],[234,86],[235,91],[225,1],[238,92],[240,1],[241,93],[242,94],[243,95],[224,1],[175,1],[101,1],[159,96],[98,97],[97,1],[102,98],[222,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[33,1],[30,1],[31,1],[32,1],[34,1],[7,1],[35,1],[40,1],[41,1],[36,1],[37,1],[38,1],[39,1],[1,1],[42,1],[123,99],[118,100],[116,101],[117,102],[105,103],[106,101],[113,104],[104,105],[109,106],[119,1],[110,107],[115,108],[120,109],[103,110],[111,111],[112,112],[107,113],[114,100],[108,114],[100,115],[99,1],[121,1],[122,116],[125,117],[124,118]],"exportedModulesMap":[[127,1],[126,1],[128,2],[130,3],[129,1],[135,4],[131,1],[134,5],[132,1],[137,6],[138,7],[140,8],[141,1],[142,1],[143,1],[144,9],[145,10],[133,1],[147,11],[148,12],[146,13],[149,14],[150,15],[151,16],[152,17],[153,18],[154,19],[155,20],[156,21],[157,22],[158,23],[164,24],[165,8],[136,1],[166,1],[160,1],[161,25],[43,26],[44,26],[46,27],[47,28],[48,29],[49,30],[50,31],[51,32],[52,33],[53,34],[54,35],[55,36],[56,36],[58,37],[57,38],[59,37],[60,39],[61,40],[45,41],[95,1],[62,42],[63,43],[64,44],[96,45],[65,46],[66,47],[67,48],[68,49],[69,50],[70,51],[71,52],[72,53],[73,54],[74,55],[75,55],[76,56],[77,57],[79,58],[78,59],[80,60],[81,61],[82,1],[83,62],[84,63],[85,64],[86,65],[87,66],[88,67],[89,68],[90,69],[91,70],[92,71],[93,72],[94,73],[167,1],[168,37],[169,1],[170,1],[171,1],[172,1],[173,1],[178,74],[174,1],[177,75],[163,1],[179,1],[176,1],[204,76],[205,77],[180,78],[183,78],[202,76],[203,76],[193,76],[192,79],[190,76],[185,76],[198,76],[196,76],[200,76],[184,76],[197,76],[201,76],[186,76],[187,76],[199,76],[181,76],[188,76],[189,76],[191,76],[195,76],[206,80],[194,76],[182,76],[219,81],[218,1],[213,80],[215,82],[214,80],[207,80],[208,80],[210,80],[212,80],[216,82],[217,82],[209,82],[211,82],[220,1],[162,83],[221,1],[223,84],[139,1],[239,1],[237,85],[236,86],[227,87],[228,88],[229,88],[230,87],[231,87],[232,87],[233,89],[226,90],[234,86],[235,91],[225,1],[238,92],[240,1],[241,93],[242,94],[243,95],[224,1],[175,1],[101,1],[159,96],[98,97],[97,1],[102,98],[222,1],[8,1],[10,1],[9,1],[2,1],[11,1],[12,1],[13,1],[14,1],[15,1],[16,1],[17,1],[18,1],[3,1],[4,1],[22,1],[19,1],[20,1],[21,1],[23,1],[24,1],[25,1],[5,1],[26,1],[27,1],[28,1],[29,1],[6,1],[33,1],[30,1],[31,1],[32,1],[34,1],[7,1],[35,1],[40,1],[41,1],[36,1],[37,1],[38,1],[39,1],[1,1],[42,1],[123,99],[118,100],[116,101],[117,102],[105,103],[106,101],[113,104],[104,105],[109,106],[119,1],[110,107],[115,108],[120,109],[103,110],[111,111],[112,112],[107,113],[114,100],[108,114],[100,115],[99,1],[121,1],[122,116],[125,117],[124,119]],"semanticDiagnosticsPerFile":[127,126,128,130,129,135,131,134,132,137,138,140,141,142,143,144,145,133,147,148,146,149,150,151,152,153,154,155,156,157,158,164,165,136,166,160,161,43,44,46,47,48,49,50,51,52,53,54,55,56,58,57,59,60,61,45,95,62,63,64,96,65,66,67,68,69,70,71,72,73,74,75,76,77,79,78,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,167,168,169,170,171,172,173,178,174,177,163,179,176,204,205,180,183,202,203,193,192,190,185,198,196,200,184,197,201,186,187,199,181,188,189,191,195,206,194,182,219,218,213,215,214,207,208,210,212,216,217,209,211,220,162,221,223,139,239,237,236,227,228,229,230,231,232,233,226,234,235,225,238,240,241,242,243,224,175,101,159,98,97,102,222,8,10,9,2,11,12,13,14,15,16,17,18,3,4,22,19,20,21,23,24,25,5,26,27,28,29,6,33,30,31,32,34,7,35,40,41,36,37,38,39,1,42,123,118,116,117,105,106,113,104,109,119,110,115,120,103,111,112,107,114,108,100,99,121,122,125,124],"latestChangedDtsFile":"./index.d.ts"},"version":"4.9.5"}
|