fast-vite-plugins 1.0.0 → 1.0.2

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.
@@ -1,202 +0,0 @@
1
- import fs from "fs";
2
- import path from "path";
3
- import externalGlobals from "rollup-plugin-external-globals";
4
- import type { HtmlTagDescriptor, Plugin, UserConfig } from "vite";
5
- import { viteExternalsPlugin } from "vite-plugin-externals";
6
- import type { CdnImportOptions, Module } from "./type";
7
-
8
- const isDev = process.env.NODE_ENV === "development";
9
-
10
- /**
11
- * get npm module version
12
- * @param name
13
- * @returns
14
- */
15
- function getModuleVersion(name: string): string {
16
- const pwd = process.cwd();
17
- const pkgFile = path.join(pwd, "node_modules", name, "package.json");
18
- if (fs.existsSync(pkgFile)) {
19
- const pkgJson = JSON.parse(fs.readFileSync(pkgFile, "utf8"));
20
- return pkgJson.version;
21
- }
22
-
23
- return "";
24
- }
25
-
26
- /**
27
- * 是否完整的 url
28
- * @param path
29
- * @returns
30
- */
31
- function isFullPath(path: string): boolean {
32
- return path.startsWith("http:") || path.startsWith("https:") || path.startsWith("//") ? true : false;
33
- }
34
-
35
- function renderUrl(
36
- url: string,
37
- data: {
38
- name: string;
39
- version: string;
40
- path: string;
41
- }
42
- ): string {
43
- const { path } = data;
44
- if (isFullPath(path)) {
45
- url = path;
46
- }
47
- return url
48
- .replace(/\{name\}/g, data.name)
49
- .replace(/\{version\}/g, data.version)
50
- .replace(/\{path\}/g, path);
51
- }
52
-
53
- function getModuleInfo(module: Module, prodUrl: string): Module & { version?: string; pathList?: string[]; cssList?: string[] } {
54
- prodUrl = module.prodUrl || prodUrl;
55
- const v = module;
56
- const version = getModuleVersion(v.name);
57
- let pathList: string[] = [];
58
- if (!Array.isArray(v.path)) {
59
- pathList.push(v.path);
60
- } else {
61
- pathList = v.path;
62
- }
63
-
64
- const data = {
65
- ...v,
66
- version,
67
- };
68
-
69
- pathList = pathList.map((p) => {
70
- if (!version && !isFullPath(p)) {
71
- throw new Error(`modules: ${data.name} package.json file does not exist`);
72
- }
73
- return renderUrl(prodUrl, {
74
- ...data,
75
- path: p,
76
- });
77
- });
78
-
79
- let css = v.css || [];
80
- if (!Array.isArray(css) && css) {
81
- css = [css];
82
- }
83
-
84
- const cssList = !Array.isArray(css)
85
- ? []
86
- : css.map((c) =>
87
- renderUrl(prodUrl, {
88
- ...data,
89
- path: c,
90
- })
91
- );
92
-
93
- return {
94
- ...v,
95
- version,
96
- pathList,
97
- cssList,
98
- };
99
- }
100
-
101
- /**
102
- * CDN 导入
103
- * @param options
104
- * @returns
105
- */
106
- function cdnImport(options: CdnImportOptions): Plugin[] {
107
- const { modules = [], prodUrl = "https://cdn.jsdelivr.net/npm/{name}@{version}/{path}", enableInDevMode = false } = options;
108
-
109
- let isBuild = false;
110
-
111
- const data = modules
112
- .map((m) => {
113
- const list = (Array.isArray(m) ? m : [m]).map((v) => (typeof v === "function" ? v(prodUrl) : v));
114
- return list.map((v) => getModuleInfo(v, prodUrl));
115
- })
116
- .flat();
117
-
118
- const externalMap: {
119
- [name: string]: string;
120
- } = {};
121
-
122
- data.forEach((v) => {
123
- externalMap[v.name] = v.var;
124
- if (Array.isArray(v.alias)) {
125
- v.alias.forEach((alias) => {
126
- externalMap[alias] = v.var;
127
- });
128
- }
129
- });
130
-
131
- const plugins: Plugin[] = [
132
- {
133
- name: "fast-vite-plugin-cdn-import",
134
- enforce: "pre",
135
- config(_, { command }): UserConfig {
136
- isBuild = command === "build";
137
-
138
- const userConfig: UserConfig = {
139
- build: {
140
- rollupOptions: {
141
- plugins: [],
142
- },
143
- },
144
- };
145
-
146
- if (isBuild) {
147
- userConfig.build.rollupOptions.plugins = [externalGlobals(externalMap)];
148
- }
149
-
150
- return userConfig;
151
- },
152
- transformIndexHtml(html): string | HtmlTagDescriptor[] {
153
- if (!isBuild && !enableInDevMode) {
154
- return html;
155
- }
156
-
157
- const descriptors: HtmlTagDescriptor[] = [];
158
-
159
- data.forEach((v) => {
160
- v.pathList.forEach((url) => {
161
- const attrs = {
162
- src: url,
163
- crossorigin: "anonymous",
164
- ...(v?.attrs ?? {}),
165
- };
166
-
167
- descriptors.push({
168
- tag: "script",
169
- attrs,
170
- });
171
- });
172
- v.cssList.forEach((url) => {
173
- const attrs = {
174
- href: url,
175
- rel: "stylesheet",
176
- crossorigin: "anonymous",
177
- ...(v?.attrs ?? {}),
178
- };
179
- descriptors.push({
180
- tag: "link",
181
- attrs,
182
- });
183
- });
184
- });
185
-
186
- return descriptors;
187
- },
188
- },
189
- ];
190
-
191
- if (isDev && enableInDevMode) {
192
- plugins.push(
193
- viteExternalsPlugin(externalMap, {
194
- enforce: "pre",
195
- })
196
- );
197
- }
198
-
199
- return plugins;
200
- }
201
-
202
- export { cdnImport };
@@ -1,44 +0,0 @@
1
- export interface Module {
2
- /**
3
- * 模块名称
4
- */
5
- name: string;
6
- /**
7
- * 模块变量
8
- */
9
- var: string;
10
- /**
11
- * 模块路径
12
- */
13
- path: string | string[];
14
- /**
15
- * 名称的别名,例如 "react-dom/client" 是 "react-dom" 的别名
16
- */
17
- alias?: string[];
18
- /**
19
- * CSS 文件路径
20
- */
21
- css?: string | string[];
22
- /**
23
- * 生产环境 URL
24
- */
25
- prodUrl?: string;
26
- /**
27
- * 元素的其他属性
28
- */
29
- attrs?: Record<string, any>;
30
- }
31
-
32
- export type GetModuleFunc = (prodUrl: string) => Module;
33
-
34
- export interface CdnImportOptions {
35
- /**
36
- * 生产环境 URL
37
- */
38
- prodUrl?: string;
39
- modules: (Module | Module[] | GetModuleFunc | GetModuleFunc[])[];
40
- /**
41
- * 是否在开发模式启用,默认是 false
42
- */
43
- enableInDevMode?: boolean;
44
- }
@@ -1,81 +0,0 @@
1
- import fs from "fs";
2
- import path from "path";
3
- import type { Plugin } from "vite";
4
- import type { AutoImportOptions } from "./type";
5
-
6
- /**
7
- * 组件自动导入
8
- * @description 只会生成安装文件
9
- * @param dir 组件文件夹路径
10
- */
11
- function componentAutoImport(options: string | AutoImportOptions): Plugin {
12
- if (!options) return;
13
-
14
- return {
15
- name: "fast-vite-plugin-component-auto-import",
16
- buildStart(): void | Promise<void> {
17
- const dir = typeof options === "string" ? options : options.dir;
18
-
19
- const defaultFormatter = (fName: string): string => {
20
- return fName.charAt(0).toUpperCase() + fName.slice(1);
21
- };
22
-
23
- const formatter = typeof options === "string" ? defaultFormatter : (options.formatter ?? defaultFormatter);
24
-
25
- // 获取所有文件夹名称
26
- const cFiles = fs.readdirSync(dir, {
27
- withFileTypes: true,
28
- });
29
-
30
- if (cFiles?.length === 0) return;
31
-
32
- // 组件名称
33
- const cNames = cFiles
34
- // 排除export文件
35
- .filter((f) => f.name !== "index.ts")
36
- .map((file) => {
37
- return {
38
- componentName: formatter(file.name),
39
- fileName: file.name,
40
- };
41
- })
42
- .sort((a, b) => {
43
- if (a.componentName < b.componentName) {
44
- return -1;
45
- }
46
- if (a.componentName > b.componentName) {
47
- return 1;
48
- }
49
- return 0;
50
- });
51
-
52
- let importContent = "";
53
- let exportContent = "";
54
- let typeContent = "";
55
-
56
- cNames.forEach(({ componentName, fileName }, idx) => {
57
- importContent += `import ${componentName} from "./${fileName}/index.vue";\n`;
58
- exportContent += `export * from "./${fileName}/index.vue";\n`;
59
-
60
- typeContent += ` ${componentName},`;
61
-
62
- if (idx + 1 < cNames.length) {
63
- typeContent += "\n";
64
- }
65
- });
66
-
67
- fs.writeFileSync(
68
- path.join(dir, "index.ts"),
69
- `import type { DefineComponent } from "vue";
70
- ${importContent}
71
- ${exportContent}
72
- export default [
73
- ${typeContent}
74
- ] as unknown as DefineComponent[];
75
- `
76
- );
77
- },
78
- };
79
- }
80
-
81
- export { componentAutoImport };
@@ -1,12 +0,0 @@
1
- export interface AutoImportOptions {
2
- /**
3
- * 文件夹
4
- */
5
- dir: string;
6
- /**
7
- * 自定义组件名称
8
- * @param fName 文件夹名称
9
- * @returns
10
- */
11
- formatter?: (fName: string) => string;
12
- }
package/packages/index.ts DELETED
@@ -1,6 +0,0 @@
1
- export * from "./buildSvgIcon";
2
- export * from "./cdnImport";
3
- export * from "./cdnImport/type";
4
- export * from "./componentAutoImport";
5
- export * from "./componentAutoImport/type";
6
- export * from "./versionUpdate";
@@ -1,60 +0,0 @@
1
- import fs from "fs";
2
- import path from "path";
3
- import type { Plugin, ResolvedConfig } from "vite";
4
-
5
- function padZero(num: number, length = 2): string {
6
- return num.toString().padStart(length, "0");
7
- }
8
-
9
- function formatDate(date: Date): string {
10
- const year = date.getUTCFullYear();
11
- const month = padZero(date.getUTCMonth() + 1);
12
- const day = padZero(date.getUTCDate());
13
- const hours = padZero(date.getUTCHours());
14
- const minutes = padZero(date.getUTCMinutes());
15
- const seconds = padZero(date.getUTCSeconds());
16
- const milliseconds = padZero(date.getUTCMilliseconds(), 3);
17
-
18
- return `Z ${year}-${month}-${day} ${hours}:${minutes}:${seconds}.${milliseconds}`;
19
- }
20
-
21
- /**
22
- * 版本更新插件
23
- * @param version 不要携带 'v',示例:1.0.0
24
- * @returns
25
- */
26
- function versionUpdatePlugin(version: string): Plugin {
27
- let config: ResolvedConfig;
28
-
29
- return {
30
- name: "fast-vite-plugin-version-update",
31
- configResolved: (resolvedConfig: ResolvedConfig): void | Promise<void> => {
32
- // 存储最终解析的配置
33
- config = resolvedConfig;
34
- },
35
- buildStart(): void | Promise<void> {
36
- const curDate = new Date();
37
-
38
- const dateTime = formatDate(curDate);
39
-
40
- const versionDir = config.publicDir;
41
- const versionPath = path.join(versionDir, "version.json");
42
- if (!fs.existsSync(versionDir)) {
43
- fs.mkdirSync(versionDir);
44
- }
45
-
46
- // 写入版本信息文件
47
- const content = JSON.stringify({ version: `v${version}`, dateTime }, null, 4);
48
- fs.writeFileSync(versionPath, content);
49
-
50
- const pkgPath = path.join(config.base, "package.json");
51
- if (fs.existsSync(pkgPath)) {
52
- const pkgJson = JSON.parse(fs.readFileSync(pkgPath, "utf-8"));
53
- pkgJson.version = version;
54
- fs.writeFileSync(pkgPath, JSON.stringify(pkgJson, null, 2), "utf-8");
55
- }
56
- },
57
- };
58
- }
59
-
60
- export { versionUpdatePlugin };
package/tsconfig.json DELETED
@@ -1,20 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "ESNext",
4
- /** https://cn.vitejs.dev/guide/features.html#typescript-compiler-options */
5
- "useDefineForClassFields": true,
6
- "module": "ESNext",
7
- "moduleResolution": "Node",
8
- /** TS 严格模式 */
9
- "strict": true,
10
- "resolveJsonModule": true,
11
- "esModuleInterop": true,
12
- "lib": ["ESNext", "DOM", "DOM.Iterable"],
13
- "skipLibCheck": true,
14
- /* 启用严格null检查 Enable strict null checks. */
15
- "strictNullChecks": false
16
- },
17
- "include": ["packages"],
18
- /** 编译器默认排除的编译文件 */
19
- "exclude": ["node_modules", "fast-vite-plugins"]
20
- }
@@ -1 +0,0 @@
1
- {"program":{"fileNames":["./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es5.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2023.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.dom.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2016.intl.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.date.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.promise.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.string.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.weakref.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2021.intl.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.array.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.error.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.intl.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.object.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.string.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2022.regexp.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2023.array.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2023.collection.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.es2023.intl.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.array.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.collection.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.intl.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.disposable.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.string.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.promise.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.decorators.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.object.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.esnext.regexp.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.decorators.d.ts","./node_modules/.pnpm/typescript@5.5.4/node_modules/typescript/lib/lib.decorators.legacy.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/assert.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/assert/strict.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/header.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/readable.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/file.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/fetch.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/formdata.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/connector.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/client.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/errors.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/dispatcher.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/global-dispatcher.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/global-origin.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/pool-stats.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/pool.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/handlers.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/balanced-pool.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/agent.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-interceptor.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-agent.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-client.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-pool.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/mock-errors.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/proxy-agent.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/env-http-proxy-agent.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/retry-handler.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/retry-agent.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/api.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/interceptors.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/util.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/cookies.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/patch.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/websocket.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/eventsource.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/filereader.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/diagnostics-channel.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/content-type.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/cache.d.ts","./node_modules/.pnpm/undici-types@6.19.8/node_modules/undici-types/index.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/globals.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/async_hooks.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/buffer.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/child_process.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/cluster.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/console.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/constants.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/crypto.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/dgram.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/diagnostics_channel.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/dns.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/dns/promises.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/domain.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/dom-events.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/events.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/fs.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/fs/promises.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/http.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/http2.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/https.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/inspector.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/module.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/net.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/os.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/path.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/perf_hooks.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/process.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/punycode.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/querystring.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/readline.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/readline/promises.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/repl.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/sea.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/sqlite.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/stream.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/stream/promises.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/stream/consumers.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/stream/web.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/string_decoder.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/test.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/timers.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/timers/promises.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/tls.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/trace_events.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/tty.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/url.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/util.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/v8.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/vm.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/wasi.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/worker_threads.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/zlib.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/globals.global.d.ts","./node_modules/.pnpm/@types+node@22.5.4/node_modules/@types/node/index.d.ts","./node_modules/.pnpm/@types+estree@1.0.5/node_modules/@types/estree/index.d.ts","./node_modules/.pnpm/rollup@4.21.2/node_modules/rollup/dist/rollup.d.ts","./node_modules/.pnpm/vite@5.4.3_@types+node@22.5.4/node_modules/vite/types/hmrpayload.d.ts","./node_modules/.pnpm/vite@5.4.3_@types+node@22.5.4/node_modules/vite/types/customevent.d.ts","./node_modules/.pnpm/vite@5.4.3_@types+node@22.5.4/node_modules/vite/types/hot.d.ts","./node_modules/.pnpm/vite@5.4.3_@types+node@22.5.4/node_modules/vite/dist/node/types.d-agj9qkwt.d.ts","./node_modules/.pnpm/esbuild@0.21.5/node_modules/esbuild/lib/main.d.ts","./node_modules/.pnpm/source-map-js@1.2.0/node_modules/source-map-js/source-map.d.ts","./node_modules/.pnpm/postcss@8.4.45/node_modules/postcss/lib/previous-map.d.ts","./node_modules/.pnpm/postcss@8.4.45/node_modules/postcss/lib/input.d.ts","./node_modules/.pnpm/postcss@8.4.45/node_modules/postcss/lib/css-syntax-error.d.ts","./node_modules/.pnpm/postcss@8.4.45/node_modules/postcss/lib/declaration.d.ts","./node_modules/.pnpm/postcss@8.4.45/node_modules/postcss/lib/root.d.ts","./node_modules/.pnpm/postcss@8.4.45/node_modules/postcss/lib/warning.d.ts","./node_modules/.pnpm/postcss@8.4.45/node_modules/postcss/lib/lazy-result.d.ts","./node_modules/.pnpm/postcss@8.4.45/node_modules/postcss/lib/no-work-result.d.ts","./node_modules/.pnpm/postcss@8.4.45/node_modules/postcss/lib/processor.d.ts","./node_modules/.pnpm/postcss@8.4.45/node_modules/postcss/lib/result.d.ts","./node_modules/.pnpm/postcss@8.4.45/node_modules/postcss/lib/document.d.ts","./node_modules/.pnpm/postcss@8.4.45/node_modules/postcss/lib/rule.d.ts","./node_modules/.pnpm/postcss@8.4.45/node_modules/postcss/lib/node.d.ts","./node_modules/.pnpm/postcss@8.4.45/node_modules/postcss/lib/comment.d.ts","./node_modules/.pnpm/postcss@8.4.45/node_modules/postcss/lib/container.d.ts","./node_modules/.pnpm/postcss@8.4.45/node_modules/postcss/lib/at-rule.d.ts","./node_modules/.pnpm/postcss@8.4.45/node_modules/postcss/lib/list.d.ts","./node_modules/.pnpm/postcss@8.4.45/node_modules/postcss/lib/postcss.d.ts","./node_modules/.pnpm/vite@5.4.3_@types+node@22.5.4/node_modules/vite/dist/node/runtime.d.ts","./node_modules/.pnpm/vite@5.4.3_@types+node@22.5.4/node_modules/vite/types/importglob.d.ts","./node_modules/.pnpm/vite@5.4.3_@types+node@22.5.4/node_modules/vite/types/metadata.d.ts","./node_modules/.pnpm/vite@5.4.3_@types+node@22.5.4/node_modules/vite/dist/node/index.d.ts","./packages/buildsvgicon/index.ts","./node_modules/.pnpm/rollup-plugin-external-globals@0.12.0_rollup@4.21.2/node_modules/rollup-plugin-external-globals/index.d.ts","./node_modules/.pnpm/magic-string@0.25.9/node_modules/magic-string/index.d.ts","./node_modules/.pnpm/vite-plugin-externals@0.6.2_vite@5.4.3_@types+node@22.5.4_/node_modules/vite-plugin-externals/dist/src/types.d.ts","./node_modules/.pnpm/vite-plugin-externals@0.6.2_vite@5.4.3_@types+node@22.5.4_/node_modules/vite-plugin-externals/dist/src/index.d.ts","./node_modules/.pnpm/vite-plugin-externals@0.6.2_vite@5.4.3_@types+node@22.5.4_/node_modules/vite-plugin-externals/index.d.ts","./packages/cdnimport/type.ts","./packages/cdnimport/index.ts","./packages/componentautoimport/type.ts","./packages/componentautoimport/index.ts","./packages/versionupdate/index.ts","./packages/index.ts"],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","17edc026abf73c5c2dd508652d63f68ec4efd9d4856e3469890d27598209feb5",{"version":"4af6b0c727b7a2896463d512fafd23634229adf69ac7c00e2ae15a09cb084fad","affectsGlobalScope":true},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true},{"version":"ae37d6ccd1560b0203ab88d46987393adaaa78c919e51acf32fb82c86502e98c","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true},{"version":"9d540251809289a05349b70ab5f4b7b99f922af66ab3c39ba56a475dcf95d5ff","affectsGlobalScope":true},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true},{"version":"0b11f3ca66aa33124202c80b70cd203219c3d4460cfc165e0707aa9ec710fc53","affectsGlobalScope":true},{"version":"6a3f5a0129cc80cf439ab71164334d649b47059a4f5afca90282362407d0c87f","affectsGlobalScope":true},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true},{"version":"15b98a533864d324e5f57cd3cfc0579b231df58c1c0f6063ea0fcb13c3c74ff9","affectsGlobalScope":true},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"e142fda89ed689ea53d6f2c93693898464c7d29a0ae71c6dc8cdfe5a1d76c775","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","4d2b0eb911816f66abe4970898f97a2cfc902bcd743cbfa5017fad79f7ef90d8","bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","24b8685c62562f5d98615c5a0c1d05f297cf5065f15246edfe99e81ec4c0e011","93507c745e8f29090efb99399c3f77bec07db17acd75634249dc92f961573387","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107",{"version":"964f307d249df0d7e8eb16d594536c0ac6cc63c8d467edf635d05542821dec8e","affectsGlobalScope":true},"db3ec8993b7596a4ef47f309c7b25ee2505b519c13050424d9c34701e5973315",{"version":"6a1ebd564896d530364f67b3257c62555b61d60494a73dfe8893274878c6589d","affectsGlobalScope":true},"af49b066a76ce26673fe49d1885cc6b44153f1071ed2d952f2a90fccba1095c9","f22fd1dc2df53eaf5ce0ff9e0a3326fc66f880d6a652210d50563ae72625455f",{"version":"3ddbdb519e87a7827c4f0c4007013f3628ca0ebb9e2b018cf31e5b2f61c593f1","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb",{"version":"6d498d4fd8036ea02a4edcae10375854a0eb1df0496cf0b9d692577d3c0fd603","affectsGlobalScope":true},"24642567d3729bcc545bacb65ee7c0db423400c7f1ef757cab25d05650064f98","fd09b892597ab93e7f79745ce725a3aaf6dd005e8db20f0c63a5d10984cba328","a3be878ff1e1964ab2dc8e0a3b67087cf838731c7f3d8f603337e7b712fdd558","5433f7f77cd1fd53f45bd82445a4e437b2f6a72a32070e907530a4fea56c30c8","9be74296ee565af0c12d7071541fdd23260f53c3da7731fb6361f61150a791f6",{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true},{"version":"f501a53b94ba382d9ba396a5c486969a3abc68309828fa67f916035f5d37fe2b","affectsGlobalScope":true},"aa658b5d765f630c312ac9202d110bbaf2b82d180376457f0a9d57b42629714a","312ac7cbd070107766a9886fd27f9faad997ef57d93fdfb4095df2c618ac8162","2e9b4e7f9942af902eb85bae6066d04ef1afee51d61554a62d144df3da7dec94","672ad3045f329e94002256f8ed460cfd06173a50c92cde41edaadfacffd16808","64da4965d1e0559e134d9c1621ae400279a216f87ed00c4cce4f2c7c78021712","2205527b976f4f1844adc46a3f0528729fb68cac70027a5fb13c49ca23593797",{"version":"0166fce1204d520fdfd6b5febb3cda3deee438bcbf8ce9ffeb2b1bcde7155346","affectsGlobalScope":true},"d8b13eab85b532285031b06a971fa051bf0175d8fff68065a24a6da9c1c986cf","50c382ba1827988c59aa9cc9d046e386d55d70f762e9e352e95ee8cb7337cdb8","bb9627ab9d078c79bb5623de4ac8e5d08f806ec9b970962dfc83b3211373690d",{"version":"21d7e87f271e72d02f8d167edc902f90b04525edc7918f00f01dd0bd00599f7e","affectsGlobalScope":true},{"version":"6f6abdaf8764ef01a552a958f45e795b5e79153b87ddad3af5264b86d2681b72","affectsGlobalScope":true},"a215554477f7629e3dcbc8cde104bec036b78673650272f5ffdc5a2cee399a0a","c3497fc242aabfedcd430b5932412f94f157b5906568e737f6a18cc77b36a954","cdc1de3b672f9ef03ff15c443aa1b631edca35b6ae6970a7da6400647ff74d95","139ad1dc93a503da85b7a0d5f615bddbae61ad796bc68fedd049150db67a1e26","bf01fdd3b93cf633b3f7420718457af19c57ab8cbfea49268df60bae2e84d627","15c5e91b5f08be34a78e3d976179bf5b7a9cc28dc0ef1ffebffeb3c7812a2dca","5f461d6f5d9ff474f1121cc3fd86aa3cd67476c701f55c306d323c5112201207","65b39cc6b610a4a4aecc321f6efb436f10c0509d686124795b4c36a5e915b89e","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633",{"version":"83fe38aa2243059ea859325c006da3964ead69b773429fe049ebb0426e75424d","affectsGlobalScope":true},"d3edb86744e2c19f2c1503849ac7594a5e06024f2451bacae032390f2e20314a",{"version":"e501cbca25bd54f0bcb89c00f092d3cae227e970b93fd76207287fd8110b123d","affectsGlobalScope":true},{"version":"8a3e61347b8f80aa5af532094498bceb0c0b257b25a6aa8ab4880fd6ed57c95a","affectsGlobalScope":true},"98e00f3613402504bc2a2c9a621800ab48e0a463d1eed062208a4ae98ad8f84c","950f6810f7c80e0cffefcf1bcc6ade3485c94394720e334c3c2be3c16b6922fb","5475df7cfc493a08483c9d7aa61cc04791aecba9d0a2efc213f23c4006d4d3cd","000720870b275764c65e9f28ac97cc9e4d9e4a36942d4750ca8603e416e9c57c",{"version":"54412c70bacb9ed547ed6caae8836f712a83ccf58d94466f3387447ec4e82dc3","affectsGlobalScope":true},{"version":"e74e7b0baa7a24f073080091427d36a75836d584b9393e6ac2b1daf1647fe65a","affectsGlobalScope":true},"4c48e931a72f6971b5add7fdb1136be1d617f124594e94595f7114af749395e0","478eb5c32250678a906d91e0529c70243fc4d75477a08f3da408e2615396f558","e686a88c9ee004c8ba12ffc9d674ca3192a4c50ed0ca6bd5b2825c289e2b2bfe",{"version":"0d27932df2fbc3728e78b98892540e24084424ce12d3bd32f62a23cf307f411f","affectsGlobalScope":true},"4423fb3d6abe6eefb8d7f79eb2df9510824a216ec1c6feee46718c9b18e6d89f",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"01c47d1c006b3a15b51d89d7764fff7e4fabc4e412b3a61ee5357bd74b822879","ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea",{"version":"297357003eaebc557bc00920d14a1296f5191e0ba44e768499b33f59a738e615","affectsGlobalScope":true},"282f98006ed7fa9bb2cd9bdbe2524595cfc4bcd58a0bb3232e4519f2138df811","6222e987b58abfe92597e1273ad7233626285bc2d78409d4a7b113d81a83496b","cbe726263ae9a7bf32352380f7e8ab66ee25b3457137e316929269c19e18a2be","8b96046bf5fb0a815cba6b0880d9f97b7f3a93cf187e8dcfe8e2792e97f38f87",{"version":"bacf2c84cf448b2cd02c717ad46c3d7fd530e0c91282888c923ad64810a4d511","affectsGlobalScope":true},"858d0d831826c6eb563df02f7db71c90e26deadd0938652096bea3cc14899700","8885cf05f3e2abf117590bbb951dcf6359e3e5ac462af1c901cfd24c6a6472e2","4d979e3c12ffb6497d2b1dc5613130196d986fff764c4526360c0716a162e7e7","e61df3640a38d535fd4bc9f4a53aef17c296b58dc4b6394fd576b808dd2fe5e6","80781460eca408fe8d2937d9fdbbb780d6aac35f549621e6200c9bee1da5b8fe","4719c209b9c00b579553859407a7e5dcfaa1c472994bd62aa5dd3cc0757eb077","7ec359bbc29b69d4063fe7dad0baaf35f1856f914db16b3f4f6e3e1bca4099fa","b9261ac3e9944d3d72c5ee4cf888ad35d9743a5563405c6963c4e43ee3708ca4","c84fd54e8400def0d1ef1569cafd02e9f39a622df9fa69b57ccc82128856b916","a022503e75d6953d0e82c2c564508a5c7f8556fad5d7f971372d2d40479e4034","2ed6489ef46eb61442d067c08e87e3db501c0bfb2837eee4041a27bf3e792bb0","644491cde678bd462bb922c1d0cfab8f17d626b195ccb7f008612dc31f445d2d","d60fe6d59d4e19ecc65359490b8535e359ca4b760d2cdb56897ca75d09d41ba3","f45a2a8b1777ecb50ed65e1a04bb899d4b676529b7921bd5d69b08573a00c832","774b783046ba3d473948132d28a69f52a295b2f378f2939304118ba571b1355e","b5734e05c787a40e4f9efe71f16683c5f7dc3bdb0de7c04440c855bd000f8fa7","14ba97f0907144771331e1349fdccb5a13526eba0647e6b447e572376d811b6f","2a771d907aebf9391ac1f50e4ad37952943515eeea0dcc7e78aa08f508294668","7165050eddaed878c2d2cd3cafcaf171072ac39e586a048c0603712b5555f536","82e687ebd99518bc63ea04b0c3810fb6e50aa6942decd0ca6f7a56d9b9a212a6","7f698624bbbb060ece7c0e51b7236520ebada74b747d7523c7df376453ed6fea","8f07f2b6514744ac96e51d7cb8518c0f4de319471237ea10cf688b8d0e9d0225","9ae0ca65717af0d3b554a26fd333ad9c78ad3910ad4b22140ff02acb63076927","0cc4f99082531b78f878337e1a6a34fe6b47bab20f9ec0197225ba034d3c7024","50b3300f08ddfa78e31f569076e4c07c7c4e4bfcb8032dd9de98408fd8de295e","dd6a4b050f1016c0318291b42c98ab068e07e208b1ae8e4e27167c2b8007406f","1e44fdff229bd5c778e3e4f059ae7b81c9cc68e36909663102facd4d997bc810","c8b32e13904cefb5b09c9ce938352e20747295f412af559a8f3791596fceabf6","8c4b73849e2f9a2d065c350668b8e78d3d89d4774d266c243a8900eaf364e559",{"version":"c7935f3c201b533de0c117060b8d3df572d109504028e73e1472330e57b3f345","signature":"46a4a00229c381be516aac49d7468861314a888334f20cf85b81469f13a24754"},{"version":"f29e0dcf889ff2a0a5310c30963d15b5ce3627668ffb23db03befac9d311141c","signature":"52bbeff9183b21df8b1be0dc6d883fbec340a5794a23afc45c8c117f7d1df0b8"},{"version":"842f39a3910f0d3495d144d9754c8d18ba36c13e2636dd792adbc1da12c8e584","signature":"f63b41dca1cf04b522a14fb7ee9870b9634b8a7d9b9b3bd85b1b80febc7d7af4"},{"version":"96a3e797a0bc90a06323d643803f093fd6e8458a105c70f4bcc3249cc15e0897","signature":"956804680bf375b21f9eca7e093aac2b0b18081be76662d3f02802dbf373aa0b"},"ec76e72c9ea9bde07a2cb3497d068b5c4e2b83a8b16677d729bfd40e5fc0f6a7","be2e4f1f94f45c78c60ef52d2514037d0b0bba14086db35ab18a4751c4306060"],"root":[196,[202,207]],"options":{"allowImportingTsExtensions":true,"allowSyntheticDefaultImports":true,"checkJs":false,"composite":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"jsx":1,"module":99,"noImplicitAny":false,"noUncheckedIndexedAccess":false,"noUnusedLocals":true,"removeComments":false,"skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":false,"target":99,"useDefineForClassFields":true},"fileIdsList":[[73],[113],[114,119,149],[115,120,126,127,134,146,157],[115,116,126,134],[117,158],[118,119,127,135],[119,146,154],[120,122,126,134],[113,121],[122,123],[126],[124,126],[113,126],[126,127,128,146,157],[126,127,128,141,146,149],[111,162],[111,122,126,129,134,146,157],[126,127,129,130,134,146,154,157],[129,131,146,154,157],[73,74,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164],[126,132],[133,157,162],[122,126,134,146],[135],[136],[113,137],[73,74,113,114,115,116,117,118,119,120,121,122,123,124,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163],[139],[140],[126,141,142],[141,143,158,160],[114,126,146,147,148,149],[114,146,148],[146,147],[149],[150],[73,146],[126,152,153],[152,153],[119,134,146,154],[155],[134,156],[114,129,140,157],[119,158],[146,159],[133,160],[161],[114,119,126,128,137,146,157,160,162],[146,163],[188],[186,188],[177,185,186,187,189],[175],[178,183,188,191],[174,191],[178,179,182,183,184,191],[178,179,180,182,183,191],[175,176,177,178,179,183,184,185,187,188,189,191],[173,175,176,177,178,179,180,182,183,184,185,186,187,188,189,190],[173,191],[178,180,181,183,184,191],[182,191],[183,184,188,191],[176,186],[167,194],[166,167],[173],[83,87,157],[83,146,157],[78],[80,83,154,157],[134,154],[165],[78,165],[80,83,134,157],[75,76,79,82,114,126,146,157],[83,90],[75,81],[83,104,105],[79,83,114,149,157,165],[114,165],[104,114,165],[77,78,165],[83],[77,78,79,80,81,82,83,84,85,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,105,106,107,108,109,110],[83,98],[83,90,91],[81,83,91,92],[82],[75,78,83],[83,87,91,92],[87],[81,83,86,157],[75,80,83,90],[114,146],[78,83,104,114,162,165],[167,194,195,199],[167,194,195,198],[200],[126,127,129,130,131,134,146,154,157,163,165,167,168,169,170,171,172,191,192,193,194],[168,169,170,171],[168,169,170],[168],[169],[167],[127,136,195],[127,136,195,197,201,202],[127,136,195,204],[196,202,203,204,205,206]],"referencedMap":[[73,1],[74,1],[113,2],[114,3],[115,4],[116,5],[117,6],[118,7],[119,8],[120,9],[121,10],[122,11],[123,11],[125,12],[124,13],[126,14],[127,15],[128,16],[112,17],[129,18],[130,19],[131,20],[165,21],[132,22],[133,23],[134,24],[135,25],[136,26],[137,27],[138,28],[139,29],[140,30],[141,31],[142,31],[143,32],[146,33],[148,34],[147,35],[149,36],[150,37],[151,38],[152,39],[153,40],[154,41],[155,42],[156,43],[157,44],[158,45],[159,46],[160,47],[161,48],[162,49],[163,50],[189,51],[187,52],[188,53],[176,54],[177,52],[184,55],[175,56],[180,57],[181,58],[186,59],[191,60],[174,61],[182,62],[183,63],[178,64],[185,51],[179,65],[197,66],[167,67],[173,68],[90,69],[100,70],[89,69],[110,71],[81,72],[80,73],[109,74],[103,75],[108,76],[83,77],[97,78],[82,79],[106,80],[78,81],[77,82],[107,83],[79,84],[84,85],[88,85],[111,86],[101,87],[92,88],[93,89],[95,90],[91,91],[94,92],[104,74],[86,93],[87,94],[96,95],[76,96],[99,87],[98,85],[105,97],[200,98],[199,99],[201,100],[195,101],[192,102],[171,103],[169,104],[170,105],[194,106],[196,107],[203,108],[205,109],[207,110],[206,107]],"affectedFilesPendingEmit":[196,203,202,205,204,207,206],"emitSignatures":[196,202,203,204,205,206,207]},"version":"5.5.4"}
package/tsup.config.ts DELETED
@@ -1,20 +0,0 @@
1
- import { defineConfig } from "tsup";
2
-
3
- export default defineConfig({
4
- // 入口文件
5
- entry: ["packages/index.ts"],
6
- // 输出目录
7
- outDir: "fast-vite-plugins/dist",
8
- // 输出格式
9
- format: ["cjs", "esm"],
10
- // 生成类型定义文件
11
- dts: true,
12
- // 禁用代码拆分
13
- splitting: false,
14
- // 生成 source map
15
- sourcemap: true,
16
- // 清理输出目录
17
- clean: true,
18
- // 压缩输出文件
19
- minify: true,
20
- });