@cratis/arc.vite 18.0.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.
Files changed (36) hide show
  1. package/AddQueryStringToReferences.ts +23 -0
  2. package/EmitMetadataPlugin.ts +96 -0
  3. package/README.md +65 -0
  4. package/dist/cjs/AddQueryStringToReferences.d.ts +6 -0
  5. package/dist/cjs/AddQueryStringToReferences.d.ts.map +1 -0
  6. package/dist/cjs/AddQueryStringToReferences.js +23 -0
  7. package/dist/cjs/AddQueryStringToReferences.js.map +1 -0
  8. package/dist/cjs/EmitMetadataPlugin.d.ts +13 -0
  9. package/dist/cjs/EmitMetadataPlugin.d.ts.map +1 -0
  10. package/dist/cjs/EmitMetadataPlugin.js +64 -0
  11. package/dist/cjs/EmitMetadataPlugin.js.map +1 -0
  12. package/dist/cjs/index.d.ts +3 -0
  13. package/dist/cjs/index.d.ts.map +1 -0
  14. package/dist/cjs/index.js +10 -0
  15. package/dist/cjs/index.js.map +1 -0
  16. package/dist/esm/AddQueryStringToReferences.d.ts +6 -0
  17. package/dist/esm/AddQueryStringToReferences.d.ts.map +1 -0
  18. package/dist/esm/AddQueryStringToReferences.js +21 -0
  19. package/dist/esm/AddQueryStringToReferences.js.map +1 -0
  20. package/dist/esm/EmitMetadataPlugin.d.ts +13 -0
  21. package/dist/esm/EmitMetadataPlugin.d.ts.map +1 -0
  22. package/dist/esm/EmitMetadataPlugin.js +62 -0
  23. package/dist/esm/EmitMetadataPlugin.js.map +1 -0
  24. package/dist/esm/index.d.ts +3 -0
  25. package/dist/esm/index.d.ts.map +1 -0
  26. package/dist/esm/index.js +3 -0
  27. package/dist/esm/index.js.map +1 -0
  28. package/dist/esm/tsconfig.tsbuildinfo +1 -0
  29. package/dist/esm/vite.config.d.mts +3 -0
  30. package/dist/esm/vite.config.d.mts.map +1 -0
  31. package/dist/esm/vite.config.mjs +5 -0
  32. package/dist/esm/vite.config.mjs.map +1 -0
  33. package/for_RemoveMeSpec/when_actual_spec_added.ts +6 -0
  34. package/global.d.ts +11 -0
  35. package/index.ts +5 -0
  36. package/package.json +48 -0
@@ -0,0 +1,23 @@
1
+ // Copyright (c) Cratis. All rights reserved.
2
+ // Licensed under the MIT license. See LICENSE file in the project root for full license information.
3
+
4
+ export const AddQueryStringToReferences = (queryString: string) => {
5
+ return {
6
+ name: 'add-query-string-to-references',
7
+ enforce: 'post', // Ensure it runs after the default processes
8
+ generateBundle(options, bundle) {
9
+ for (const file in bundle) {
10
+ const chunk = bundle[file];
11
+ if (chunk.type === 'chunk') {
12
+ chunk.code = chunk.code.replace(/(import\s+.*?from\s+['"])(.*?)(['"])/g, `$1$2?${queryString}$3`);
13
+ chunk.code = chunk.code.replace(/(export\s+.*?from\s+['"])(.*?)(['"])/g, `$1$2?${queryString}$3`);
14
+ }
15
+
16
+ if (chunk.type === 'asset' && chunk.fileName.endsWith('.css')) {
17
+ // Modify CSS url() references
18
+ chunk.source = chunk.source.replace(/(url\(\/['"]?)(.*?)(['"]?\))/g, `$1$2?${queryString}$3`);
19
+ }
20
+ }
21
+ },
22
+ };
23
+ };
@@ -0,0 +1,96 @@
1
+ // Copyright (c) Cratis. All rights reserved.
2
+ // Licensed under the MIT license. See LICENSE file in the project root for full license information.
3
+
4
+ // Based on: https://github.com/arjendeblok/vite-plugin-emit-metadata
5
+
6
+ import path from 'path';
7
+ import ts from 'typescript';
8
+
9
+ const findContent = (fileContent: string, contentRegEx: RegExp) => contentRegEx.test(fileContent);
10
+
11
+ /* eslint-disable @typescript-eslint/no-explicit-any */
12
+
13
+
14
+ const parseTsConfig = (tsconfig: string, cwd = process.cwd()): ts.ParsedCommandLine => {
15
+ const fileName = ts.findConfigFile(
16
+ cwd,
17
+ ts.sys.fileExists,
18
+ tsconfig
19
+ );
20
+
21
+ // if the value was provided, but no file, fail hard
22
+ if (tsconfig !== undefined && !fileName)
23
+ throw new Error(`failed to open '${fileName}'`);
24
+
25
+ let loadedConfig: any = {};
26
+ let baseDir = cwd;
27
+ if (fileName) {
28
+ const text = ts.sys.readFile(fileName);
29
+ if (text === undefined) throw new Error(`failed to read '${fileName}'`);
30
+
31
+ const result = ts.parseConfigFileTextToJson(fileName, text);
32
+
33
+ if (result.error !== undefined) {
34
+ console.error(`failed to parse '${fileName}'`);
35
+ throw new Error(`failed to parse '${fileName}'`);
36
+ }
37
+
38
+ loadedConfig = result.config;
39
+ baseDir = path.dirname(fileName);
40
+ }
41
+
42
+ const parsedTsConfig = ts.parseJsonConfigFileContent(
43
+ loadedConfig,
44
+ ts.sys,
45
+ baseDir
46
+ );
47
+
48
+ if (parsedTsConfig.errors[0]) console.error(parsedTsConfig.errors);
49
+
50
+ if (loadedConfig.emitDecoratorMetadata == false) {
51
+ console.error('vite-plugin-metadata: emitDecoratorMetadata not set', parsedTsConfig);
52
+ }
53
+
54
+ return parsedTsConfig;
55
+ };
56
+
57
+ export const EmitMetadataPlugin = ({
58
+ tsconfigPath = path.join(process.cwd(), './tsconfig.json'),
59
+ fileRegEx = /\.ts$/,
60
+ contentRegEx = /((?<![\\(\s]\s*['"])@\w*[\w\d]\s*(?![;])[\\((?=\s)])/
61
+ } = {}) => {
62
+
63
+ let parsedTsConfig: ts.ParsedCommandLine | null = null;
64
+
65
+ return {
66
+ name: 'transform-file',
67
+ enforce: 'pre',
68
+
69
+ transform(src: string, id: string) {
70
+ if (!parsedTsConfig) {
71
+ parsedTsConfig = parseTsConfig(tsconfigPath, process.cwd());
72
+ if (parsedTsConfig.options.sourceMap) {
73
+ parsedTsConfig.options.sourcemap = false;
74
+ parsedTsConfig.options.inlineSources = true;
75
+ parsedTsConfig.options.inlineSourceMap = true;
76
+ }
77
+ }
78
+
79
+ if (fileRegEx.test(id)) {
80
+ const hasDecorator = findContent(src, contentRegEx);
81
+ if (!hasDecorator) {
82
+ return;
83
+ }
84
+
85
+ const program = ts.transpileModule(src, { compilerOptions: parsedTsConfig.options });
86
+ return {
87
+ code: program.outputText,
88
+ map: null
89
+ };
90
+ }
91
+
92
+ return;
93
+ },
94
+ };
95
+ };
96
+
package/README.md ADDED
@@ -0,0 +1,65 @@
1
+ # Cratis Application Model
2
+
3
+ ## Packages / Deployables
4
+
5
+ [![Nuget](https://img.shields.io/nuget/v/Cratis.Arc?logo=nuget)](http://nuget.org/packages/Cratis.Arc)
6
+ [![NPM](https://img.shields.io/npm/v/@cratis/arc?label=@cratis/arc&logo=npm)](https://www.npmjs.com/package/@cratis/arc)
7
+
8
+ ## Builds
9
+
10
+ [![.NET Build](https://github.com/cratis/arc/actions/workflows/dotnet-build.yml/badge.svg)](https://github.com/cratis/arc/actions/workflows/dotnet-build.yml)
11
+ [![JavaScript Build](https://github.com/cratis/arc/actions/workflows/javascript-build.yml/badge.svg)](https://github.com/cratis/arc/actions/workflows/javascript-build.yml)
12
+ [![Documentation site](https://github.com/Cratis/Documentation/actions/workflows/pages.yml/badge.svg)](https://github.com/Cratis/Documentation/actions/workflows/pages.yml)
13
+
14
+ ## Description
15
+
16
+ The Cratis Application model represents an opinionated approach to building consistent applications based on the concepts behind CQRS.
17
+ It offers extensions for different frameworks and is built on top of ASP.NET Core. One of the traits of Arc has is the
18
+ bridging between the backend and the frontend. Arc provides a tool, called **ProxyGenerator** that generates TypeScript
19
+ code for recognized artifacts matching the criteria of what is considered a **commmand** or a **query**.
20
+
21
+ ## Contributing
22
+
23
+ If you want to jump into building this repository and possibly contributing, please refer to [contributing](./Documentation/contributing/index.md).
24
+
25
+ ### Prerequisites
26
+
27
+ The following are prerequisites to work with this repository.
28
+
29
+ * [.NET 8+](https://dotnet.microsoft.com/en-us/).
30
+ * [Node 16+](https://nodejs.org/en)
31
+ * [Yarn](https://yarnpkg.com)
32
+
33
+ ### Central Package Management
34
+
35
+ This repository leverages [Central Package Management](https://learn.microsoft.com/en-us/nuget/consume-packages/Central-Package-Management), which
36
+ means that all package versions are managed from a file at the root level called [Directory.Packages.props](./Directory.Packages.props).
37
+
38
+ In addition there are also [Directory.Build.props](https://learn.microsoft.com/en-us/visualstudio/msbuild/customize-by-directory?view=vs-2022#directorybuildprops-and-directorybuildtargets) files for
39
+ setting up common settings that are applied cross cuttingly.
40
+
41
+ ### Root package.json
42
+
43
+ The `package.json` found at the root level defines all the workspaces. It is assumed
44
+
45
+ All developer dependencies are defined in the top level `package.json`. The reason for this is to be able to provide global scripts
46
+ for every package to use for easier maintenance.
47
+
48
+ The `package.json` found at the top level contains scripts that can then be used in a child project for this to work properly.
49
+
50
+ In a package, all you need to do is to define the scripts to use the global scripts in the `package.json´ of that project:
51
+
52
+ ```json
53
+ {
54
+ "scripts": {
55
+ "prepublish": "yarn g:build",
56
+ "clean": "yarn g:clean",
57
+ "build": "yarn g:build",
58
+ "lint": "yarn g:lint",
59
+ "lint:ci": "yarn g:lint:ci",
60
+ "test": "yarn g:test",
61
+ "ci": "yarn g:ci",
62
+ "up": "yarn g:up"
63
+ }
64
+ }
65
+ ```
@@ -0,0 +1,6 @@
1
+ export declare const AddQueryStringToReferences: (queryString: string) => {
2
+ name: string;
3
+ enforce: string;
4
+ generateBundle(options: any, bundle: any): void;
5
+ };
6
+ //# sourceMappingURL=AddQueryStringToReferences.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AddQueryStringToReferences.d.ts","sourceRoot":"","sources":["../../AddQueryStringToReferences.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,0BAA0B,GAAI,aAAa,MAAM;;;;CAmB7D,CAAC"}
@@ -0,0 +1,23 @@
1
+ 'use strict';
2
+
3
+ const AddQueryStringToReferences = (queryString) => {
4
+ return {
5
+ name: 'add-query-string-to-references',
6
+ enforce: 'post',
7
+ generateBundle(options, bundle) {
8
+ for (const file in bundle) {
9
+ const chunk = bundle[file];
10
+ if (chunk.type === 'chunk') {
11
+ chunk.code = chunk.code.replace(/(import\s+.*?from\s+['"])(.*?)(['"])/g, `$1$2?${queryString}$3`);
12
+ chunk.code = chunk.code.replace(/(export\s+.*?from\s+['"])(.*?)(['"])/g, `$1$2?${queryString}$3`);
13
+ }
14
+ if (chunk.type === 'asset' && chunk.fileName.endsWith('.css')) {
15
+ chunk.source = chunk.source.replace(/(url\(\/['"]?)(.*?)(['"]?\))/g, `$1$2?${queryString}$3`);
16
+ }
17
+ }
18
+ },
19
+ };
20
+ };
21
+
22
+ exports.AddQueryStringToReferences = AddQueryStringToReferences;
23
+ //# sourceMappingURL=AddQueryStringToReferences.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AddQueryStringToReferences.js","sources":["../../AddQueryStringToReferences.ts"],"sourcesContent":["// Copyright (c) Cratis. All rights reserved.\n// Licensed under the MIT license. See LICENSE file in the project root for full license information.\n\nexport const AddQueryStringToReferences = (queryString: string) => {\n return {\n name: 'add-query-string-to-references',\n enforce: 'post', // Ensure it runs after the default processes\n generateBundle(options, bundle) {\n for (const file in bundle) {\n const chunk = bundle[file];\n if (chunk.type === 'chunk') {\n chunk.code = chunk.code.replace(/(import\\s+.*?from\\s+['\"])(.*?)(['\"])/g, `$1$2?${queryString}$3`);\n chunk.code = chunk.code.replace(/(export\\s+.*?from\\s+['\"])(.*?)(['\"])/g, `$1$2?${queryString}$3`);\n }\n\n if (chunk.type === 'asset' && chunk.fileName.endsWith('.css')) {\n // Modify CSS url() references\n chunk.source = chunk.source.replace(/(url\\(\\/['\"]?)(.*?)(['\"]?\\))/g, `$1$2?${queryString}$3`);\n }\n }\n },\n };\n};\n"],"names":[],"mappings":";;AAGO,MAAM,0BAA0B,GAAG,CAAC,WAAmB,KAAI;IAC9D,OAAO;AACH,QAAA,IAAI,EAAE,gCAAgC;AACtC,QAAA,OAAO,EAAE,MAAM;QACf,cAAc,CAAC,OAAO,EAAE,MAAM,EAAA;AAC1B,YAAA,KAAK,MAAM,IAAI,IAAI,MAAM,EAAE;AACvB,gBAAA,MAAM,KAAK,GAAG,MAAM,CAAC,IAAI,CAAC;AAC1B,gBAAA,IAAI,KAAK,CAAC,IAAI,KAAK,OAAO,EAAE;AACxB,oBAAA,KAAK,CAAC,IAAI,GAAG,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC,uCAAuC,EAAE,CAAA,KAAA,EAAQ,WAAW,CAAA,EAAA,CAAI,CAAC;AACjG,oBAAA,KAAK,CAAC,IAAI,GAAG,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC,uCAAuC,EAAE,CAAA,KAAA,EAAQ,WAAW,CAAA,EAAA,CAAI,CAAC;gBACrG;AAEA,gBAAA,IAAI,KAAK,CAAC,IAAI,KAAK,OAAO,IAAI,KAAK,CAAC,QAAQ,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE;AAE3D,oBAAA,KAAK,CAAC,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC,OAAO,CAAC,+BAA+B,EAAE,CAAA,KAAA,EAAQ,WAAW,CAAA,EAAA,CAAI,CAAC;gBACjG;YACJ;QACJ,CAAC;KACJ;AACL;;;;"}
@@ -0,0 +1,13 @@
1
+ export declare const EmitMetadataPlugin: ({ tsconfigPath, fileRegEx, contentRegEx }?: {
2
+ tsconfigPath?: string | undefined;
3
+ fileRegEx?: RegExp | undefined;
4
+ contentRegEx?: RegExp | undefined;
5
+ }) => {
6
+ name: string;
7
+ enforce: string;
8
+ transform(src: string, id: string): {
9
+ code: string;
10
+ map: null;
11
+ } | undefined;
12
+ };
13
+ //# sourceMappingURL=EmitMetadataPlugin.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EmitMetadataPlugin.d.ts","sourceRoot":"","sources":["../../EmitMetadataPlugin.ts"],"names":[],"mappings":"AAwDA,eAAO,MAAM,kBAAkB,GAAI;;;;CAI7B;;;mBAQiB,MAAM,MAAM,MAAM;;;;CA0BxC,CAAC"}
@@ -0,0 +1,64 @@
1
+ 'use strict';
2
+
3
+ var path = require('path');
4
+ var ts = require('typescript');
5
+
6
+ const findContent = (fileContent, contentRegEx) => contentRegEx.test(fileContent);
7
+ const parseTsConfig = (tsconfig, cwd = process.cwd()) => {
8
+ const fileName = ts.findConfigFile(cwd, ts.sys.fileExists, tsconfig);
9
+ if (tsconfig !== undefined && !fileName)
10
+ throw new Error(`failed to open '${fileName}'`);
11
+ let loadedConfig = {};
12
+ let baseDir = cwd;
13
+ if (fileName) {
14
+ const text = ts.sys.readFile(fileName);
15
+ if (text === undefined)
16
+ throw new Error(`failed to read '${fileName}'`);
17
+ const result = ts.parseConfigFileTextToJson(fileName, text);
18
+ if (result.error !== undefined) {
19
+ console.error(`failed to parse '${fileName}'`);
20
+ throw new Error(`failed to parse '${fileName}'`);
21
+ }
22
+ loadedConfig = result.config;
23
+ baseDir = path.dirname(fileName);
24
+ }
25
+ const parsedTsConfig = ts.parseJsonConfigFileContent(loadedConfig, ts.sys, baseDir);
26
+ if (parsedTsConfig.errors[0])
27
+ console.error(parsedTsConfig.errors);
28
+ if (loadedConfig.emitDecoratorMetadata == false) {
29
+ console.error('vite-plugin-metadata: emitDecoratorMetadata not set', parsedTsConfig);
30
+ }
31
+ return parsedTsConfig;
32
+ };
33
+ const EmitMetadataPlugin = ({ tsconfigPath = path.join(process.cwd(), './tsconfig.json'), fileRegEx = /\.ts$/, contentRegEx = /((?<![\\(\s]\s*['"])@\w*[\w\d]\s*(?![;])[\\((?=\s)])/ } = {}) => {
34
+ let parsedTsConfig = null;
35
+ return {
36
+ name: 'transform-file',
37
+ enforce: 'pre',
38
+ transform(src, id) {
39
+ if (!parsedTsConfig) {
40
+ parsedTsConfig = parseTsConfig(tsconfigPath, process.cwd());
41
+ if (parsedTsConfig.options.sourceMap) {
42
+ parsedTsConfig.options.sourcemap = false;
43
+ parsedTsConfig.options.inlineSources = true;
44
+ parsedTsConfig.options.inlineSourceMap = true;
45
+ }
46
+ }
47
+ if (fileRegEx.test(id)) {
48
+ const hasDecorator = findContent(src, contentRegEx);
49
+ if (!hasDecorator) {
50
+ return;
51
+ }
52
+ const program = ts.transpileModule(src, { compilerOptions: parsedTsConfig.options });
53
+ return {
54
+ code: program.outputText,
55
+ map: null
56
+ };
57
+ }
58
+ return;
59
+ },
60
+ };
61
+ };
62
+
63
+ exports.EmitMetadataPlugin = EmitMetadataPlugin;
64
+ //# sourceMappingURL=EmitMetadataPlugin.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EmitMetadataPlugin.js","sources":["../../EmitMetadataPlugin.ts"],"sourcesContent":["// Copyright (c) Cratis. All rights reserved.\n// Licensed under the MIT license. See LICENSE file in the project root for full license information.\n\n// Based on: https://github.com/arjendeblok/vite-plugin-emit-metadata\n\nimport path from 'path';\nimport ts from 'typescript';\n\nconst findContent = (fileContent: string, contentRegEx: RegExp) => contentRegEx.test(fileContent);\n\n/* eslint-disable @typescript-eslint/no-explicit-any */\n\n\nconst parseTsConfig = (tsconfig: string, cwd = process.cwd()): ts.ParsedCommandLine => {\n const fileName = ts.findConfigFile(\n cwd,\n ts.sys.fileExists,\n tsconfig\n );\n\n // if the value was provided, but no file, fail hard\n if (tsconfig !== undefined && !fileName)\n throw new Error(`failed to open '${fileName}'`);\n\n let loadedConfig: any = {};\n let baseDir = cwd;\n if (fileName) {\n const text = ts.sys.readFile(fileName);\n if (text === undefined) throw new Error(`failed to read '${fileName}'`);\n\n const result = ts.parseConfigFileTextToJson(fileName, text);\n\n if (result.error !== undefined) {\n console.error(`failed to parse '${fileName}'`);\n throw new Error(`failed to parse '${fileName}'`);\n }\n\n loadedConfig = result.config;\n baseDir = path.dirname(fileName);\n }\n\n const parsedTsConfig = ts.parseJsonConfigFileContent(\n loadedConfig,\n ts.sys,\n baseDir\n );\n\n if (parsedTsConfig.errors[0]) console.error(parsedTsConfig.errors);\n\n if (loadedConfig.emitDecoratorMetadata == false) {\n console.error('vite-plugin-metadata: emitDecoratorMetadata not set', parsedTsConfig);\n }\n\n return parsedTsConfig;\n};\n\nexport const EmitMetadataPlugin = ({\n tsconfigPath = path.join(process.cwd(), './tsconfig.json'),\n fileRegEx = /\\.ts$/,\n contentRegEx = /((?<![\\\\(\\s]\\s*['\"])@\\w*[\\w\\d]\\s*(?![;])[\\\\((?=\\s)])/\n} = {}) => {\n\n let parsedTsConfig: ts.ParsedCommandLine | null = null;\n\n return {\n name: 'transform-file',\n enforce: 'pre',\n\n transform(src: string, id: string) {\n if (!parsedTsConfig) {\n parsedTsConfig = parseTsConfig(tsconfigPath, process.cwd());\n if (parsedTsConfig.options.sourceMap) {\n parsedTsConfig.options.sourcemap = false;\n parsedTsConfig.options.inlineSources = true;\n parsedTsConfig.options.inlineSourceMap = true;\n }\n }\n\n if (fileRegEx.test(id)) {\n const hasDecorator = findContent(src, contentRegEx);\n if (!hasDecorator) {\n return;\n }\n\n const program = ts.transpileModule(src, { compilerOptions: parsedTsConfig.options });\n return {\n code: program.outputText,\n map: null\n };\n }\n\n return;\n },\n };\n};\n\n"],"names":[],"mappings":"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"}
@@ -0,0 +1,3 @@
1
+ export * from './AddQueryStringToReferences';
2
+ export * from './EmitMetadataPlugin';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAGA,cAAc,8BAA8B,CAAC;AAC7C,cAAc,sBAAsB,CAAC"}
@@ -0,0 +1,10 @@
1
+ 'use strict';
2
+
3
+ var AddQueryStringToReferences = require('./AddQueryStringToReferences.js');
4
+ var EmitMetadataPlugin = require('./EmitMetadataPlugin.js');
5
+
6
+
7
+
8
+ exports.AddQueryStringToReferences = AddQueryStringToReferences.AddQueryStringToReferences;
9
+ exports.EmitMetadataPlugin = EmitMetadataPlugin.EmitMetadataPlugin;
10
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;"}
@@ -0,0 +1,6 @@
1
+ export declare const AddQueryStringToReferences: (queryString: string) => {
2
+ name: string;
3
+ enforce: string;
4
+ generateBundle(options: any, bundle: any): void;
5
+ };
6
+ //# sourceMappingURL=AddQueryStringToReferences.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AddQueryStringToReferences.d.ts","sourceRoot":"","sources":["../../AddQueryStringToReferences.ts"],"names":[],"mappings":"AAGA,eAAO,MAAM,0BAA0B,GAAI,aAAa,MAAM;;;;CAmB7D,CAAC"}
@@ -0,0 +1,21 @@
1
+ const AddQueryStringToReferences = (queryString) => {
2
+ return {
3
+ name: 'add-query-string-to-references',
4
+ enforce: 'post',
5
+ generateBundle(options, bundle) {
6
+ for (const file in bundle) {
7
+ const chunk = bundle[file];
8
+ if (chunk.type === 'chunk') {
9
+ chunk.code = chunk.code.replace(/(import\s+.*?from\s+['"])(.*?)(['"])/g, `$1$2?${queryString}$3`);
10
+ chunk.code = chunk.code.replace(/(export\s+.*?from\s+['"])(.*?)(['"])/g, `$1$2?${queryString}$3`);
11
+ }
12
+ if (chunk.type === 'asset' && chunk.fileName.endsWith('.css')) {
13
+ chunk.source = chunk.source.replace(/(url\(\/['"]?)(.*?)(['"]?\))/g, `$1$2?${queryString}$3`);
14
+ }
15
+ }
16
+ },
17
+ };
18
+ };
19
+
20
+ export { AddQueryStringToReferences };
21
+ //# sourceMappingURL=AddQueryStringToReferences.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"AddQueryStringToReferences.js","sources":["../../AddQueryStringToReferences.ts"],"sourcesContent":["// Copyright (c) Cratis. All rights reserved.\n// Licensed under the MIT license. See LICENSE file in the project root for full license information.\n\nexport const AddQueryStringToReferences = (queryString: string) => {\n return {\n name: 'add-query-string-to-references',\n enforce: 'post', // Ensure it runs after the default processes\n generateBundle(options, bundle) {\n for (const file in bundle) {\n const chunk = bundle[file];\n if (chunk.type === 'chunk') {\n chunk.code = chunk.code.replace(/(import\\s+.*?from\\s+['\"])(.*?)(['\"])/g, `$1$2?${queryString}$3`);\n chunk.code = chunk.code.replace(/(export\\s+.*?from\\s+['\"])(.*?)(['\"])/g, `$1$2?${queryString}$3`);\n }\n\n if (chunk.type === 'asset' && chunk.fileName.endsWith('.css')) {\n // Modify CSS url() references\n chunk.source = chunk.source.replace(/(url\\(\\/['\"]?)(.*?)(['\"]?\\))/g, `$1$2?${queryString}$3`);\n }\n }\n },\n };\n};\n"],"names":[],"mappings":"AAGO,MAAM,0BAA0B,GAAG,CAAC,WAAmB,KAAI;IAC9D,OAAO;AACH,QAAA,IAAI,EAAE,gCAAgC;AACtC,QAAA,OAAO,EAAE,MAAM;QACf,cAAc,CAAC,OAAO,EAAE,MAAM,EAAA;AAC1B,YAAA,KAAK,MAAM,IAAI,IAAI,MAAM,EAAE;AACvB,gBAAA,MAAM,KAAK,GAAG,MAAM,CAAC,IAAI,CAAC;AAC1B,gBAAA,IAAI,KAAK,CAAC,IAAI,KAAK,OAAO,EAAE;AACxB,oBAAA,KAAK,CAAC,IAAI,GAAG,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC,uCAAuC,EAAE,CAAA,KAAA,EAAQ,WAAW,CAAA,EAAA,CAAI,CAAC;AACjG,oBAAA,KAAK,CAAC,IAAI,GAAG,KAAK,CAAC,IAAI,CAAC,OAAO,CAAC,uCAAuC,EAAE,CAAA,KAAA,EAAQ,WAAW,CAAA,EAAA,CAAI,CAAC;gBACrG;AAEA,gBAAA,IAAI,KAAK,CAAC,IAAI,KAAK,OAAO,IAAI,KAAK,CAAC,QAAQ,CAAC,QAAQ,CAAC,MAAM,CAAC,EAAE;AAE3D,oBAAA,KAAK,CAAC,MAAM,GAAG,KAAK,CAAC,MAAM,CAAC,OAAO,CAAC,+BAA+B,EAAE,CAAA,KAAA,EAAQ,WAAW,CAAA,EAAA,CAAI,CAAC;gBACjG;YACJ;QACJ,CAAC;KACJ;AACL;;;;"}
@@ -0,0 +1,13 @@
1
+ export declare const EmitMetadataPlugin: ({ tsconfigPath, fileRegEx, contentRegEx }?: {
2
+ tsconfigPath?: string | undefined;
3
+ fileRegEx?: RegExp | undefined;
4
+ contentRegEx?: RegExp | undefined;
5
+ }) => {
6
+ name: string;
7
+ enforce: string;
8
+ transform(src: string, id: string): {
9
+ code: string;
10
+ map: null;
11
+ } | undefined;
12
+ };
13
+ //# sourceMappingURL=EmitMetadataPlugin.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EmitMetadataPlugin.d.ts","sourceRoot":"","sources":["../../EmitMetadataPlugin.ts"],"names":[],"mappings":"AAwDA,eAAO,MAAM,kBAAkB,GAAI;;;;CAI7B;;;mBAQiB,MAAM,MAAM,MAAM;;;;CA0BxC,CAAC"}
@@ -0,0 +1,62 @@
1
+ import path from 'path';
2
+ import ts from 'typescript';
3
+
4
+ const findContent = (fileContent, contentRegEx) => contentRegEx.test(fileContent);
5
+ const parseTsConfig = (tsconfig, cwd = process.cwd()) => {
6
+ const fileName = ts.findConfigFile(cwd, ts.sys.fileExists, tsconfig);
7
+ if (tsconfig !== undefined && !fileName)
8
+ throw new Error(`failed to open '${fileName}'`);
9
+ let loadedConfig = {};
10
+ let baseDir = cwd;
11
+ if (fileName) {
12
+ const text = ts.sys.readFile(fileName);
13
+ if (text === undefined)
14
+ throw new Error(`failed to read '${fileName}'`);
15
+ const result = ts.parseConfigFileTextToJson(fileName, text);
16
+ if (result.error !== undefined) {
17
+ console.error(`failed to parse '${fileName}'`);
18
+ throw new Error(`failed to parse '${fileName}'`);
19
+ }
20
+ loadedConfig = result.config;
21
+ baseDir = path.dirname(fileName);
22
+ }
23
+ const parsedTsConfig = ts.parseJsonConfigFileContent(loadedConfig, ts.sys, baseDir);
24
+ if (parsedTsConfig.errors[0])
25
+ console.error(parsedTsConfig.errors);
26
+ if (loadedConfig.emitDecoratorMetadata == false) {
27
+ console.error('vite-plugin-metadata: emitDecoratorMetadata not set', parsedTsConfig);
28
+ }
29
+ return parsedTsConfig;
30
+ };
31
+ const EmitMetadataPlugin = ({ tsconfigPath = path.join(process.cwd(), './tsconfig.json'), fileRegEx = /\.ts$/, contentRegEx = /((?<![\\(\s]\s*['"])@\w*[\w\d]\s*(?![;])[\\((?=\s)])/ } = {}) => {
32
+ let parsedTsConfig = null;
33
+ return {
34
+ name: 'transform-file',
35
+ enforce: 'pre',
36
+ transform(src, id) {
37
+ if (!parsedTsConfig) {
38
+ parsedTsConfig = parseTsConfig(tsconfigPath, process.cwd());
39
+ if (parsedTsConfig.options.sourceMap) {
40
+ parsedTsConfig.options.sourcemap = false;
41
+ parsedTsConfig.options.inlineSources = true;
42
+ parsedTsConfig.options.inlineSourceMap = true;
43
+ }
44
+ }
45
+ if (fileRegEx.test(id)) {
46
+ const hasDecorator = findContent(src, contentRegEx);
47
+ if (!hasDecorator) {
48
+ return;
49
+ }
50
+ const program = ts.transpileModule(src, { compilerOptions: parsedTsConfig.options });
51
+ return {
52
+ code: program.outputText,
53
+ map: null
54
+ };
55
+ }
56
+ return;
57
+ },
58
+ };
59
+ };
60
+
61
+ export { EmitMetadataPlugin };
62
+ //# sourceMappingURL=EmitMetadataPlugin.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EmitMetadataPlugin.js","sources":["../../EmitMetadataPlugin.ts"],"sourcesContent":["// Copyright (c) Cratis. All rights reserved.\n// Licensed under the MIT license. See LICENSE file in the project root for full license information.\n\n// Based on: https://github.com/arjendeblok/vite-plugin-emit-metadata\n\nimport path from 'path';\nimport ts from 'typescript';\n\nconst findContent = (fileContent: string, contentRegEx: RegExp) => contentRegEx.test(fileContent);\n\n/* eslint-disable @typescript-eslint/no-explicit-any */\n\n\nconst parseTsConfig = (tsconfig: string, cwd = process.cwd()): ts.ParsedCommandLine => {\n const fileName = ts.findConfigFile(\n cwd,\n ts.sys.fileExists,\n tsconfig\n );\n\n // if the value was provided, but no file, fail hard\n if (tsconfig !== undefined && !fileName)\n throw new Error(`failed to open '${fileName}'`);\n\n let loadedConfig: any = {};\n let baseDir = cwd;\n if (fileName) {\n const text = ts.sys.readFile(fileName);\n if (text === undefined) throw new Error(`failed to read '${fileName}'`);\n\n const result = ts.parseConfigFileTextToJson(fileName, text);\n\n if (result.error !== undefined) {\n console.error(`failed to parse '${fileName}'`);\n throw new Error(`failed to parse '${fileName}'`);\n }\n\n loadedConfig = result.config;\n baseDir = path.dirname(fileName);\n }\n\n const parsedTsConfig = ts.parseJsonConfigFileContent(\n loadedConfig,\n ts.sys,\n baseDir\n );\n\n if (parsedTsConfig.errors[0]) console.error(parsedTsConfig.errors);\n\n if (loadedConfig.emitDecoratorMetadata == false) {\n console.error('vite-plugin-metadata: emitDecoratorMetadata not set', parsedTsConfig);\n }\n\n return parsedTsConfig;\n};\n\nexport const EmitMetadataPlugin = ({\n tsconfigPath = path.join(process.cwd(), './tsconfig.json'),\n fileRegEx = /\\.ts$/,\n contentRegEx = /((?<![\\\\(\\s]\\s*['\"])@\\w*[\\w\\d]\\s*(?![;])[\\\\((?=\\s)])/\n} = {}) => {\n\n let parsedTsConfig: ts.ParsedCommandLine | null = null;\n\n return {\n name: 'transform-file',\n enforce: 'pre',\n\n transform(src: string, id: string) {\n if (!parsedTsConfig) {\n parsedTsConfig = parseTsConfig(tsconfigPath, process.cwd());\n if (parsedTsConfig.options.sourceMap) {\n parsedTsConfig.options.sourcemap = false;\n parsedTsConfig.options.inlineSources = true;\n parsedTsConfig.options.inlineSourceMap = true;\n }\n }\n\n if (fileRegEx.test(id)) {\n const hasDecorator = findContent(src, contentRegEx);\n if (!hasDecorator) {\n return;\n }\n\n const program = ts.transpileModule(src, { compilerOptions: parsedTsConfig.options });\n return {\n code: program.outputText,\n map: null\n };\n }\n\n return;\n },\n };\n};\n\n"],"names":[],"mappings":"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"}
@@ -0,0 +1,3 @@
1
+ export * from './AddQueryStringToReferences';
2
+ export * from './EmitMetadataPlugin';
3
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAGA,cAAc,8BAA8B,CAAC;AAC7C,cAAc,sBAAsB,CAAC"}
@@ -0,0 +1,3 @@
1
+ export { AddQueryStringToReferences } from './AddQueryStringToReferences.js';
2
+ export { EmitMetadataPlugin } from './EmitMetadataPlugin.js';
3
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
@@ -0,0 +1 @@
1
+ {"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.es2021.d.ts","../../../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../../../node_modules/typescript/lib/lib.es2023.d.ts","../../../../../node_modules/typescript/lib/lib.es2024.d.ts","../../../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../../../node_modules/typescript/lib/lib.dom.d.ts","../../../../../node_modules/typescript/lib/lib.dom.iterable.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.es2016.intl.d.ts","../../../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../../node_modules/typescript/lib/lib.es2017.date.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.es2021.promise.d.ts","../../../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../../../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../../../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../../../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../../../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../../../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../../../node_modules/typescript/lib/lib.esnext.error.d.ts","../../../../../node_modules/typescript/lib/lib.esnext.sharedmemory.d.ts","../../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../../node_modules/tslib/tslib.d.ts","../../../../../node_modules/@types/react/global.d.ts","../../../../../node_modules/csstype/index.d.ts","../../../../../node_modules/@types/react/index.d.ts","../../../../../node_modules/@types/react/jsx-runtime.d.ts","../../AddQueryStringToReferences.ts","../../../../../node_modules/typescript/lib/typescript.d.ts","../../EmitMetadataPlugin.ts","../../global.d.ts","../../index.ts","../../../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../../../node_modules/@types/node/globals.typedarray.d.ts","../../../../../node_modules/@types/node/buffer.buffer.d.ts","../../../../../node_modules/@types/node/globals.d.ts","../../../../../node_modules/@types/node/web-globals/abortcontroller.d.ts","../../../../../node_modules/@types/node/web-globals/crypto.d.ts","../../../../../node_modules/@types/node/web-globals/domexception.d.ts","../../../../../node_modules/@types/node/web-globals/events.d.ts","../../../../../node_modules/undici-types/utility.d.ts","../../../../../node_modules/undici-types/header.d.ts","../../../../../node_modules/undici-types/readable.d.ts","../../../../../node_modules/undici-types/fetch.d.ts","../../../../../node_modules/undici-types/formdata.d.ts","../../../../../node_modules/undici-types/connector.d.ts","../../../../../node_modules/undici-types/client-stats.d.ts","../../../../../node_modules/undici-types/client.d.ts","../../../../../node_modules/undici-types/errors.d.ts","../../../../../node_modules/undici-types/dispatcher.d.ts","../../../../../node_modules/undici-types/global-dispatcher.d.ts","../../../../../node_modules/undici-types/global-origin.d.ts","../../../../../node_modules/undici-types/pool-stats.d.ts","../../../../../node_modules/undici-types/pool.d.ts","../../../../../node_modules/undici-types/handlers.d.ts","../../../../../node_modules/undici-types/balanced-pool.d.ts","../../../../../node_modules/undici-types/h2c-client.d.ts","../../../../../node_modules/undici-types/agent.d.ts","../../../../../node_modules/undici-types/mock-interceptor.d.ts","../../../../../node_modules/undici-types/mock-call-history.d.ts","../../../../../node_modules/undici-types/mock-agent.d.ts","../../../../../node_modules/undici-types/mock-client.d.ts","../../../../../node_modules/undici-types/mock-pool.d.ts","../../../../../node_modules/undici-types/snapshot-agent.d.ts","../../../../../node_modules/undici-types/mock-errors.d.ts","../../../../../node_modules/undici-types/proxy-agent.d.ts","../../../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../../../node_modules/undici-types/retry-handler.d.ts","../../../../../node_modules/undici-types/retry-agent.d.ts","../../../../../node_modules/undici-types/api.d.ts","../../../../../node_modules/undici-types/cache-interceptor.d.ts","../../../../../node_modules/undici-types/interceptors.d.ts","../../../../../node_modules/undici-types/util.d.ts","../../../../../node_modules/undici-types/cookies.d.ts","../../../../../node_modules/undici-types/patch.d.ts","../../../../../node_modules/undici-types/websocket.d.ts","../../../../../node_modules/undici-types/eventsource.d.ts","../../../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../../../node_modules/undici-types/content-type.d.ts","../../../../../node_modules/undici-types/cache.d.ts","../../../../../node_modules/undici-types/index.d.ts","../../../../../node_modules/@types/node/web-globals/fetch.d.ts","../../../../../node_modules/@types/node/web-globals/navigator.d.ts","../../../../../node_modules/@types/node/web-globals/storage.d.ts","../../../../../node_modules/@types/node/web-globals/streams.d.ts","../../../../../node_modules/@types/node/assert.d.ts","../../../../../node_modules/@types/node/assert/strict.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/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/inspector.generated.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/sea.d.ts","../../../../../node_modules/@types/node/sqlite.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/index.d.ts","../../../../../node_modules/vite/dist/node/chunks/moduleRunnerTransport.d.ts","../../../../../node_modules/@types/estree/index.d.ts","../../../../../node_modules/rollup/dist/rollup.d.ts","../../../../../node_modules/vite/dist/node/module-runner.d.ts","../../../../../node_modules/esbuild/lib/main.d.ts","../../../../../node_modules/source-map-js/source-map.d.ts","../../../../../node_modules/postcss/lib/previous-map.d.ts","../../../../../node_modules/postcss/lib/input.d.ts","../../../../../node_modules/postcss/lib/css-syntax-error.d.ts","../../../../../node_modules/postcss/lib/declaration.d.ts","../../../../../node_modules/postcss/lib/root.d.ts","../../../../../node_modules/postcss/lib/warning.d.ts","../../../../../node_modules/postcss/lib/lazy-result.d.ts","../../../../../node_modules/postcss/lib/no-work-result.d.ts","../../../../../node_modules/postcss/lib/processor.d.ts","../../../../../node_modules/postcss/lib/result.d.ts","../../../../../node_modules/postcss/lib/document.d.ts","../../../../../node_modules/postcss/lib/rule.d.ts","../../../../../node_modules/postcss/lib/node.d.ts","../../../../../node_modules/postcss/lib/comment.d.ts","../../../../../node_modules/postcss/lib/container.d.ts","../../../../../node_modules/postcss/lib/at-rule.d.ts","../../../../../node_modules/postcss/lib/list.d.ts","../../../../../node_modules/postcss/lib/postcss.d.ts","../../../../../node_modules/vite/dist/node/index.d.ts","../../../../../node_modules/@vitest/pretty-format/dist/index.d.ts","../../../../../node_modules/@vitest/utils/dist/display.d.ts","../../../../../node_modules/@vitest/utils/dist/types.d.ts","../../../../../node_modules/@vitest/utils/dist/helpers.d.ts","../../../../../node_modules/@vitest/utils/dist/timers.d.ts","../../../../../node_modules/@vitest/utils/dist/index.d.ts","../../../../../node_modules/@vitest/runner/dist/tasks.d-CettcZBU.d.ts","../../../../../node_modules/@vitest/utils/dist/types.d-BCElaP-c.d.ts","../../../../../node_modules/@vitest/utils/dist/diff.d.ts","../../../../../node_modules/@vitest/utils/diff.d.ts","../../../../../node_modules/@vitest/runner/dist/types.d.ts","../../../../../node_modules/@vitest/runner/dist/index.d.ts","../../../../../node_modules/@vitest/spy/dist/index.d.ts","../../../../../node_modules/tinyrainbow/dist/index.d.ts","../../../../../node_modules/@standard-schema/spec/dist/index.d.ts","../../../../../node_modules/@types/deep-eql/index.d.ts","../../../../../node_modules/assertion-error/index.d.ts","../../../../../node_modules/@types/chai/index.d.ts","../../../../../node_modules/@vitest/expect/dist/index.d.ts","../../../../../node_modules/@vitest/snapshot/dist/environment.d-DHdQ1Csl.d.ts","../../../../../node_modules/@vitest/snapshot/dist/rawSnapshot.d-lFsMJFUd.d.ts","../../../../../node_modules/@vitest/snapshot/dist/index.d.ts","../../../../../node_modules/vitest/dist/chunks/traces.d.402V_yFI.d.ts","../../../../../node_modules/vitest/dist/chunks/rpc.d.RH3apGEf.d.ts","../../../../../node_modules/@vitest/mocker/dist/types.d-B8CCKmHt.d.ts","../../../../../node_modules/@vitest/mocker/dist/index.d-C-sLYZi-.d.ts","../../../../../node_modules/@vitest/mocker/dist/index.d.ts","../../../../../node_modules/@vitest/utils/dist/source-map.d.ts","../../../../../node_modules/vitest/dist/chunks/config.d.g6OOauRt.d.ts","../../../../../node_modules/vitest/dist/chunks/environment.d.CrsxCzP1.d.ts","../../../../../node_modules/vitest/dist/chunks/worker.d.DhEa3KzY.d.ts","../../../../../node_modules/vitest/dist/chunks/browser.d.F6jMf15V.d.ts","../../../../../node_modules/parse5/dist/common/html.d.ts","../../../../../node_modules/parse5/dist/common/token.d.ts","../../../../../node_modules/parse5/dist/common/error-codes.d.ts","../../../../../node_modules/parse5/dist/tokenizer/preprocessor.d.ts","../../../../../node_modules/entities/dist/commonjs/generated/decode-data-html.d.ts","../../../../../node_modules/entities/dist/commonjs/generated/decode-data-xml.d.ts","../../../../../node_modules/entities/dist/commonjs/decode-codepoint.d.ts","../../../../../node_modules/entities/dist/commonjs/decode.d.ts","../../../../../node_modules/entities/decode.d.ts","../../../../../node_modules/parse5/dist/tokenizer/index.d.ts","../../../../../node_modules/parse5/dist/tree-adapters/interface.d.ts","../../../../../node_modules/parse5/dist/parser/open-element-stack.d.ts","../../../../../node_modules/parse5/dist/parser/formatting-element-list.d.ts","../../../../../node_modules/parse5/dist/parser/index.d.ts","../../../../../node_modules/parse5/dist/tree-adapters/default.d.ts","../../../../../node_modules/parse5/dist/serializer/index.d.ts","../../../../../node_modules/parse5/dist/common/foreign-content.d.ts","../../../../../node_modules/parse5/dist/index.d.ts","../../../../../node_modules/tough-cookie/dist/index.d.ts","../../../../../node_modules/@types/jsdom/base.d.ts","../../../../../node_modules/@types/jsdom/index.d.ts","../../../../../node_modules/vitest/optional-types.d.ts","../../../../../node_modules/@vitest/runner/dist/utils.d.ts","../../../../../node_modules/@vitest/runner/utils.d.ts","../../../../../node_modules/tinybench/dist/index.d.cts","../../../../../node_modules/vitest/dist/chunks/benchmark.d.DAaHLpsq.d.ts","../../../../../node_modules/vitest/dist/chunks/coverage.d.BZtK59WP.d.ts","../../../../../node_modules/@vitest/snapshot/dist/manager.d.ts","../../../../../node_modules/@vitest/snapshot/manager.d.ts","../../../../../node_modules/vitest/dist/chunks/reporters.d.DeFcIuza.d.ts","../../../../../node_modules/vitest/dist/chunks/plugin.d.B6hlg3fN.d.ts","../../../../../node_modules/vitest/dist/config.d.ts","../../../../../node_modules/vitest/config.d.ts","../../../../../node_modules/vite-plugin-commonjs/dist/index.d.ts","../../../../../node_modules/vite-tsconfig-paths/dist/index.d.ts","../../../../../vite.base.ts","../../vite.config.mts","../../../../../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/@babel/parser/typings/babel-parser.d.ts","../../../../../node_modules/@types/babel__template/index.d.ts","../../../../../node_modules/@types/babel__traverse/index.d.ts","../../../../../node_modules/@types/babel__core/index.d.ts","../../../../../node_modules/@types/chai-as-promised/index.d.ts","../../../../../node_modules/@types/json-schema/index.d.ts","../../../../../node_modules/@types/json5/index.d.ts","../../../../../node_modules/@types/mocha/index.d.ts","../../../../../node_modules/@types/react-dom/index.d.ts","../../../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../../../node_modules/@types/sinon/index.d.ts","../../../../../node_modules/@types/sinon-chai/index.d.ts","../../../../../node_modules/@types/tough-cookie/index.d.ts"],"fileIdsList":[[83,87,95,149,166,167],[83,87,89,95,149,166,167,171],[86,95,149,166,167],[83,87,88,90,95,149,166,167],[83,87,95,149,166,167,224,288,292],[95,149,166,167,295],[95,149,166,167],[95,149,166,167,295,296,297,298,299],[95,149,166,167,295,297],[95,149,166,167,242],[95,149,166,167,240,241],[95,149,160,166,167,195,199,274,275,277],[95,149,166,167,276],[95,146,147,149,166,167],[95,148,149,166,167],[149,166,167],[95,149,154,166,167,184],[95,149,150,155,160,166,167,169,181,192],[95,149,150,151,160,166,167,169],[95,149,152,166,167,193],[95,149,153,154,161,166,167,170],[95,149,154,166,167,181,189],[95,149,155,157,160,166,167,169],[95,148,149,156,166,167],[95,149,157,158,166,167],[95,149,159,160,166,167],[95,148,149,160,166,167],[95,149,160,161,162,166,167,181,192],[95,149,160,161,162,166,167,176,181,184],[95,141,149,157,160,163,166,167,169,181,192],[95,149,160,161,163,164,166,167,169,181,189,192],[95,149,163,165,166,167,181,189,192],[93,94,95,96,97,98,99,100,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198],[95,149,160,166,167],[95,149,166,167,168,192],[95,149,157,160,166,167,169,181],[95,149,166,167,170],[95,149,166,167,171],[95,148,149,166,167,172],[95,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198],[95,149,166,167,174],[95,149,166,167,175],[95,149,160,166,167,176,177],[95,149,166,167,176,178,193,195],[95,149,161,166,167],[95,149,160,166,167,181,182,184],[95,149,166,167,183,184],[95,149,166,167,181,182],[95,149,166,167,184],[95,149,166,167,185],[95,146,149,166,167,181,186],[95,149,160,166,167,187,188],[95,149,166,167,187,188],[95,149,154,166,167,169,181,189],[95,149,166,167,190],[95,149,166,167,169,191],[95,149,163,166,167,175,192],[95,149,154,166,167,193],[95,149,166,167,181,194],[95,149,166,167,168,195],[95,149,166,167,196],[95,149,154,166,167],[95,141,149,166,167],[95,149,166,167,197],[95,141,149,160,162,166,167,172,181,184,192,194,195,197],[95,149,166,167,181,198],[84,85,95,149,166,167],[95,149,166,167,242,307],[95,149,166,167,306],[95,149,166,167,230,234,236,237,238,239,242],[95,149,166,167,249],[95,149,166,167,249,250],[95,149,166,167,230,231,234,235],[95,149,166,167,230],[95,149,166,167,230,231,234],[95,149,166,167,230,231],[95,149,166,167,279],[95,149,166,167,225,244,245],[95,149,166,167,225,244],[95,149,166,167,284],[95,149,166,167,233],[95,149,166,167,225,232],[95,149,166,167,225],[95,149,166,167,227],[95,149,166,167,225,226,227,228,229],[95,149,166,167,264],[95,149,166,167,261,262,263],[95,149,166,167,258],[95,149,166,167,257,258],[95,149,166,167,257],[95,149,166,167,257,258,259,266,267,270,271,272,273],[95,149,166,167,258,267],[95,149,166,167,257,258,259,266,267,268,269],[95,149,166,167,257,267],[95,149,166,167,267,271],[95,149,166,167,258,259,260,265],[95,149,166,167,259],[95,149,166,167,257,258,267],[95,149,166,167,220],[95,149,166,167,218,220],[95,149,166,167,209,217,218,219,221,223],[95,149,166,167,207],[95,149,166,167,210,215,220,223],[95,149,166,167,206,223],[95,149,166,167,210,211,214,215,216,223],[95,149,166,167,210,211,212,214,215,223],[95,149,166,167,207,208,209,210,211,215,216,217,219,220,221,223],[95,149,166,167,205,207,208,209,210,211,212,214,215,216,217,218,219,220,221,222],[95,149,166,167,205,223],[95,149,166,167,210,212,213,215,216,223],[95,149,166,167,214,223],[95,149,166,167,215,216,220,223],[95,149,166,167,208,218],[95,149,166,167,201,202],[95,107,110,113,114,149,166,167,192],[95,110,149,166,167,181,192],[95,110,114,149,166,167,192],[95,149,166,167,181],[95,104,149,166,167],[95,108,149,166,167],[95,106,107,110,149,166,167,192],[95,149,166,167,169,189],[95,149,166,167,199],[95,104,149,166,167,199],[95,106,110,149,166,167,169,192],[95,101,102,103,105,109,149,160,166,167,181,192],[95,110,118,126,149,166,167],[95,102,108,149,166,167],[95,110,135,136,149,166,167],[95,102,105,110,149,166,167,184,192,199],[95,110,149,166,167],[95,106,110,149,166,167,192],[95,101,149,166,167],[95,104,105,106,108,109,110,111,112,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,149,166,167],[95,110,128,131,149,157,166,167],[95,110,118,119,120,149,166,167],[95,108,110,119,121,149,166,167],[95,109,149,166,167],[95,102,104,110,149,166,167],[95,110,114,119,121,149,166,167],[95,114,149,166,167],[95,108,110,113,149,166,167,192],[95,102,106,110,118,149,166,167],[95,110,128,149,166,167],[95,121,149,166,167],[95,104,110,135,149,166,167,184,197,199],[95,149,166,167,224,288],[95,149,160,161,163,164,165,166,167,169,181,189,192,198,199,200,202,203,204,223,224],[95,149,166,167,200],[95,149,166,167,243,288],[95,149,166,167,236,280,281],[95,149,166,167,236,255],[95,149,166,167,225,234,236,246],[95,149,166,167,224,286,288],[95,149,152,161,166,167,181,224,225,230,234,236,243,246,247,248,251,252,253,255,256,278,282,283,285,288],[95,149,166,167,203,236,246,247],[95,149,166,167,203,236,248,253,254],[95,149,152,161,166,167,181,203,224,225,230,234,236,243,246,247,248,251,252,253,254,255,256,278,280,281,282,283,285,286,287,288],[95,149,166,167,276,277],[83,87,95,149,166,167,289,290,291]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"2ab096661c711e4a81cc464fa1e6feb929a54f5340b46b0a07ac6bbf857471f0","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"196cb558a13d4533a5163286f30b0509ce0210e4b316c56c38d4c0fd2fb38405","affectsGlobalScope":true,"impliedFormat":1},{"version":"73f78680d4c08509933daf80947902f6ff41b6230f94dd002ae372620adb0f60","affectsGlobalScope":true,"impliedFormat":1},{"version":"c5239f5c01bcfa9cd32f37c496cf19c61d69d37e48be9de612b541aac915805b","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"a6a5253138c5432c68a1510c70fe78a644fe2e632111ba778e1978010d6edfec","impliedFormat":1},{"version":"170d4db14678c68178ee8a3d5a990d5afb759ecb6ec44dbd885c50f6da6204f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac51dd7d31333793807a6abaa5ae168512b6131bd41d9c5b98477fc3b7800f9f","impliedFormat":1},{"version":"5e76305d58bcdc924ff2bf14f6a9dc2aa5441ed06464b7e7bd039e611d66a89b","impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","impliedFormat":1},{"version":"24c6c9037cac1a7c8a49efac06616163b0df8310b3f8637cd8b312611ff9b060","signature":"514b4e00dd3c30aeacc9003a0be6f44392d155c41e799bc93dc414b907c0b770"},{"version":"88747f312c66b81214fd957913ac7f62367000fd0a04d57faa05034ce2c3cc39","impliedFormat":1},{"version":"316e15500e513d8f2827ed377fd93638468f7c58e328c8e4b7b07884fdb07985","signature":"4bdb0693d1ddb7afc0005849cb690e7094e0d5f3103ec1dce994f0596f155623"},{"version":"53087d716fd67ae2028864fee1de48a324a174f20ce8ec3d7fa647b75c4df351","affectsGlobalScope":true},{"version":"1d2f7bb0b5dcd6910eca90ca789cea4ee6de400ec6239c6d7921e258bcc9e828","signature":"d4c674a27ae3e8a555aed04a7015b95457b52d25e3d1a2f0cd965c2be62d75d1"},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"378281aa35786c27d5811af7e6bcaa492eebd0c7013d48137c35bbc69a2b9751","affectsGlobalScope":true,"impliedFormat":1},{"version":"3af97acf03cc97de58a3a4bc91f8f616408099bc4233f6d0852e72a8ffb91ac9","affectsGlobalScope":true,"impliedFormat":1},{"version":"1b2dd1cbeb0cc6ae20795958ba5950395ebb2849b7c8326853dd15530c77ab0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1db0b7dca579049ca4193d034d835f6bfe73096c73663e5ef9a0b5779939f3d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"387a023d363f755eb63450a66c28b14cdd7bc30a104565e2dbf0a8988bb4a56c","affectsGlobalScope":true,"impliedFormat":1},{"version":"9798340ffb0d067d69b1ae5b32faa17ab31b82466a3fc00d8f2f2df0c8554aaa","affectsGlobalScope":true,"impliedFormat":1},{"version":"f26b11d8d8e4b8028f1c7d618b22274c892e4b0ef5b3678a8ccbad85419aef43","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"3a80bc85f38526ca3b08007ee80712e7bb0601df178b23fbf0bf87036fce40ce","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"2931540c47ee0ff8a62860e61782eb17b155615db61e36986e54645ec67f67c2","impliedFormat":1},{"version":"ccab02f3920fc75c01174c47fcf67882a11daf16baf9e81701d0a94636e94556","impliedFormat":1},{"version":"f6faf5f74e4c4cc309a6c6a6c4da02dbb840be5d3e92905a23dcd7b2b0bd1986","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"33e981bf6376e939f99bd7f89abec757c64897d33c005036b9a10d9587d80187","impliedFormat":1},{"version":"7fd1b31fd35876b0aa650811c25ec2c97a3c6387e5473eb18004bed86cdd76b6","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"3bacf516d686d08682751a3bd2519ea3b8041a164bfb4f1d35728993e70a2426","impliedFormat":1},{"version":"7fb266686238369442bd1719bc0d7edd0199da4fb8540354e1ff7f16669b4323","impliedFormat":1},{"version":"0a60a292b89ca7218b8616f78e5bbd1c96b87e048849469cccb4355e98af959a","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"40cd35c95e9cf22cfa5bd84e96408b6fcbca55295f4ff822390abb11afbc3dca","impliedFormat":1},{"version":"b1616b8959bf557feb16369c6124a97a0e74ed6f49d1df73bb4b9ddf68acf3f3","impliedFormat":1},{"version":"5b03a034c72146b61573aab280f295b015b9168470f2df05f6080a2122f9b4df","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"80aae6afc67faa5ac0b32b5b8bc8cc9f7fa299cff15cf09cc2e11fd28c6ae29e","impliedFormat":1},{"version":"f473cd2288991ff3221165dcf73cd5d24da30391f87e85b3dd4d0450c787a391","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"c183b931b68ad184bc8e8372bf663f3d33304772fb482f29fb91b3c391031f3e","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"48cc3ec153b50985fb95153258a710782b25975b10dd4ac8a4f3920632d10790","impliedFormat":1},{"version":"adf27937dba6af9f08a68c5b1d3fce0ca7d4b960c57e6d6c844e7d1a8e53adae","impliedFormat":1},{"version":"e1528ca65ac90f6fa0e4a247eb656b4263c470bb22d9033e466463e13395e599","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"866078923a56d026e39243b4392e282c1c63159723996fa89243140e1388a98d","impliedFormat":1},{"version":"830171b27c5fdf9bcbe4cf7d428fcf3ae2c67780fb7fbdccdf70d1623d938bc4","affectsGlobalScope":true,"impliedFormat":1},{"version":"1cf059eaf468efcc649f8cf6075d3cb98e9a35a0fe9c44419ec3d2f5428d7123","affectsGlobalScope":true,"impliedFormat":1},{"version":"e7721c4f69f93c91360c26a0a84ee885997d748237ef78ef665b153e622b36c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d97fb21da858fb18b8ae72c314e9743fd52f73ebe2764e12af1db32fc03f853f","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ea15fd99b2e34cb25fe8346c955000bb70c8b423ae4377a972ef46bfb37f595","impliedFormat":1},{"version":"7cf69dd5502c41644c9e5106210b5da7144800670cbe861f66726fa209e231c4","impliedFormat":1},{"version":"72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7","impliedFormat":1},{"version":"f9b4137a0d285bd77dba2e6e895530112264310ae47e07bf311feae428fb8b61","affectsGlobalScope":true,"impliedFormat":1},{"version":"8b21e13ed07d0df176ae31d6b7f01f7b17d66dbeb489c0d31d00de2ca14883da","impliedFormat":1},{"version":"51aecd2df90a3cffea1eb4696b33b2d78594ea2aa2138e6b9471ec4841c6c2ee","impliedFormat":1},{"version":"9d8f9e63e29a3396285620908e7f14d874d066caea747dc4b2c378f0599166b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"f929f0b6b3421a2d34344b0f421f45aeb2c84ad365ebf29d04312023b3accc58","impliedFormat":1},{"version":"db9ada976f9e52e13f7ae8b9a320f4b67b87685938c5879187d8864b2fbe97f3","impliedFormat":1},{"version":"9f39e70a354d0fba29ac3cdf6eca00b7f9e96f64b2b2780c432e8ea27f133743","impliedFormat":1},{"version":"0dace96cc0f7bc6d0ee2044921bdf19fe42d16284dbcc8ae200800d1c9579335","impliedFormat":1},{"version":"a2e2bbde231b65c53c764c12313897ffdfb6c49183dd31823ee2405f2f7b5378","impliedFormat":1},{"version":"ad1cc0ed328f3f708771272021be61ab146b32ecf2b78f3224959ff1e2cd2a5c","impliedFormat":1},{"version":"c64e1888baaa3253ca4405b455e4bf44f76357868a1bd0a52998ade9a092ad78","affectsGlobalScope":true,"impliedFormat":1},{"version":"d8cf132379078d0974a59df26069689a2d33c7dc826b5be56231841cb2f32e58","impliedFormat":1},{"version":"fbf413fc617837453c878a9174a1f1b383616857a3f8366bc41cf30df4aea7d5","impliedFormat":1},{"version":"148c73ec11318850f571172ceae3e55ce479d850fe18ec8eae0abd99d9f6c319","impliedFormat":1},{"version":"230bdc111d7578276e4a3bb9d075d85c78c6b68f428c3a9935e2eaa10f4ae1f5","impliedFormat":1},{"version":"e8aabbee5e7b9101b03bb4222607d57f38859b8115a8050a4eb91b4ee43a3a73","impliedFormat":1},{"version":"bbf42f98a5819f4f06e18c8b669a994afe9a17fe520ae3454a195e6eabf7700d","impliedFormat":1},{"version":"c0bb1b65757c72bbf8ddf7eaa532223bacf58041ff16c883e76f45506596e925","impliedFormat":1},{"version":"c8b85f7aed29f8f52b813f800611406b0bfe5cf3224d20a4bdda7c7f73ce368e","affectsGlobalScope":true,"impliedFormat":1},{"version":"145dcf25fd4967c610c53d93d7bc4dce8fbb1b6dd7935362472d4ae49363c7ba","impliedFormat":1},{"version":"ff65b8a8bd380c6d129becc35de02f7c29ad7ce03300331ca91311fb4044d1a9","impliedFormat":1},{"version":"76957a6d92b94b9e2852cf527fea32ad2dc0ef50f67fe2b14bd027c9ceef2d86","impliedFormat":1},{"version":"9043daec15206650fa119bad6b8d70136021ea7d52673a71f79a87a42ee38d44","affectsGlobalScope":true,"impliedFormat":1},{"version":"4e2de7ab2f74e36d7078bccdf831585b10dc6330bab56054921531b03f9beaf3","affectsGlobalScope":true,"impliedFormat":1},{"version":"a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd","impliedFormat":1},{"version":"b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12","impliedFormat":1},{"version":"de263f0089aefbfd73c89562fb7254a7468b1f33b61839aafc3f035d60766cb4","impliedFormat":1},{"version":"77fbe5eecb6fac4b6242bbf6eebfc43e98ce5ccba8fa44e0ef6a95c945ff4d98","impliedFormat":1},{"version":"8c81fd4a110490c43d7c578e8c6f69b3af01717189196899a6a44f93daa57a3a","impliedFormat":1},{"version":"5fb39858b2459864b139950a09adae4f38dad87c25bf572ce414f10e4bd7baab","impliedFormat":1},{"version":"65faec1b4bd63564aeec33eab9cacfaefd84ce2400f03903a71a1841fbce195f","impliedFormat":1},{"version":"b33b74b97952d9bf4fbd2951dcfbb5136656ddb310ce1c84518aaa77dbca9992","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"45650f47bfb376c8a8ed39d4bcda5902ab899a3150029684ee4c10676d9fbaee","impliedFormat":1},{"version":"6b306cd4282bbb54d4a6bb23cfb7a271160983dfc38c67b5a132504cfcc34896","affectsGlobalScope":true,"impliedFormat":1},{"version":"c119835edf36415081dfd9ed15fc0cd37aaa28d232be029ad073f15f3d88c323","impliedFormat":1},{"version":"450172a56b944c2d83f45cc11c9a388ea967cd301a21202aa0a23c34c7506a18","impliedFormat":1},{"version":"9705cd157ffbb91c5cab48bdd2de5a437a372e63f870f8a8472e72ff634d47c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41","impliedFormat":1},{"version":"72f8936aebf0c4a1adab767b97d34ba7d3a308afcf76de4417b9c16fb92ed548","impliedFormat":1},{"version":"e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e","impliedFormat":1},{"version":"4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055","impliedFormat":1},{"version":"69e0a41d620fb678a899c65e073413b452f4db321b858fe422ad93fd686cd49a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3585d6891e9ea18e07d0755a6d90d71331558ba5dc5561933553209f886db106","affectsGlobalScope":true,"impliedFormat":1},{"version":"86be71cbb0593468644932a6eb96d527cfa600cecfc0b698af5f52e51804451d","impliedFormat":1},{"version":"84dd6b0fd2505135692935599d6606f50a421389e8d4535194bcded307ee5cf2","impliedFormat":1},{"version":"0d5b085f36e6dc55bc6332ecb9c733be3a534958c238fb8d8d18d4a2b6f2a15a","impliedFormat":1},{"version":"db19ea066fdc5f97df3f769e582ae3000380ab7942e266654bdb1a4650d19eaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"2a034894bf28c220a331c7a0229d33564803abe2ac1b9a5feee91b6b9b6e88ea","impliedFormat":1},{"version":"d7e9ab1b0996639047c61c1e62f85c620e4382206b3abb430d9a21fb7bc23c77","impliedFormat":1},{"version":"10073cdcf56982064c5337787cc59b79586131e1b28c106ede5bff362f912b70","impliedFormat":99},{"version":"151ff381ef9ff8da2da9b9663ebf657eac35c4c9a19183420c05728f31a6761d","impliedFormat":1},{"version":"6cd8f2410e4cf6d7870f018b38dcf1ac4771f06b363b5d71831d924cda3c488d","affectsGlobalScope":true,"impliedFormat":1},{"version":"ff0a83c9a0489a627e264ffcb63f2264b935b20a502afa3a018848139e3d8575","impliedFormat":99},{"version":"161c8e0690c46021506e32fda85956d785b70f309ae97011fd27374c065cac9b","affectsGlobalScope":true,"impliedFormat":1},{"version":"402e5c534fb2b85fa771170595db3ac0dd532112c8fa44fc23f233bc6967488b","impliedFormat":1},{"version":"8885cf05f3e2abf117590bbb951dcf6359e3e5ac462af1c901cfd24c6a6472e2","impliedFormat":1},{"version":"333caa2bfff7f06017f114de738050dd99a765c7eb16571c6d25a38c0d5365dc","impliedFormat":1},{"version":"e61df3640a38d535fd4bc9f4a53aef17c296b58dc4b6394fd576b808dd2fe5e6","impliedFormat":1},{"version":"459920181700cec8cbdf2a5faca127f3f17fd8dd9d9e577ed3f5f3af5d12a2e4","impliedFormat":1},{"version":"4719c209b9c00b579553859407a7e5dcfaa1c472994bd62aa5dd3cc0757eb077","impliedFormat":1},{"version":"7ec359bbc29b69d4063fe7dad0baaf35f1856f914db16b3f4f6e3e1bca4099fa","impliedFormat":1},{"version":"70790a7f0040993ca66ab8a07a059a0f8256e7bb57d968ae945f696cbff4ac7a","impliedFormat":1},{"version":"d1b9a81e99a0050ca7f2d98d7eedc6cda768f0eb9fa90b602e7107433e64c04c","impliedFormat":1},{"version":"a022503e75d6953d0e82c2c564508a5c7f8556fad5d7f971372d2d40479e4034","impliedFormat":1},{"version":"b215c4f0096f108020f666ffcc1f072c81e9f2f95464e894a5d5f34c5ea2a8b1","impliedFormat":1},{"version":"644491cde678bd462bb922c1d0cfab8f17d626b195ccb7f008612dc31f445d2d","impliedFormat":1},{"version":"dfe54dab1fa4961a6bcfba68c4ca955f8b5bbeb5f2ab3c915aa7adaa2eabc03a","impliedFormat":1},{"version":"1251d53755b03cde02466064260bb88fd83c30006a46395b7d9167340bc59b73","impliedFormat":1},{"version":"47865c5e695a382a916b1eedda1b6523145426e48a2eae4647e96b3b5e52024f","impliedFormat":1},{"version":"4cdf27e29feae6c7826cdd5c91751cc35559125e8304f9e7aed8faef97dcf572","impliedFormat":1},{"version":"331b8f71bfae1df25d564f5ea9ee65a0d847c4a94baa45925b6f38c55c7039bf","impliedFormat":1},{"version":"2a771d907aebf9391ac1f50e4ad37952943515eeea0dcc7e78aa08f508294668","impliedFormat":1},{"version":"0146fd6262c3fd3da51cb0254bb6b9a4e42931eb2f56329edd4c199cb9aaf804","impliedFormat":1},{"version":"0277fd0870cd9abff0fefcaa0fb8d124a3a084c926a206c0f1591e07aec54222","impliedFormat":99},{"version":"acfb723d81eda39156251aed414c553294870bf53062429ebfcfba8a68cb4753","impliedFormat":99},{"version":"09124307d0bc873aba353b80027899599e794c2cf44dfe6315d73111d40e29f4","impliedFormat":99},{"version":"b5ce343886d23392be9c8280e9f24a87f1d7d3667f6672c2fe4aa61fa4ece7d4","impliedFormat":99},{"version":"57e9e1b0911874c62d743af24b5d56032759846533641d550b12a45ff404bf07","impliedFormat":99},{"version":"9f54d7adce0db4df8f6c11e20f3e7a66e55c510f196b074d0bca3370259a19fc","impliedFormat":99},{"version":"5e43e0824f10cd8c48e7a8c5c673638488925a12c31f0f9e0957965c290eb14c","impliedFormat":99},{"version":"b42137caa61a3a11e859dc1f98d387db1a17ab8e670cc2e303555f05f6029516","impliedFormat":99},{"version":"ef13c73d6157a32933c612d476c1524dd674cf5b9a88571d7d6a0d147544d529","impliedFormat":99},{"version":"3b0a56d056d81a011e484b9c05d5e430711aaecd561a788bad1d0498aad782c7","impliedFormat":99},{"version":"05c7aef6a4e496b93c2e682cced8903c0dfe6340d04f3fe616176e2782193435","impliedFormat":99},{"version":"7c25809bb8b5efa53c2a0a765a90ad0970b1a664300b7ecdb1ec3b43a52c614d","impliedFormat":99},{"version":"fdb426c25a83ece0ac2572c94c10b4928f60f961b2a37acfbf7fe3d25a8e50fc","impliedFormat":99},{"version":"31fd7c12f6e27154efb52a916b872509a771880f3b20f2dfd045785c13aa813f","impliedFormat":99},{"version":"b481de4ab5379bd481ca12fc0b255cdc47341629a22c240a89cdb4e209522be2","impliedFormat":99},{"version":"76af14c3cce62da183aaf30375e3a4613109d16c7f16d30702f16d625a95e62c","impliedFormat":99},{"version":"427fe2004642504828c1476d0af4270e6ad4db6de78c0b5da3e4c5ca95052a99","impliedFormat":1},{"version":"2eeffcee5c1661ddca53353929558037b8cf305ffb86a803512982f99bcab50d","impliedFormat":99},{"version":"9afb4cb864d297e4092a79ee2871b5d3143ea14153f62ef0bb04ede25f432030","affectsGlobalScope":true,"impliedFormat":99},{"version":"4e258d11c899cb9ff36b4b5c53df59cf4a5ccae9a9931529686e77431e0a3518","affectsGlobalScope":true,"impliedFormat":99},{"version":"324ac98294dab54fbd580c7d0e707d94506d7b2c3d5efe981a8495f02cf9ad96","impliedFormat":99},{"version":"9ec72eb493ff209b470467e24264116b6a8616484bca438091433a545dfba17e","impliedFormat":99},{"version":"c35b8117804c639c53c87f2c23e0c786df61d552e513bd5179f5b88e29964838","impliedFormat":99},{"version":"ac3d263474022e9a14c43f588f485d549641d839b159ecc971978b90f34bdf6b","impliedFormat":99},{"version":"67acaedb46832d66c15f1b09fb7b6a0b7f41bdbf8eaa586ec70459b3e8896eb9","impliedFormat":99},{"version":"213a00d511892898e9dad3c98efe3b1de230f171b9e91496faca3e40e27ef6a7","impliedFormat":99},{"version":"62486ec77ac020b82d5a65a270096bb7f2a1fd0627a89f29c5a5d3cbd6bd1f59","impliedFormat":99},{"version":"c637a793905f02d354b640fae41a6ae79395ed0d77fbb87c36d9664ecbd95ac1","impliedFormat":99},{"version":"437b7613a30a2fcde463f7b707c6d5567a8823fbc51de50b8641bf5b1d126fad","impliedFormat":99},{"version":"9d0a7817c7b91b83bb1119e4a367a8bbeeb969e508acc6d269dc2f3a29140460","impliedFormat":99},{"version":"bcbd3becd08b4515225880abea0dbfbbf0d1181ce3af8f18f72f61edbe4febfb","impliedFormat":99},{"version":"dd208151072701d30e15811fe01504cd413d91ce7e8b53f9cc16732678c64e41","impliedFormat":99},{"version":"97ef8ddc580857901a73270b396ae48a87af75753464c187b0143410847076a8","impliedFormat":99},{"version":"19990350fca066265b2c190c9b6cde1229f35002ea2d4df8c9e397e9942f6c89","impliedFormat":99},{"version":"8fb8fdda477cd7382477ffda92c2bb7d9f7ef583b1aa531eb6b2dc2f0a206c10","impliedFormat":99},{"version":"66995b0c991b5c5d42eff1d950733f85482c7419f7296ab8952e03718169e379","impliedFormat":99},{"version":"9863f888da357e35e013ca3465b794a490a198226bd8232c2f81fb44e16ff323","impliedFormat":99},{"version":"84bc2d80326a83ee4a6e7cba2fd480b86502660770c0e24da96535af597c9f1e","impliedFormat":1},{"version":"ea27768379b866ee3f5da2419650acdb01125479f7af73580a4bceb25b79e372","impliedFormat":1},{"version":"598931eeb4362542cae5845f95c5f0e45ac668925a40ce201e244d7fe808e965","impliedFormat":1},{"version":"da9ef88cde9f715756da642ad80c4cd87a987f465d325462d6bc2a0b11d202c8","impliedFormat":1},{"version":"9462ab013df86c16a2a69ca0a3b6f31d4fd86dd29a947e14b590eb20806f220b","impliedFormat":99},{"version":"b4c6184d78303b0816e779a48bef779b15aea4a66028eb819aac0abee8407dea","impliedFormat":99},{"version":"db085d2171d48938a99e851dafe0e486dce9859e5dfa73c21de5ed3d4d6fb0c5","impliedFormat":99},{"version":"62a3ad1ddd1f5974b3bf105680b3e09420f2230711d6520a521fab2be1a32838","impliedFormat":99},{"version":"a77be6fc44c876bc10c897107f84eaba10790913ebdcad40fcda7e47469b2160","impliedFormat":99},{"version":"06cf55b6da5cef54eaaf51cdc3d4e5ebf16adfdd9ebd20cec7fe719be9ced017","impliedFormat":99},{"version":"91f5dbcdb25d145a56cffe957ec665256827892d779ef108eb2f3864faff523b","impliedFormat":99},{"version":"052ba354bab8fb943e0bc05a0769f7b81d7c3b3c6cd0f5cfa53c7b2da2a525c5","impliedFormat":99},{"version":"927955a3de5857e0a1c575ced5a4245e74e6821d720ed213141347dd1870197f","impliedFormat":99},{"version":"fec804d54cd97dd77e956232fc37dc13f53e160d4bbeeb5489e86eeaa91f7ebd","impliedFormat":99},{"version":"1fd5dcbeb175a97c46ac125c12cb8f0de5186e76f5ee3c4708fa0cca1874d585","impliedFormat":99},{"version":"1e00db245ee0a8b165a7ed7eebc9b9666b3836fe61b742149392010eed018814","impliedFormat":1},{"version":"af11413ffc8c34a2a2475cb9d2982b4cc87a9317bf474474eedaacc4aaab4582","affectsGlobalScope":true,"impliedFormat":1},{"version":"8124828a11be7db984fcdab052fd4ff756b18edcfa8d71118b55388176210923","impliedFormat":99},{"version":"b7747cf3001e9d9fe661c067d970cbe54f44dbf13a669a6e68b7e39034caf8a9","impliedFormat":99},{"version":"e666e31d323fef5642f87db0da48a83e58f0aaf9e3823e87eabd8ec7e0441a36","impliedFormat":99},{"version":"69bf2422313487956e4dacf049f30cb91b34968912058d244cb19e4baa24da97","impliedFormat":1},{"version":"6987dfb4b0c4e02112cc4e548e7a77b3d9ddfeffa8c8a2db13ceac361a4567d9","impliedFormat":99},{"version":"63ea959e28c110923f495576e614fb8b36c09b6828b467b2c7cd7f03b03ccf9f","impliedFormat":99},{"version":"b62006bbc815fe8190c7aee262aad6bff993e3f9ade70d7057dfceab6de79d2f","impliedFormat":99},{"version":"b7e28e06011460436d5c2ec2996846ac0c451e135357fc5a7269e5665a32fbd7","impliedFormat":99},{"version":"5aa94cef6bd4ef2498227b40ab6553796ed3d6bb6a39653d67fbf7e3431e4cbb","impliedFormat":99},{"version":"dd670af19ed00b85b71536d8fbfb15835e8bec17b7eec5af09cf00dd2b6ef41f","impliedFormat":99},{"version":"77c2562753aa717dd9490c7e571d1519395b68af2a8ffb088450b4495cf39e5e","impliedFormat":99},{"version":"7bbff6783e96c691a41a7cf12dd5486b8166a01b0c57d071dbcfca55c9525ec4","impliedFormat":99},{"version":"a91bae0f6a514b9ee8b7015cee0232a443b8fecaf77bfae2c323e71fbf9c7b02","impliedFormat":1},{"version":"cadf7a128bda2a4937411ad8fc659c08142ae7b53a7559eada72e8c34a5ea273","impliedFormat":99},{"version":"1376018a142463c38309fce02c8007ca69eed4392313c4d38a1c2d029df1f942","signature":"9b240ae5288cb0599ef50aba5e45aef0122adc638286653364a68e18c868cae6"},{"version":"1472c2f822aa7395cd3ab68062be5e979fee2966119b8e75ad6cc927943f45bb","signature":"4b96dd19fd2949d28ce80e913412b0026dc421e5bf6c31d87c7b5eb11b5753b4","impliedFormat":99},{"version":"ae77d81a5541a8abb938a0efedf9ac4bea36fb3a24cc28cfa11c598863aba571","impliedFormat":1},{"version":"c2c2a861a338244d7dd700d0c52a78916b4bb75b98fc8ca5e7c501899fc03796","impliedFormat":1},{"version":"b6d03c9cfe2cf0ba4c673c209fcd7c46c815b2619fd2aad59fc4229aaef2ed43","impliedFormat":1},{"version":"adb467429462e3891de5bb4a82a4189b92005d61c7f9367c089baf03997c104e","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"13b77ab19ef7aadd86a1e54f2f08ea23a6d74e102909e3c00d31f231ed040f62","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"6550c1290df354eba9437fbf470699d7ee9800490e3179565c56e203eb6f42c1","affectsGlobalScope":true,"impliedFormat":99},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","impliedFormat":1},{"version":"29f72ec1289ae3aeda78bf14b38086d3d803262ac13904b400422941a26a3636","affectsGlobalScope":true,"impliedFormat":1},{"version":"be1cc4d94ea60cbe567bc29ed479d42587bf1e6cba490f123d329976b0fe4ee5","impliedFormat":1},{"version":"baf3507287629018d38c88e2636dd041550c70620bb774127011eb6dc3b361c0","impliedFormat":1},{"version":"12d5592986cbcd3404fa50481df6b62ed74f7035ea0d6a27c207844b7bc7c950","impliedFormat":1},{"version":"3be709044ba3682e21e16e6deec00c91a502d8adfc8eaeb423e5ad51fd3cb80b","affectsGlobalScope":true,"impliedFormat":99},{"version":"03c258e060b7da220973f84b89615e4e9850e9b5d30b3a8e4840b3e3268ae8eb","impliedFormat":1}],"root":[88,[90,92],293],"options":{"allowJs":false,"allowSyntheticDefaultImports":true,"alwaysStrict":true,"assumeChangesOnlyAffectDirectDependencies":true,"checkJs":false,"composite":true,"declaration":true,"declarationMap":true,"downlevelIteration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"importHelpers":true,"jsx":4,"module":7,"newLine":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":false,"noImplicitReturns":true,"outDir":"./","preserveConstEnums":true,"removeComments":true,"rootDir":"../..","skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"stripInternal":true,"target":9},"referencedMap":[[88,1],[90,2],[91,3],[92,4],[293,5],[297,6],[295,7],[239,7],[294,7],[300,8],[296,6],[298,9],[299,6],[301,10],[242,11],[240,7],[201,7],[276,12],[277,13],[302,7],[303,7],[304,7],[146,14],[147,14],[148,15],[95,16],[149,17],[150,18],[151,19],[93,7],[152,20],[153,21],[154,22],[155,23],[156,24],[157,25],[158,25],[159,26],[160,27],[161,28],[162,29],[96,7],[94,7],[163,30],[164,31],[165,32],[199,33],[166,34],[167,7],[168,35],[169,36],[170,37],[171,38],[172,39],[173,40],[174,41],[175,42],[176,43],[177,43],[178,44],[179,7],[180,45],[181,46],[183,47],[182,48],[184,49],[185,50],[186,51],[187,52],[188,53],[189,54],[190,55],[191,56],[192,57],[193,58],[194,59],[195,60],[196,61],[97,7],[98,62],[99,7],[100,7],[142,63],[143,64],[144,7],[145,49],[197,65],[198,66],[305,3],[84,7],[86,67],[87,3],[308,68],[307,69],[306,7],[309,7],[243,70],[250,71],[251,72],[249,7],[225,7],[236,73],[231,74],[235,75],[279,76],[280,77],[244,7],[246,78],[284,78],[245,79],[285,80],[237,7],[234,81],[233,82],[226,83],[228,84],[230,85],[252,84],[229,7],[232,83],[227,7],[241,7],[85,7],[265,86],[263,7],[264,87],[261,7],[262,7],[204,7],[259,88],[273,89],[257,7],[258,90],[274,91],[269,92],[270,93],[268,94],[272,95],[266,96],[260,97],[271,98],[267,89],[221,99],[219,100],[220,101],[208,102],[209,100],[216,103],[207,104],[212,105],[222,7],[213,106],[218,107],[223,108],[206,109],[214,110],[215,111],[210,112],[217,99],[211,113],[202,114],[205,7],[281,7],[238,7],[275,7],[83,7],[81,7],[82,7],[13,7],[14,7],[16,7],[15,7],[2,7],[17,7],[18,7],[19,7],[20,7],[21,7],[22,7],[23,7],[24,7],[3,7],[25,7],[26,7],[4,7],[27,7],[31,7],[28,7],[29,7],[30,7],[32,7],[33,7],[34,7],[5,7],[35,7],[36,7],[37,7],[38,7],[6,7],[42,7],[39,7],[40,7],[41,7],[43,7],[7,7],[44,7],[49,7],[50,7],[45,7],[46,7],[47,7],[48,7],[8,7],[54,7],[51,7],[52,7],[53,7],[55,7],[9,7],[56,7],[57,7],[58,7],[60,7],[59,7],[61,7],[62,7],[10,7],[63,7],[64,7],[65,7],[11,7],[66,7],[67,7],[68,7],[69,7],[70,7],[1,7],[71,7],[72,7],[12,7],[76,7],[74,7],[79,7],[78,7],[73,7],[77,7],[75,7],[80,7],[89,7],[118,115],[130,116],[116,117],[131,118],[140,119],[107,120],[108,121],[106,122],[139,123],[134,124],[138,125],[110,126],[127,127],[109,128],[137,129],[104,130],[105,124],[111,131],[112,7],[117,132],[115,131],[102,133],[141,134],[132,135],[121,136],[120,131],[122,137],[125,138],[119,139],[123,140],[135,123],[113,141],[114,142],[126,143],[103,118],[129,144],[128,131],[124,145],[133,7],[101,7],[136,146],[290,147],[291,147],[200,7],[224,148],[203,149],[289,150],[282,151],[256,152],[253,153],[283,7],[254,74],[287,154],[286,155],[248,156],[247,7],[255,157],[288,158],[278,159],[292,160]],"latestChangedDtsFile":"./vite.config.d.mts","version":"5.9.3"}
@@ -0,0 +1,3 @@
1
+ declare const _default: import("vite").UserConfig;
2
+ export default _default;
3
+ //# sourceMappingURL=vite.config.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vite.config.d.mts","sourceRoot":"","sources":["../../vite.config.mts"],"names":[],"mappings":";AAMA,wBAAoC"}
@@ -0,0 +1,5 @@
1
+ import { defineConfig } from 'vite';
2
+ import { createConfig } from '../../../vite.base';
3
+ const config = createConfig();
4
+ export default defineConfig(config);
5
+ //# sourceMappingURL=vite.config.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vite.config.mjs","sourceRoot":"","sources":["../../vite.config.mts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;AAGpC,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAElD,MAAM,MAAM,GAAG,YAAY,EAAE,CAAC;AAC9B,eAAe,YAAY,CAAC,MAAM,CAAC,CAAC"}
@@ -0,0 +1,6 @@
1
+ // Copyright (c) Cratis. All rights reserved.
2
+ // Licensed under the MIT license. See LICENSE file in the project root for full license information.
3
+
4
+ describe('when actual spec added', () => {
5
+ it('should be removed', () => true);
6
+ });
package/global.d.ts ADDED
@@ -0,0 +1,11 @@
1
+ // Copyright (c) Cratis. All rights reserved.
2
+ // Licensed under the MIT license. See LICENSE file in the project root for full license information.
3
+
4
+ import * as React from 'react';
5
+
6
+ declare global {
7
+ namespace JSX {
8
+ interface Element extends React.ReactElement {}
9
+ // Add additional JSX-related overrides if necessary.
10
+ }
11
+ }
package/index.ts ADDED
@@ -0,0 +1,5 @@
1
+ // Copyright (c) Cratis. All rights reserved.
2
+ // Licensed under the MIT license. See LICENSE file in the project root for full license information.
3
+
4
+ export * from './AddQueryStringToReferences';
5
+ export * from './EmitMetadataPlugin';
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "@cratis/arc.vite",
3
+ "version": "18.0.0",
4
+ "description": "",
5
+ "author": "Cratis",
6
+ "license": "MIT",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/cratis/arc.git"
10
+ },
11
+ "publishConfig": {
12
+ "access": "public"
13
+ },
14
+ "files": [
15
+ "dist",
16
+ "**/*.ts",
17
+ "**/*.tsx"
18
+ ],
19
+ "type": "module",
20
+ "main": "dist/cjs/index.js",
21
+ "module": "dist/esm/index.js",
22
+ "types": "dist/esm/index.d.ts",
23
+ "exports": {
24
+ "./package.json": "./package.json",
25
+ ".": {
26
+ "types": "./dist/esm/index.d.ts",
27
+ "require": "./dist/cjs/index.js",
28
+ "import": "./dist/esm/index.js"
29
+ }
30
+ },
31
+ "scripts": {
32
+ "prepare": "yarn g:build",
33
+ "clean": "yarn g:clean",
34
+ "build": "yarn g:build",
35
+ "lint": "yarn g:lint",
36
+ "lint:ci": "yarn g:lint:ci",
37
+ "test": "yarn g:test",
38
+ "ci": "yarn g:ci",
39
+ "up": "yarn g:up"
40
+ },
41
+ "dependencies": {
42
+ "@cratis/arc": "18.0.0",
43
+ "@cratis/fundamentals": "^7.2.3"
44
+ },
45
+ "peerDependencies": {
46
+ "react": "^18.0.0 || ^19.0.0"
47
+ }
48
+ }