@contember/vite-plugin 2.0.0-alpha.3 → 2.0.0-alpha.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +74 -0
- package/dist/development/index.cjs +36 -2
- package/dist/development/index.cjs.map +1 -1
- package/dist/development/index.js +34 -0
- package/dist/development/index.js.map +1 -1
- package/dist/production/index.cjs +36 -2
- package/dist/production/index.cjs.map +1 -1
- package/dist/production/index.js +34 -0
- package/dist/production/index.js.map +1 -1
- package/dist/types/index.d.ts +2 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -12
- package/src/index.ts +38 -0
- package/tsconfig.json +7 -0
- package/tsdoc.json +6 -0
package/README.md
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
# @contember/vite-plugin
|
|
2
|
+
|
|
3
|
+
## Overview
|
|
4
|
+
|
|
5
|
+
`@contember/vite-plugin` is a Vite plugin designed to enhance the Vite build process for Contember applications. It provides configuration options and middleware to streamline the development and build processes.
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
yarn add @contember/vite-plugin
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
```javascript
|
|
16
|
+
import { defineConfig } from 'vite'
|
|
17
|
+
import { contember } from '@contember/vite-plugin'
|
|
18
|
+
|
|
19
|
+
export default defineConfig({
|
|
20
|
+
plugins: [contember()]
|
|
21
|
+
})
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
## Options
|
|
25
|
+
|
|
26
|
+
The plugin accepts an optional `ContemberOptions` object:
|
|
27
|
+
|
|
28
|
+
```typescript
|
|
29
|
+
type ContemberOptions = {
|
|
30
|
+
buildVersion?: boolean
|
|
31
|
+
disableMiddleware?: boolean
|
|
32
|
+
appPath?: string
|
|
33
|
+
}
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
- `buildVersion`: (Optional) When `true` (default), adds a build version meta tag to the HTML output.
|
|
37
|
+
- `disableMiddleware`: (Optional) When `true`, disables the built-in middleware.
|
|
38
|
+
- `appPath`: (Optional) Specifies the application path. Defaults to `/app`.
|
|
39
|
+
|
|
40
|
+
## Features
|
|
41
|
+
|
|
42
|
+
### 1. Project Name Injection
|
|
43
|
+
|
|
44
|
+
The plugin automatically detects the Contember project name from the command-line arguments and injects it into the application as an environment variable:
|
|
45
|
+
|
|
46
|
+
```javascript
|
|
47
|
+
import.meta.env.VITE_CONTEMBER_ADMIN_PROJECT_NAME
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
### 2. Build Configuration
|
|
51
|
+
|
|
52
|
+
- Sets the base URL to `/`.
|
|
53
|
+
- Configures the build input to include both the root and app HTML files.
|
|
54
|
+
|
|
55
|
+
### 3. Development Server Middleware
|
|
56
|
+
|
|
57
|
+
Unless disabled, the plugin adds middleware to handle routing for the app path, ensuring that requests to the app are properly handled.
|
|
58
|
+
|
|
59
|
+
### 4. Build Version Tagging
|
|
60
|
+
|
|
61
|
+
When enabled (default), the plugin adds a meta tag to the HTML output with a unique build version hash:
|
|
62
|
+
|
|
63
|
+
```html
|
|
64
|
+
<meta name="contember-build-version" content="[MD5_HASH]">
|
|
65
|
+
```
|
|
66
|
+
This is used for outdated application check.
|
|
67
|
+
|
|
68
|
+
## TypeScript Support
|
|
69
|
+
|
|
70
|
+
The plugin includes TypeScript definitions and is configured to work with TypeScript projects.
|
|
71
|
+
|
|
72
|
+
## Compatibility
|
|
73
|
+
|
|
74
|
+
This plugin is compatible with Vite versions 4 and 5.
|
|
@@ -1,13 +1,47 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const
|
|
3
|
+
const crypto = require("node:crypto");
|
|
4
4
|
function contember(options) {
|
|
5
|
+
const appPath = options?.appPath ?? "/app";
|
|
6
|
+
const contemberDsn = process.argv.find((it) => it.includes("contember://"));
|
|
7
|
+
const projectName = contemberDsn ? new URL(contemberDsn).username : null;
|
|
8
|
+
const defineConfig = projectName ? {
|
|
9
|
+
"import.meta.env.VITE_CONTEMBER_ADMIN_PROJECT_NAME": JSON.stringify(projectName)
|
|
10
|
+
} : {};
|
|
5
11
|
return {
|
|
6
12
|
name: "contember",
|
|
13
|
+
config(config) {
|
|
14
|
+
return {
|
|
15
|
+
define: defineConfig,
|
|
16
|
+
base: "/",
|
|
17
|
+
...config,
|
|
18
|
+
build: {
|
|
19
|
+
sourcemap: true,
|
|
20
|
+
...config.build,
|
|
21
|
+
rollupOptions: {
|
|
22
|
+
...config.build?.rollupOptions,
|
|
23
|
+
input: config.build?.rollupOptions?.input ?? {
|
|
24
|
+
root: "./index.html",
|
|
25
|
+
app: `.${appPath}/index.html`
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
};
|
|
30
|
+
},
|
|
31
|
+
configureServer(serve) {
|
|
32
|
+
if (!options?.disableMiddleware) {
|
|
33
|
+
serve.middlewares.use((req, res, next) => {
|
|
34
|
+
if (req.url === appPath || req.url?.startsWith(`${appPath}/`) && !req.url?.match(/\.\w+($|\?)/)) {
|
|
35
|
+
req.url = `${appPath}/`;
|
|
36
|
+
}
|
|
37
|
+
next();
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
},
|
|
7
41
|
transformIndexHtml: options?.buildVersion === false ? void 0 : {
|
|
8
42
|
order: "post",
|
|
9
43
|
handler: (html) => {
|
|
10
|
-
const fileHash =
|
|
44
|
+
const fileHash = crypto.createHash("md5").update(html).digest().toString("hex");
|
|
11
45
|
return {
|
|
12
46
|
html,
|
|
13
47
|
tags: [
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs","sources":["
|
|
1
|
+
{"version":3,"file":"index.cjs","sources":["../../../packages/vite-plugin/src/index.ts"],"sourcesContent":["import { createHash } from 'node:crypto'\nimport { Plugin } from 'vite'\n\ntype ContemberOptions = {\n\tbuildVersion?: boolean\n\tdisableMiddleware?: boolean\n\tappPath?: string\n}\n\nexport function contember(options?: ContemberOptions): Plugin {\n\tconst appPath = options?.appPath ?? '/app'\n\tconst contemberDsn = process.argv.find(it => it.includes('contember://'))\n\tconst projectName = contemberDsn ? new URL(contemberDsn).username : null\n\n\tconst defineConfig = projectName ? {\n\t\t'import.meta.env.VITE_CONTEMBER_ADMIN_PROJECT_NAME': JSON.stringify(projectName),\n\t} : {}\n\n\treturn ({\n\t\tname: 'contember',\n\t\tconfig(config) {\n\t\t\treturn {\n\t\t\t\tdefine: defineConfig,\n\t\t\t\tbase: '/',\n\t\t\t\t...config,\n\t\t\t\tbuild: {\n\t\t\t\t\tsourcemap: true,\n\t\t\t\t\t...config.build,\n\t\t\t\t\trollupOptions: {\n\t\t\t\t\t\t...config.build?.rollupOptions,\n\t\t\t\t\t\tinput: config.build?.rollupOptions?.input ?? {\n\t\t\t\t\t\t\troot: './index.html',\n\t\t\t\t\t\t\tapp: `.${appPath}/index.html`,\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t}\n\t\t},\n\t\tconfigureServer(serve) {\n\t\t\tif (!options?.disableMiddleware) {\n\t\t\t\tserve.middlewares.use((req, res, next) => {\n\t\t\t\t\tif (req.url === appPath || req.url?.startsWith(`${appPath}/`) && !req.url?.match(/\\.\\w+($|\\?)/)) {\n\t\t\t\t\t\treq.url = `${appPath}/`\n\t\t\t\t\t}\n\t\t\t\t\tnext()\n\t\t\t\t})\n\t\t\t}\n\t\t},\n\t\ttransformIndexHtml: options?.buildVersion === false\n\t\t\t? undefined\n\t\t\t: {\n\t\t\t\torder: 'post',\n\t\t\t\thandler: html => {\n\t\t\t\t\tconst fileHash = createHash('md5').update(html).digest().toString('hex')\n\t\t\t\t\treturn ({\n\t\t\t\t\t\thtml,\n\t\t\t\t\t\ttags: [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\ttag: 'meta',\n\t\t\t\t\t\t\t\tinjectTo: 'head',\n\t\t\t\t\t\t\t\tattrs: {\n\t\t\t\t\t\t\t\t\tname: 'contember-build-version',\n\t\t\t\t\t\t\t\t\tcontent: fileHash,\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t],\n\t\t\t\t\t})\n\t\t\t\t},\n\t\t\t},\n\t})\n}\n"],"names":["createHash"],"mappings":";;;AASO,SAAS,UAAU,SAAoC;AACvD,QAAA,UAAU,SAAS,WAAW;AAC9B,QAAA,eAAe,QAAQ,KAAK,KAAK,QAAM,GAAG,SAAS,cAAc,CAAC;AACxE,QAAM,cAAc,eAAe,IAAI,IAAI,YAAY,EAAE,WAAW;AAEpE,QAAM,eAAe,cAAc;AAAA,IAClC,qDAAqD,KAAK,UAAU,WAAW;AAAA,MAC5E;AAEI,SAAA;AAAA,IACP,MAAM;AAAA,IACN,OAAO,QAAQ;AACP,aAAA;AAAA,QACN,QAAQ;AAAA,QACR,MAAM;AAAA,QACN,GAAG;AAAA,QACH,OAAO;AAAA,UACN,WAAW;AAAA,UACX,GAAG,OAAO;AAAA,UACV,eAAe;AAAA,YACd,GAAG,OAAO,OAAO;AAAA,YACjB,OAAO,OAAO,OAAO,eAAe,SAAS;AAAA,cAC5C,MAAM;AAAA,cACN,KAAK,IAAI,OAAO;AAAA,YACjB;AAAA,UACD;AAAA,QACD;AAAA,MAAA;AAAA,IAEF;AAAA,IACA,gBAAgB,OAAO;AAClB,UAAA,CAAC,SAAS,mBAAmB;AAChC,cAAM,YAAY,IAAI,CAAC,KAAK,KAAK,SAAS;AACzC,cAAI,IAAI,QAAQ,WAAW,IAAI,KAAK,WAAW,GAAG,OAAO,GAAG,KAAK,CAAC,IAAI,KAAK,MAAM,aAAa,GAAG;AAC5F,gBAAA,MAAM,GAAG,OAAO;AAAA,UACrB;AACK;QAAA,CACL;AAAA,MACF;AAAA,IACD;AAAA,IACA,oBAAoB,SAAS,iBAAiB,QAC3C,SACA;AAAA,MACD,OAAO;AAAA,MACP,SAAS,CAAQ,SAAA;AACV,cAAA,WAAWA,OAAAA,WAAW,KAAK,EAAE,OAAO,IAAI,EAAE,OAAS,EAAA,SAAS,KAAK;AAC/D,eAAA;AAAA,UACP;AAAA,UACA,MAAM;AAAA,YACL;AAAA,cACC,KAAK;AAAA,cACL,UAAU;AAAA,cACV,OAAO;AAAA,gBACN,MAAM;AAAA,gBACN,SAAS;AAAA,cACV;AAAA,YACD;AAAA,UACD;AAAA,QAAA;AAAA,MAEF;AAAA,IACD;AAAA,EAAA;AAEH;;"}
|
|
@@ -1,7 +1,41 @@
|
|
|
1
1
|
import { createHash } from "node:crypto";
|
|
2
2
|
function contember(options) {
|
|
3
|
+
const appPath = options?.appPath ?? "/app";
|
|
4
|
+
const contemberDsn = process.argv.find((it) => it.includes("contember://"));
|
|
5
|
+
const projectName = contemberDsn ? new URL(contemberDsn).username : null;
|
|
6
|
+
const defineConfig = projectName ? {
|
|
7
|
+
"import.meta.env.VITE_CONTEMBER_ADMIN_PROJECT_NAME": JSON.stringify(projectName)
|
|
8
|
+
} : {};
|
|
3
9
|
return {
|
|
4
10
|
name: "contember",
|
|
11
|
+
config(config) {
|
|
12
|
+
return {
|
|
13
|
+
define: defineConfig,
|
|
14
|
+
base: "/",
|
|
15
|
+
...config,
|
|
16
|
+
build: {
|
|
17
|
+
sourcemap: true,
|
|
18
|
+
...config.build,
|
|
19
|
+
rollupOptions: {
|
|
20
|
+
...config.build?.rollupOptions,
|
|
21
|
+
input: config.build?.rollupOptions?.input ?? {
|
|
22
|
+
root: "./index.html",
|
|
23
|
+
app: `.${appPath}/index.html`
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
};
|
|
28
|
+
},
|
|
29
|
+
configureServer(serve) {
|
|
30
|
+
if (!options?.disableMiddleware) {
|
|
31
|
+
serve.middlewares.use((req, res, next) => {
|
|
32
|
+
if (req.url === appPath || req.url?.startsWith(`${appPath}/`) && !req.url?.match(/\.\w+($|\?)/)) {
|
|
33
|
+
req.url = `${appPath}/`;
|
|
34
|
+
}
|
|
35
|
+
next();
|
|
36
|
+
});
|
|
37
|
+
}
|
|
38
|
+
},
|
|
5
39
|
transformIndexHtml: options?.buildVersion === false ? void 0 : {
|
|
6
40
|
order: "post",
|
|
7
41
|
handler: (html) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../packages/vite-plugin/src/index.ts"],"sourcesContent":["import { createHash } from 'node:crypto'\nimport { Plugin } from 'vite'\n\ntype ContemberOptions = {\n\tbuildVersion?: boolean\n\tdisableMiddleware?: boolean\n\tappPath?: string\n}\n\nexport function contember(options?: ContemberOptions): Plugin {\n\tconst appPath = options?.appPath ?? '/app'\n\tconst contemberDsn = process.argv.find(it => it.includes('contember://'))\n\tconst projectName = contemberDsn ? new URL(contemberDsn).username : null\n\n\tconst defineConfig = projectName ? {\n\t\t'import.meta.env.VITE_CONTEMBER_ADMIN_PROJECT_NAME': JSON.stringify(projectName),\n\t} : {}\n\n\treturn ({\n\t\tname: 'contember',\n\t\tconfig(config) {\n\t\t\treturn {\n\t\t\t\tdefine: defineConfig,\n\t\t\t\tbase: '/',\n\t\t\t\t...config,\n\t\t\t\tbuild: {\n\t\t\t\t\tsourcemap: true,\n\t\t\t\t\t...config.build,\n\t\t\t\t\trollupOptions: {\n\t\t\t\t\t\t...config.build?.rollupOptions,\n\t\t\t\t\t\tinput: config.build?.rollupOptions?.input ?? {\n\t\t\t\t\t\t\troot: './index.html',\n\t\t\t\t\t\t\tapp: `.${appPath}/index.html`,\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t}\n\t\t},\n\t\tconfigureServer(serve) {\n\t\t\tif (!options?.disableMiddleware) {\n\t\t\t\tserve.middlewares.use((req, res, next) => {\n\t\t\t\t\tif (req.url === appPath || req.url?.startsWith(`${appPath}/`) && !req.url?.match(/\\.\\w+($|\\?)/)) {\n\t\t\t\t\t\treq.url = `${appPath}/`\n\t\t\t\t\t}\n\t\t\t\t\tnext()\n\t\t\t\t})\n\t\t\t}\n\t\t},\n\t\ttransformIndexHtml: options?.buildVersion === false\n\t\t\t? undefined\n\t\t\t: {\n\t\t\t\torder: 'post',\n\t\t\t\thandler: html => {\n\t\t\t\t\tconst fileHash = createHash('md5').update(html).digest().toString('hex')\n\t\t\t\t\treturn ({\n\t\t\t\t\t\thtml,\n\t\t\t\t\t\ttags: [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\ttag: 'meta',\n\t\t\t\t\t\t\t\tinjectTo: 'head',\n\t\t\t\t\t\t\t\tattrs: {\n\t\t\t\t\t\t\t\t\tname: 'contember-build-version',\n\t\t\t\t\t\t\t\t\tcontent: fileHash,\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t],\n\t\t\t\t\t})\n\t\t\t\t},\n\t\t\t},\n\t})\n}\n"],"names":[],"mappings":";AASO,SAAS,UAAU,SAAoC;AACvD,QAAA,UAAU,SAAS,WAAW;AAC9B,QAAA,eAAe,QAAQ,KAAK,KAAK,QAAM,GAAG,SAAS,cAAc,CAAC;AACxE,QAAM,cAAc,eAAe,IAAI,IAAI,YAAY,EAAE,WAAW;AAEpE,QAAM,eAAe,cAAc;AAAA,IAClC,qDAAqD,KAAK,UAAU,WAAW;AAAA,MAC5E;AAEI,SAAA;AAAA,IACP,MAAM;AAAA,IACN,OAAO,QAAQ;AACP,aAAA;AAAA,QACN,QAAQ;AAAA,QACR,MAAM;AAAA,QACN,GAAG;AAAA,QACH,OAAO;AAAA,UACN,WAAW;AAAA,UACX,GAAG,OAAO;AAAA,UACV,eAAe;AAAA,YACd,GAAG,OAAO,OAAO;AAAA,YACjB,OAAO,OAAO,OAAO,eAAe,SAAS;AAAA,cAC5C,MAAM;AAAA,cACN,KAAK,IAAI,OAAO;AAAA,YACjB;AAAA,UACD;AAAA,QACD;AAAA,MAAA;AAAA,IAEF;AAAA,IACA,gBAAgB,OAAO;AAClB,UAAA,CAAC,SAAS,mBAAmB;AAChC,cAAM,YAAY,IAAI,CAAC,KAAK,KAAK,SAAS;AACzC,cAAI,IAAI,QAAQ,WAAW,IAAI,KAAK,WAAW,GAAG,OAAO,GAAG,KAAK,CAAC,IAAI,KAAK,MAAM,aAAa,GAAG;AAC5F,gBAAA,MAAM,GAAG,OAAO;AAAA,UACrB;AACK;QAAA,CACL;AAAA,MACF;AAAA,IACD;AAAA,IACA,oBAAoB,SAAS,iBAAiB,QAC3C,SACA;AAAA,MACD,OAAO;AAAA,MACP,SAAS,CAAQ,SAAA;AACV,cAAA,WAAW,WAAW,KAAK,EAAE,OAAO,IAAI,EAAE,OAAS,EAAA,SAAS,KAAK;AAC/D,eAAA;AAAA,UACP;AAAA,UACA,MAAM;AAAA,YACL;AAAA,cACC,KAAK;AAAA,cACL,UAAU;AAAA,cACV,OAAO;AAAA,gBACN,MAAM;AAAA,gBACN,SAAS;AAAA,cACV;AAAA,YACD;AAAA,UACD;AAAA,QAAA;AAAA,MAEF;AAAA,IACD;AAAA,EAAA;AAEH;"}
|
|
@@ -1,13 +1,47 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const
|
|
3
|
+
const crypto = require("node:crypto");
|
|
4
4
|
function contember(options) {
|
|
5
|
+
const appPath = options?.appPath ?? "/app";
|
|
6
|
+
const contemberDsn = process.argv.find((it) => it.includes("contember://"));
|
|
7
|
+
const projectName = contemberDsn ? new URL(contemberDsn).username : null;
|
|
8
|
+
const defineConfig = projectName ? {
|
|
9
|
+
"import.meta.env.VITE_CONTEMBER_ADMIN_PROJECT_NAME": JSON.stringify(projectName)
|
|
10
|
+
} : {};
|
|
5
11
|
return {
|
|
6
12
|
name: "contember",
|
|
13
|
+
config(config) {
|
|
14
|
+
return {
|
|
15
|
+
define: defineConfig,
|
|
16
|
+
base: "/",
|
|
17
|
+
...config,
|
|
18
|
+
build: {
|
|
19
|
+
sourcemap: true,
|
|
20
|
+
...config.build,
|
|
21
|
+
rollupOptions: {
|
|
22
|
+
...config.build?.rollupOptions,
|
|
23
|
+
input: config.build?.rollupOptions?.input ?? {
|
|
24
|
+
root: "./index.html",
|
|
25
|
+
app: `.${appPath}/index.html`
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
};
|
|
30
|
+
},
|
|
31
|
+
configureServer(serve) {
|
|
32
|
+
if (!options?.disableMiddleware) {
|
|
33
|
+
serve.middlewares.use((req, res, next) => {
|
|
34
|
+
if (req.url === appPath || req.url?.startsWith(`${appPath}/`) && !req.url?.match(/\.\w+($|\?)/)) {
|
|
35
|
+
req.url = `${appPath}/`;
|
|
36
|
+
}
|
|
37
|
+
next();
|
|
38
|
+
});
|
|
39
|
+
}
|
|
40
|
+
},
|
|
7
41
|
transformIndexHtml: options?.buildVersion === false ? void 0 : {
|
|
8
42
|
order: "post",
|
|
9
43
|
handler: (html) => {
|
|
10
|
-
const fileHash =
|
|
44
|
+
const fileHash = crypto.createHash("md5").update(html).digest().toString("hex");
|
|
11
45
|
return {
|
|
12
46
|
html,
|
|
13
47
|
tags: [
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs","sources":["
|
|
1
|
+
{"version":3,"file":"index.cjs","sources":["../../../packages/vite-plugin/src/index.ts"],"sourcesContent":["import { createHash } from 'node:crypto'\nimport { Plugin } from 'vite'\n\ntype ContemberOptions = {\n\tbuildVersion?: boolean\n\tdisableMiddleware?: boolean\n\tappPath?: string\n}\n\nexport function contember(options?: ContemberOptions): Plugin {\n\tconst appPath = options?.appPath ?? '/app'\n\tconst contemberDsn = process.argv.find(it => it.includes('contember://'))\n\tconst projectName = contemberDsn ? new URL(contemberDsn).username : null\n\n\tconst defineConfig = projectName ? {\n\t\t'import.meta.env.VITE_CONTEMBER_ADMIN_PROJECT_NAME': JSON.stringify(projectName),\n\t} : {}\n\n\treturn ({\n\t\tname: 'contember',\n\t\tconfig(config) {\n\t\t\treturn {\n\t\t\t\tdefine: defineConfig,\n\t\t\t\tbase: '/',\n\t\t\t\t...config,\n\t\t\t\tbuild: {\n\t\t\t\t\tsourcemap: true,\n\t\t\t\t\t...config.build,\n\t\t\t\t\trollupOptions: {\n\t\t\t\t\t\t...config.build?.rollupOptions,\n\t\t\t\t\t\tinput: config.build?.rollupOptions?.input ?? {\n\t\t\t\t\t\t\troot: './index.html',\n\t\t\t\t\t\t\tapp: `.${appPath}/index.html`,\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t}\n\t\t},\n\t\tconfigureServer(serve) {\n\t\t\tif (!options?.disableMiddleware) {\n\t\t\t\tserve.middlewares.use((req, res, next) => {\n\t\t\t\t\tif (req.url === appPath || req.url?.startsWith(`${appPath}/`) && !req.url?.match(/\\.\\w+($|\\?)/)) {\n\t\t\t\t\t\treq.url = `${appPath}/`\n\t\t\t\t\t}\n\t\t\t\t\tnext()\n\t\t\t\t})\n\t\t\t}\n\t\t},\n\t\ttransformIndexHtml: options?.buildVersion === false\n\t\t\t? undefined\n\t\t\t: {\n\t\t\t\torder: 'post',\n\t\t\t\thandler: html => {\n\t\t\t\t\tconst fileHash = createHash('md5').update(html).digest().toString('hex')\n\t\t\t\t\treturn ({\n\t\t\t\t\t\thtml,\n\t\t\t\t\t\ttags: [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\ttag: 'meta',\n\t\t\t\t\t\t\t\tinjectTo: 'head',\n\t\t\t\t\t\t\t\tattrs: {\n\t\t\t\t\t\t\t\t\tname: 'contember-build-version',\n\t\t\t\t\t\t\t\t\tcontent: fileHash,\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t],\n\t\t\t\t\t})\n\t\t\t\t},\n\t\t\t},\n\t})\n}\n"],"names":["createHash"],"mappings":";;;AASO,SAAS,UAAU,SAAoC;AACvD,QAAA,UAAU,SAAS,WAAW;AAC9B,QAAA,eAAe,QAAQ,KAAK,KAAK,QAAM,GAAG,SAAS,cAAc,CAAC;AACxE,QAAM,cAAc,eAAe,IAAI,IAAI,YAAY,EAAE,WAAW;AAEpE,QAAM,eAAe,cAAc;AAAA,IAClC,qDAAqD,KAAK,UAAU,WAAW;AAAA,MAC5E;AAEI,SAAA;AAAA,IACP,MAAM;AAAA,IACN,OAAO,QAAQ;AACP,aAAA;AAAA,QACN,QAAQ;AAAA,QACR,MAAM;AAAA,QACN,GAAG;AAAA,QACH,OAAO;AAAA,UACN,WAAW;AAAA,UACX,GAAG,OAAO;AAAA,UACV,eAAe;AAAA,YACd,GAAG,OAAO,OAAO;AAAA,YACjB,OAAO,OAAO,OAAO,eAAe,SAAS;AAAA,cAC5C,MAAM;AAAA,cACN,KAAK,IAAI,OAAO;AAAA,YACjB;AAAA,UACD;AAAA,QACD;AAAA,MAAA;AAAA,IAEF;AAAA,IACA,gBAAgB,OAAO;AAClB,UAAA,CAAC,SAAS,mBAAmB;AAChC,cAAM,YAAY,IAAI,CAAC,KAAK,KAAK,SAAS;AACzC,cAAI,IAAI,QAAQ,WAAW,IAAI,KAAK,WAAW,GAAG,OAAO,GAAG,KAAK,CAAC,IAAI,KAAK,MAAM,aAAa,GAAG;AAC5F,gBAAA,MAAM,GAAG,OAAO;AAAA,UACrB;AACK;QAAA,CACL;AAAA,MACF;AAAA,IACD;AAAA,IACA,oBAAoB,SAAS,iBAAiB,QAC3C,SACA;AAAA,MACD,OAAO;AAAA,MACP,SAAS,CAAQ,SAAA;AACV,cAAA,WAAWA,OAAAA,WAAW,KAAK,EAAE,OAAO,IAAI,EAAE,OAAS,EAAA,SAAS,KAAK;AAC/D,eAAA;AAAA,UACP;AAAA,UACA,MAAM;AAAA,YACL;AAAA,cACC,KAAK;AAAA,cACL,UAAU;AAAA,cACV,OAAO;AAAA,gBACN,MAAM;AAAA,gBACN,SAAS;AAAA,cACV;AAAA,YACD;AAAA,UACD;AAAA,QAAA;AAAA,MAEF;AAAA,IACD;AAAA,EAAA;AAEH;;"}
|
package/dist/production/index.js
CHANGED
|
@@ -1,7 +1,41 @@
|
|
|
1
1
|
import { createHash } from "node:crypto";
|
|
2
2
|
function contember(options) {
|
|
3
|
+
const appPath = options?.appPath ?? "/app";
|
|
4
|
+
const contemberDsn = process.argv.find((it) => it.includes("contember://"));
|
|
5
|
+
const projectName = contemberDsn ? new URL(contemberDsn).username : null;
|
|
6
|
+
const defineConfig = projectName ? {
|
|
7
|
+
"import.meta.env.VITE_CONTEMBER_ADMIN_PROJECT_NAME": JSON.stringify(projectName)
|
|
8
|
+
} : {};
|
|
3
9
|
return {
|
|
4
10
|
name: "contember",
|
|
11
|
+
config(config) {
|
|
12
|
+
return {
|
|
13
|
+
define: defineConfig,
|
|
14
|
+
base: "/",
|
|
15
|
+
...config,
|
|
16
|
+
build: {
|
|
17
|
+
sourcemap: true,
|
|
18
|
+
...config.build,
|
|
19
|
+
rollupOptions: {
|
|
20
|
+
...config.build?.rollupOptions,
|
|
21
|
+
input: config.build?.rollupOptions?.input ?? {
|
|
22
|
+
root: "./index.html",
|
|
23
|
+
app: `.${appPath}/index.html`
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
};
|
|
28
|
+
},
|
|
29
|
+
configureServer(serve) {
|
|
30
|
+
if (!options?.disableMiddleware) {
|
|
31
|
+
serve.middlewares.use((req, res, next) => {
|
|
32
|
+
if (req.url === appPath || req.url?.startsWith(`${appPath}/`) && !req.url?.match(/\.\w+($|\?)/)) {
|
|
33
|
+
req.url = `${appPath}/`;
|
|
34
|
+
}
|
|
35
|
+
next();
|
|
36
|
+
});
|
|
37
|
+
}
|
|
38
|
+
},
|
|
5
39
|
transformIndexHtml: options?.buildVersion === false ? void 0 : {
|
|
6
40
|
order: "post",
|
|
7
41
|
handler: (html) => {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../packages/vite-plugin/src/index.ts"],"sourcesContent":["import { createHash } from 'node:crypto'\nimport { Plugin } from 'vite'\n\ntype ContemberOptions = {\n\tbuildVersion?: boolean\n\tdisableMiddleware?: boolean\n\tappPath?: string\n}\n\nexport function contember(options?: ContemberOptions): Plugin {\n\tconst appPath = options?.appPath ?? '/app'\n\tconst contemberDsn = process.argv.find(it => it.includes('contember://'))\n\tconst projectName = contemberDsn ? new URL(contemberDsn).username : null\n\n\tconst defineConfig = projectName ? {\n\t\t'import.meta.env.VITE_CONTEMBER_ADMIN_PROJECT_NAME': JSON.stringify(projectName),\n\t} : {}\n\n\treturn ({\n\t\tname: 'contember',\n\t\tconfig(config) {\n\t\t\treturn {\n\t\t\t\tdefine: defineConfig,\n\t\t\t\tbase: '/',\n\t\t\t\t...config,\n\t\t\t\tbuild: {\n\t\t\t\t\tsourcemap: true,\n\t\t\t\t\t...config.build,\n\t\t\t\t\trollupOptions: {\n\t\t\t\t\t\t...config.build?.rollupOptions,\n\t\t\t\t\t\tinput: config.build?.rollupOptions?.input ?? {\n\t\t\t\t\t\t\troot: './index.html',\n\t\t\t\t\t\t\tapp: `.${appPath}/index.html`,\n\t\t\t\t\t\t},\n\t\t\t\t\t},\n\t\t\t\t},\n\t\t\t}\n\t\t},\n\t\tconfigureServer(serve) {\n\t\t\tif (!options?.disableMiddleware) {\n\t\t\t\tserve.middlewares.use((req, res, next) => {\n\t\t\t\t\tif (req.url === appPath || req.url?.startsWith(`${appPath}/`) && !req.url?.match(/\\.\\w+($|\\?)/)) {\n\t\t\t\t\t\treq.url = `${appPath}/`\n\t\t\t\t\t}\n\t\t\t\t\tnext()\n\t\t\t\t})\n\t\t\t}\n\t\t},\n\t\ttransformIndexHtml: options?.buildVersion === false\n\t\t\t? undefined\n\t\t\t: {\n\t\t\t\torder: 'post',\n\t\t\t\thandler: html => {\n\t\t\t\t\tconst fileHash = createHash('md5').update(html).digest().toString('hex')\n\t\t\t\t\treturn ({\n\t\t\t\t\t\thtml,\n\t\t\t\t\t\ttags: [\n\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\ttag: 'meta',\n\t\t\t\t\t\t\t\tinjectTo: 'head',\n\t\t\t\t\t\t\t\tattrs: {\n\t\t\t\t\t\t\t\t\tname: 'contember-build-version',\n\t\t\t\t\t\t\t\t\tcontent: fileHash,\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t},\n\t\t\t\t\t\t],\n\t\t\t\t\t})\n\t\t\t\t},\n\t\t\t},\n\t})\n}\n"],"names":[],"mappings":";AASO,SAAS,UAAU,SAAoC;AACvD,QAAA,UAAU,SAAS,WAAW;AAC9B,QAAA,eAAe,QAAQ,KAAK,KAAK,QAAM,GAAG,SAAS,cAAc,CAAC;AACxE,QAAM,cAAc,eAAe,IAAI,IAAI,YAAY,EAAE,WAAW;AAEpE,QAAM,eAAe,cAAc;AAAA,IAClC,qDAAqD,KAAK,UAAU,WAAW;AAAA,MAC5E;AAEI,SAAA;AAAA,IACP,MAAM;AAAA,IACN,OAAO,QAAQ;AACP,aAAA;AAAA,QACN,QAAQ;AAAA,QACR,MAAM;AAAA,QACN,GAAG;AAAA,QACH,OAAO;AAAA,UACN,WAAW;AAAA,UACX,GAAG,OAAO;AAAA,UACV,eAAe;AAAA,YACd,GAAG,OAAO,OAAO;AAAA,YACjB,OAAO,OAAO,OAAO,eAAe,SAAS;AAAA,cAC5C,MAAM;AAAA,cACN,KAAK,IAAI,OAAO;AAAA,YACjB;AAAA,UACD;AAAA,QACD;AAAA,MAAA;AAAA,IAEF;AAAA,IACA,gBAAgB,OAAO;AAClB,UAAA,CAAC,SAAS,mBAAmB;AAChC,cAAM,YAAY,IAAI,CAAC,KAAK,KAAK,SAAS;AACzC,cAAI,IAAI,QAAQ,WAAW,IAAI,KAAK,WAAW,GAAG,OAAO,GAAG,KAAK,CAAC,IAAI,KAAK,MAAM,aAAa,GAAG;AAC5F,gBAAA,MAAM,GAAG,OAAO;AAAA,UACrB;AACK;QAAA,CACL;AAAA,MACF;AAAA,IACD;AAAA,IACA,oBAAoB,SAAS,iBAAiB,QAC3C,SACA;AAAA,MACD,OAAO;AAAA,MACP,SAAS,CAAQ,SAAA;AACV,cAAA,WAAW,WAAW,KAAK,EAAE,OAAO,IAAI,EAAE,OAAS,EAAA,SAAS,KAAK;AAC/D,eAAA;AAAA,UACP;AAAA,UACA,MAAM;AAAA,YACL;AAAA,cACC,KAAK;AAAA,cACL,UAAU;AAAA,cACV,OAAO;AAAA,gBACN,MAAM;AAAA,gBACN,SAAS;AAAA,cACV;AAAA,YACD;AAAA,UACD;AAAA,QAAA;AAAA,MAEF;AAAA,IACD;AAAA,EAAA;AAEH;"}
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,MAAM,CAAA;AAE7B,KAAK,gBAAgB,GAAG;IACvB,YAAY,CAAC,EAAE,OAAO,CAAA;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,MAAM,CAAA;AAE7B,KAAK,gBAAgB,GAAG;IACvB,YAAY,CAAC,EAAE,OAAO,CAAA;IACtB,iBAAiB,CAAC,EAAE,OAAO,CAAA;IAC3B,OAAO,CAAC,EAAE,MAAM,CAAA;CAChB,CAAA;AAED,wBAAgB,SAAS,CAAC,OAAO,CAAC,EAAE,gBAAgB,GAAG,MAAM,CA6D5D"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../../node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../../node_modules/typescript/lib/lib.es2023.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.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.sharedmemory.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.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.object.d.ts","../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../node_modules/@types/react/global.d.ts","../../../../node_modules/csstype/index.d.ts","../../../../node_modules/@types/prop-types/index.d.ts","../../../../node_modules/@types/react/index.d.ts","../../../../node_modules/@types/react/jsx-runtime.d.ts","../../../../node_modules/@types/node/assert.d.ts","../../../../node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/buffer/index.d.ts","../../../../node_modules/undici-types/header.d.ts","../../../../node_modules/undici-types/readable.d.ts","../../../../node_modules/undici-types/file.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.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/agent.d.ts","../../../../node_modules/undici-types/mock-interceptor.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/mock-errors.d.ts","../../../../node_modules/undici-types/proxy-agent.d.ts","../../../../node_modules/undici-types/api.d.ts","../../../../node_modules/undici-types/cookies.d.ts","../../../../node_modules/undici-types/patch.d.ts","../../../../node_modules/undici-types/filereader.d.ts","../../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../../node_modules/undici-types/websocket.d.ts","../../../../node_modules/undici-types/content-type.d.ts","../../../../node_modules/undici-types/cache.d.ts","../../../../node_modules/undici-types/interceptors.d.ts","../../../../node_modules/undici-types/index.d.ts","../../../../node_modules/@types/node/globals.d.ts","../../../../node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/@types/node/buffer.d.ts","../../../../node_modules/@types/node/child_process.d.ts","../../../../node_modules/@types/node/cluster.d.ts","../../../../node_modules/@types/node/console.d.ts","../../../../node_modules/@types/node/constants.d.ts","../../../../node_modules/@types/node/crypto.d.ts","../../../../node_modules/@types/node/dgram.d.ts","../../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/@types/node/dns.d.ts","../../../../node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/@types/node/domain.d.ts","../../../../node_modules/@types/node/dom-events.d.ts","../../../../node_modules/@types/node/events.d.ts","../../../../node_modules/@types/node/fs.d.ts","../../../../node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/@types/node/http.d.ts","../../../../node_modules/@types/node/http2.d.ts","../../../../node_modules/@types/node/https.d.ts","../../../../node_modules/@types/node/inspector.d.ts","../../../../node_modules/@types/node/module.d.ts","../../../../node_modules/@types/node/net.d.ts","../../../../node_modules/@types/node/os.d.ts","../../../../node_modules/@types/node/path.d.ts","../../../../node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/@types/node/process.d.ts","../../../../node_modules/@types/node/punycode.d.ts","../../../../node_modules/@types/node/querystring.d.ts","../../../../node_modules/@types/node/readline.d.ts","../../../../node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/@types/node/repl.d.ts","../../../../node_modules/@types/node/stream.d.ts","../../../../node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/@types/node/stream/web.d.ts","../../../../node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/@types/node/test.d.ts","../../../../node_modules/@types/node/timers.d.ts","../../../../node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/@types/node/tls.d.ts","../../../../node_modules/@types/node/trace_events.d.ts","../../../../node_modules/@types/node/tty.d.ts","../../../../node_modules/@types/node/url.d.ts","../../../../node_modules/@types/node/util.d.ts","../../../../node_modules/@types/node/v8.d.ts","../../../../node_modules/@types/node/vm.d.ts","../../../../node_modules/@types/node/wasi.d.ts","../../../../node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/@types/node/zlib.d.ts","../../../../node_modules/@types/node/globals.global.d.ts","../../../../node_modules/@types/node/index.d.ts","../../../../node_modules/rollup/dist/rollup.d.ts","../../../../node_modules/vite/types/hmrPayload.d.ts","../../../../node_modules/vite/types/customEvent.d.ts","../../../../node_modules/vite/types/hot.d.ts","../../../../node_modules/vite/dist/node/types.d-aGj9QkWt.d.ts","../../../../node_modules/vite/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/runtime.d.ts","../../../../node_modules/vite/types/importGlob.d.ts","../../../../node_modules/vite/types/metadata.d.ts","../../../../node_modules/vite/dist/node/index.d.ts","../../src/index.ts"],"fileInfos":[{"version":"824cb491a40f7e8fdeb56f1df5edf91b23f3e3ee6b4cde84d4a99be32338faee","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","1c0cdb8dc619bc549c3e5020643e7cf7ae7940058e8c7e5aefa5871b6d86f44b","886e50ef125efb7878f744e86908884c0133e7a6d9d80013f421b0cd8fb2af94",{"version":"87d693a4920d794a73384b3c779cadcb8548ac6945aa7a925832fe2418c9527a","affectsGlobalScope":true},{"version":"76f838d5d49b65de83bc345c04aa54c62a3cfdb72a477dc0c0fce89a30596c30","affectsGlobalScope":true},{"version":"138fb588d26538783b78d1e3b2c2cc12d55840b97bf5e08bca7f7a174fbe2f17","affectsGlobalScope":true},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"bc47685641087c015972a3f072480889f0d6c65515f12bd85222f49a98952ed7","affectsGlobalScope":true},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true},{"version":"bb42a7797d996412ecdc5b2787720de477103a0b2e53058569069a0e2bae6c7e","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"b541a838a13f9234aba650a825393ffc2292dc0fc87681a5d81ef0c96d281e7a","affectsGlobalScope":true},{"version":"b20fe0eca9a4e405f1a5ae24a2b3290b37cf7f21eba6cbe4fc3fab979237d4f3","affectsGlobalScope":true},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"49ed889be54031e1044af0ad2c603d627b8bda8b50c1a68435fe85583901d072","affectsGlobalScope":true},{"version":"e93d098658ce4f0c8a0779e6cab91d0259efb88a318137f686ad76f8410ca270","affectsGlobalScope":true},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"5e07ed3809d48205d5b985642a59f2eba47c402374a7cf8006b686f79efadcbd","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"8073890e29d2f46fdbc19b8d6d2eb9ea58db9a2052f8640af20baff9afbc8640","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true},{"version":"51e547984877a62227042850456de71a5c45e7fe86b7c975c6e68896c86fa23b","affectsGlobalScope":true},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true},{"version":"d8670852241d4c6e03f2b89d67497a4bbefe29ecaa5a444e2c11a9b05e6fccc6","affectsGlobalScope":true},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true},{"version":"50d53ccd31f6667aff66e3d62adf948879a3a16f05d89882d1188084ee415bbc","affectsGlobalScope":true},{"version":"08a58483392df5fcc1db57d782e87734f77ae9eab42516028acbfe46f29a3ef7","affectsGlobalScope":true},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true},{"version":"13f6e6380c78e15e140243dc4be2fa546c287c6d61f4729bc2dd7cf449605471","affectsGlobalScope":true},{"version":"15b98a533864d324e5f57cd3cfc0579b231df58c1c0f6063ea0fcb13c3c74ff9","affectsGlobalScope":true},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},{"version":"55461596dc873b866911ef4e640fae4c39da7ac1fbc7ef5e649cb2f2fb42c349","affectsGlobalScope":true},"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","6a386ff939f180ae8ef064699d8b7b6e62bc2731a62d7fbf5e02589383838dea",{"version":"8ca4709dbd22a34bcc1ebf93e1877645bdb02ebd3f3d9a211a299a8db2ee4ba1","affectsGlobalScope":true},"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"a14ed46fa3f5ffc7a8336b497cd07b45c2084213aaca933a22443fcb2eef0d07","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"185282b122cbca820c297a02a57b89cf5967ab43e220e3e174d872d3f9a94d2c","affectsGlobalScope":true},"16d74fe4d8e183344d3beb15d48b123c5980ff32ff0cc8c3b96614ddcdf9b239","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","e8968b394e4365588f8f89cfff86435258cf10062585c1d2224627ab92acda22","285e512c7a0db217a0599e18c462d565fa35be4a5153dd7b80bee88c83e83ddf","b5b719a47968cd61a6f83f437236bb6fe22a39223b6620da81ef89f5d7a78fb7","8806ae97308ef26363bd7ec8071bca4d07fb575f905ee3d8a91aff226df6d618","af5bf1db6f1804fb0069039ae77a05d60133c77a2158d9635ea27b6bb2828a8f","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"7ae9dc7dbb58cd843065639707815df85c044babaa0947116f97bdb824d07204","affectsGlobalScope":true},"7aae1df2053572c2cfc2089a77847aadbb38eedbaa837a846c6a49fb37c6e5bd","313a0b063f5188037db113509de1b934a0e286f14e9479af24fada241435e707","1f758340b027b18ae8773ac3d33a60648a2af49eaae9e4fde18d0a0dd608642c","87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"dea4c00820d4fac5e530d4842aed2fb20d6744d75a674b95502cbd433f88bcb0","affectsGlobalScope":true},"a5fe4cc622c3bf8e09ababde5f4096ceac53163eefcd95e9cd53f062ff9bb67a","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"0d832a0650a74aafc276cb3f7bb26bde2e2270a6f87e6c871a64122e9203079b","affectsGlobalScope":true},{"version":"c6f3869f12bb5c3bb8ecd0b050ea20342b89b944eae18d313cde6b0ccc0925d7","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","d742ed2db6d5425b3b6ac5fb1f2e4b1ed2ae74fbeee8d0030d852121a4b05d2f","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","8221b00f271cf7f535a8eeec03b0f80f0929c7a16116e2d2df089b41066de69b","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","f8c87b19eae111f8720b0345ab301af8d81add39621b63614dfc2d15fd6f140a","831c22d257717bf2cbb03afe9c4bcffc5ccb8a2074344d4238bf16d3a857bb12",{"version":"2225100373ca3d63bcc7f206e1177152d2e2161285a0bd83c8374db1503a0d1f","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","eefcdf86cefff36e5d87de36a3638ab5f7d16c2b68932be4a72c14bb924e43c1","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"4d0405568cf6e0ff36a4861c4a77e641366feaefa751600b0a4d12a5e8f730a8","affectsGlobalScope":true},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true},"e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","4a34b074b11c3597fb2ff890bc8f1484375b3b80793ab01f974534808d5777c7",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447",{"version":"0e4ca50408ca6a9ddb79bce2fa6e931eab379431ea7b2b6e1cce12669ca7c3bf","affectsGlobalScope":true},"282f98006ed7fa9bb2cd9bdbe2524595cfc4bcd58a0bb3232e4519f2138df811","80d02a787d4aa00e2e22dcf3ea9d40390f38dfb0c3497bc6855978974a63e20c","cbe726263ae9a7bf32352380f7e8ab66ee25b3457137e316929269c19e18a2be","8b96046bf5fb0a815cba6b0880d9f97b7f3a93cf187e8dcfe8e2792e97f38f87",{"version":"55bbfa2fcb7692e366773b23a0338463fc9254301414f861a3ae46ff000b5783","affectsGlobalScope":true},"858d0d831826c6eb563df02f7db71c90e26deadd0938652096bea3cc14899700","8885cf05f3e2abf117590bbb951dcf6359e3e5ac462af1c901cfd24c6a6472e2","18c04c22baee54d13b505fa6e8bcd4223f8ba32beee80ec70e6cac972d1cc9a6","5e92a2e8ba5cbcdfd9e51428f94f7bd0ab6e45c9805b1c9552b64abaffad3ce3","44fe135be91bc8edc495350f79cd7a2e5a8b7a7108b10b2599a321b9248657dc","1d51250438f2071d2803053d9aec7973ef22dfffd80685a9ec5fb3fa082f4347","7ec359bbc29b69d4063fe7dad0baaf35f1856f914db16b3f4f6e3e1bca4099fa","b9261ac3e9944d3d72c5ee4cf888ad35d9743a5563405c6963c4e43ee3708ca4","c84fd54e8400def0d1ef1569cafd02e9f39a622df9fa69b57ccc82128856b916","c7a38c1ef8d6ae4bf252be67bd9a8b012b2cdea65bd6225a3d1a726c4f0d52b6","e773630f8772a06e82d97046fc92da59ada8414c61689894fff0155dd08f102c","edf7cf322a3f3e6ebca77217a96ed4480f5a7d8d0084f8b82f1c281c92780f3a","e97321edbef59b6f68839bcdfd5ae1949fe80d554d2546e35484a8d044a04444","96aed8ec4d342ec6ac69f0dcdfb064fd17b10cb13825580451c2cebbd556e965","106e607866d6c3e9a497a696ac949c3e2ec46b6e7dda35aabe76100bf740833b","28ffc4e76ad54f4b34933d78ff3f95b763accf074e8630a6d926f3fd5bbd8908","304af95fcace2300674c969700b39bc0ee05be536880daa844c64dc8f90ef482","3d65182eff7bbb16de1a69e17651c51083f740af11a1a92359be6dab939e8bcf","670ddaf1f1b881abaa1cc28236430d86b691affbeaefd66b3ee1db31fdfb8dba","82e687ebd99518bc63ea04b0c3810fb6e50aa6942decd0ca6f7a56d9b9a212a6","7f698624bbbb060ece7c0e51b7236520ebada74b747d7523c7df376453ed6fea","8f07f2b6514744ac96e51d7cb8518c0f4de319471237ea10cf688b8d0e9d0225","0862ed8f8046558a707fde2b4b687dcbafad0329141d5988daec97c2f4ed07ee",{"version":"dbc2512a3b2562364c9d77dd59321b00fc1a2739d4be842f360a8d79413f84ce","signature":"2fb86a6a4fc2f2b5f2f685ad91821ca3d3829c2bd2f098246562fa06f0fd8a3e"}],"root":[191],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":4,"module":99,"noEmitOnError":true,"noImplicitOverride":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":7,"useDefineForClassFields":true},"fileIdsList":[[75],[111],[112,117,145],[113,124,125,132,142,153],[113,114,124,132],[115,154],[116,117,125,133],[117,142,150],[118,120,124,132],[119],[120,121],[124],[122,124],[111,124],[124,125,126,142,153],[124,125,126,139,142,145],[109,112,158],[120,124,127,132,142,153],[124,125,127,128,132,142,150,153],[127,129,142,150,153],[75,76,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160],[124,130],[131,153,158],[120,124,132,142],[133],[134],[111,135],[136,152,158],[137],[138],[124,139,140],[139,141,154,156],[112,124,142,143,144,145],[112,142,144],[142,143],[145],[146],[111,142],[124,148,149],[148,149],[117,132,142,150],[151],[132,152],[112,127,138,153],[117,154],[142,155],[131,156],[157],[112,117,124,126,135,142,153,156,158],[142,159],[70,71,72],[73],[183],[181,183],[172,180,181,182,184],[170],[173,178,183,186],[169,186],[173,174,177,178,179,186],[173,174,175,177,178,186],[170,171,172,173,174,178,179,180,182,183,184,186],[168,170,171,172,173,174,175,177,178,179,180,181,182,183,184,185],[168,186],[173,175,176,178,179,186],[177,186],[178,179,183,186],[171,181],[168],[86,90,153],[86,142,153],[81],[83,86,150,153],[132,150],[161],[81,161],[83,86,132,153],[78,79,82,85,112,124,142,153],[78,84],[82,86,112,145,153,161],[112,161],[102,112,161],[80,81,161],[86],[80,81,82,83,84,85,86,87,88,90,91,92,93,94,95,96,97,98,99,100,101,103,104,105,106,107,108],[86,93,94],[84,86,94,95],[85],[78,81,86],[86,90,94,95],[90],[84,86,89,153],[78,83,84,86,90,93],[112,142],[81,86,102,112,158,161],[124,125,127,128,129,132,142,150,153,159,161,162,163,164,165,166,167,186,187,188,189],[163,164,165,166],[163,164,165],[163],[164],[162],[74,117,190],[190]],"referencedMap":[[75,1],[76,1],[111,2],[112,3],[113,4],[114,5],[115,6],[116,7],[117,8],[118,9],[119,10],[120,11],[121,11],[123,12],[122,13],[124,14],[125,15],[126,16],[110,17],[127,18],[128,19],[129,20],[161,21],[130,22],[131,23],[132,24],[133,25],[134,26],[135,27],[136,28],[137,29],[138,30],[139,31],[140,31],[141,32],[142,33],[144,34],[143,35],[145,36],[146,37],[147,38],[148,39],[149,40],[150,41],[151,42],[152,43],[153,44],[154,45],[155,46],[156,47],[157,48],[158,49],[159,50],[73,51],[74,52],[184,53],[182,54],[183,55],[171,56],[172,54],[179,57],[170,58],[175,59],[176,60],[181,61],[186,62],[169,63],[177,64],[178,65],[173,66],[180,53],[174,67],[168,68],[93,69],[100,70],[92,69],[107,71],[84,72],[83,73],[106,74],[101,75],[104,76],[86,77],[85,78],[81,79],[80,80],[103,81],[82,82],[87,83],[91,83],[109,84],[108,83],[95,85],[96,86],[98,87],[94,88],[97,89],[102,74],[89,90],[90,91],[99,92],[79,93],[105,94],[190,95],[187,96],[166,97],[164,98],[165,99],[189,100],[191,101]],"exportedModulesMap":[[75,1],[76,1],[111,2],[112,3],[113,4],[114,5],[115,6],[116,7],[117,8],[118,9],[119,10],[120,11],[121,11],[123,12],[122,13],[124,14],[125,15],[126,16],[110,17],[127,18],[128,19],[129,20],[161,21],[130,22],[131,23],[132,24],[133,25],[134,26],[135,27],[136,28],[137,29],[138,30],[139,31],[140,31],[141,32],[142,33],[144,34],[143,35],[145,36],[146,37],[147,38],[148,39],[149,40],[150,41],[151,42],[152,43],[153,44],[154,45],[155,46],[156,47],[157,48],[158,49],[159,50],[73,51],[74,52],[184,53],[182,54],[183,55],[171,56],[172,54],[179,57],[170,58],[175,59],[176,60],[181,61],[186,62],[169,63],[177,64],[178,65],[173,66],[180,53],[174,67],[168,68],[93,69],[100,70],[92,69],[107,71],[84,72],[83,73],[106,74],[101,75],[104,76],[86,77],[85,78],[81,79],[80,80],[103,81],[82,82],[87,83],[91,83],[109,84],[108,83],[95,85],[96,86],[98,87],[94,88],[97,89],[102,74],[89,90],[90,91],[99,92],[79,93],[105,94],[190,95],[187,96],[166,97],[164,98],[165,99],[189,100],[191,102]],"semanticDiagnosticsPerFile":[75,76,111,112,113,114,115,116,117,118,119,120,121,123,122,124,125,126,110,160,127,128,129,161,130,131,132,133,134,135,136,137,138,139,140,141,142,144,143,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,72,70,73,74,77,71,184,182,183,171,172,179,170,175,185,176,181,186,169,177,178,173,180,174,162,168,68,69,12,13,15,14,2,16,17,18,19,20,21,22,23,3,24,4,25,29,26,27,28,30,31,32,5,33,34,35,36,6,40,37,38,39,41,7,42,47,48,43,44,45,46,8,52,49,50,51,53,9,54,55,56,59,57,58,60,61,10,1,62,11,66,64,63,67,65,93,100,92,107,84,83,106,101,104,86,85,81,80,103,82,87,88,91,78,109,108,95,96,98,94,97,102,89,90,99,79,105,190,187,166,167,164,163,165,188,189,191],"latestChangedDtsFile":"./index.d.ts"},"version":"5.4.5"}
|
|
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.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.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.sharedmemory.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.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.string.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.object.d.ts","../../../../node_modules/typescript/lib/lib.esnext.regexp.d.ts","../../../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../node_modules/@types/react/global.d.ts","../../../../node_modules/csstype/index.d.ts","../../../../node_modules/@types/prop-types/index.d.ts","../../../../node_modules/@types/react/index.d.ts","../../../../node_modules/@types/react/jsx-runtime.d.ts","../../../../node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../../../../node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../../../../node_modules/@types/node/assert.d.ts","../../../../node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/buffer/index.d.ts","../../../../node_modules/undici-types/header.d.ts","../../../../node_modules/undici-types/readable.d.ts","../../../../node_modules/undici-types/file.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.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/agent.d.ts","../../../../node_modules/undici-types/mock-interceptor.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/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/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/filereader.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/globals.d.ts","../../../../node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/@types/node/buffer.d.ts","../../../../node_modules/@types/node/child_process.d.ts","../../../../node_modules/@types/node/cluster.d.ts","../../../../node_modules/@types/node/console.d.ts","../../../../node_modules/@types/node/constants.d.ts","../../../../node_modules/@types/node/crypto.d.ts","../../../../node_modules/@types/node/dgram.d.ts","../../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/@types/node/dns.d.ts","../../../../node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/@types/node/domain.d.ts","../../../../node_modules/@types/node/dom-events.d.ts","../../../../node_modules/@types/node/events.d.ts","../../../../node_modules/@types/node/fs.d.ts","../../../../node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/@types/node/http.d.ts","../../../../node_modules/@types/node/http2.d.ts","../../../../node_modules/@types/node/https.d.ts","../../../../node_modules/@types/node/inspector.d.ts","../../../../node_modules/@types/node/module.d.ts","../../../../node_modules/@types/node/net.d.ts","../../../../node_modules/@types/node/os.d.ts","../../../../node_modules/@types/node/path.d.ts","../../../../node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/@types/node/process.d.ts","../../../../node_modules/@types/node/punycode.d.ts","../../../../node_modules/@types/node/querystring.d.ts","../../../../node_modules/@types/node/readline.d.ts","../../../../node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/@types/node/repl.d.ts","../../../../node_modules/@types/node/sea.d.ts","../../../../node_modules/@types/node/stream.d.ts","../../../../node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/@types/node/stream/web.d.ts","../../../../node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/@types/node/test.d.ts","../../../../node_modules/@types/node/timers.d.ts","../../../../node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/@types/node/tls.d.ts","../../../../node_modules/@types/node/trace_events.d.ts","../../../../node_modules/@types/node/tty.d.ts","../../../../node_modules/@types/node/url.d.ts","../../../../node_modules/@types/node/util.d.ts","../../../../node_modules/@types/node/v8.d.ts","../../../../node_modules/@types/node/vm.d.ts","../../../../node_modules/@types/node/wasi.d.ts","../../../../node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/@types/node/zlib.d.ts","../../../../node_modules/@types/node/globals.global.d.ts","../../../../node_modules/@types/node/ts5.6/index.d.ts","../../../../node_modules/@types/estree/index.d.ts","../../../../node_modules/rollup/dist/rollup.d.ts","../../../../node_modules/vite/types/hmrPayload.d.ts","../../../../node_modules/vite/types/customEvent.d.ts","../../../../node_modules/vite/types/hot.d.ts","../../../../node_modules/vite/dist/node/types.d-aGj9QkWt.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/runtime.d.ts","../../../../node_modules/vite/types/importGlob.d.ts","../../../../node_modules/vite/types/metadata.d.ts","../../../../node_modules/vite/dist/node/index.d.ts","../../src/index.ts"],"fileIdsList":[[81,124],[81,82,124],[81,123,124],[81,124,129,158],[81,124,125,130,136,137,144,155,166],[81,124,125,126,136,144],[81,124,127,167],[81,124,128,129,137,145],[81,124,129,155,163],[81,124,130,132,136,144],[81,123,124,131],[81,124,132,133],[81,124,136],[81,124,134,136],[81,123,124,136],[81,124,136,137,138,155,166],[81,124,136,137,138,151,155,158],[81,121,124,171],[81,124,132,136,139,144,155,166],[81,124,136,137,139,140,144,155,163,166],[81,124,139,141,155,163,166],[81,124,136,142],[81,124,143,166,171],[81,124,132,136,144,155],[81,124,145],[81,124,146],[81,123,124,147],[81,82,83,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172],[81,124,149],[81,124,150],[81,124,136,151,152],[81,124,151,153,167,169],[81,124,136,155,156,157,158],[81,124,155,157],[81,124,155,156],[81,124,158],[81,124,159],[81,82,124,155],[81,124,136,161,162],[81,124,161,162],[81,124,129,144,155,163],[81,124,164],[124],[80,81,82,83,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173],[81,124,144,165],[81,124,139,150,166],[81,124,129,167],[81,124,155,168],[81,124,143,169],[81,124,170],[81,124,129,136,138,147,155,166,169,171],[81,124,155,172],[75,76,77,81,124],[78,81,124],[81,124,197],[81,124,195,197],[81,124,186,194,195,196,198],[81,124,184],[81,124,187,192,197,200],[81,124,183,200],[81,124,187,188,191,192,193,200],[81,124,187,188,189,191,192,200],[81,124,184,185,186,187,188,192,193,194,196,197,198,200],[81,124,182,184,185,186,187,188,189,191,192,193,194,195,196,197,198,199],[81,124,182,200],[81,124,187,189,190,192,193,200],[81,124,191,200],[81,124,192,193,197,200],[81,124,185,195],[81,124,175],[81,93,97,124,166],[81,93,124,155,166],[81,88,124],[81,90,93,124,163,166],[81,124,144,163],[81,124,174],[81,88,124,174],[81,90,93,124,144,166],[81,85,86,89,92,124,136,155,166],[81,93,100,124],[81,85,91,124],[81,93,114,115,124],[81,89,93,124,158,166,174],[81,114,124,174],[81,87,88,124,174],[81,93,124],[81,87,88,89,90,91,92,93,94,95,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,115,116,117,118,119,120,124],[81,93,108,124],[81,93,100,101,124],[81,91,93,101,102,124],[81,92,124],[81,85,88,93,124],[81,93,97,101,102,124],[81,97,124],[81,91,93,96,124,166],[81,85,90,93,100,124],[81,124,155],[81,88,93,114,124,171,174],[81,124,136,137,139,140,141,144,155,163,166,172,174,176,177,178,179,180,181,200,201,202,203],[81,124,177,178,179,180],[81,124,177,178,179],[81,124,177],[81,124,178],[81,124,176],[79,81,124,129,204]],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"abee51ebffafd50c07d76be5848a34abfe4d791b5745ef1e5648718722fab924","impliedFormat":1},{"version":"9e8ca8ed051c2697578c023d9c29d6df689a083561feba5c14aedee895853999","affectsGlobalScope":true,"impliedFormat":1},{"version":"69e65d976bf166ce4a9e6f6c18f94d2424bf116e90837ace179610dbccad9b42","affectsGlobalScope":true,"impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"45d8ccb3dfd57355eb29749919142d4321a0aa4df6acdfc54e30433d7176600a","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":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","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":"1a94697425a99354df73d9c8291e2ecd4dddd370aed4023c2d6dee6cccb32666","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3f9fc0ec0b96a9e642f11eda09c0be83a61c7b336977f8b9fdb1e9788e925fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true,"impliedFormat":1},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true,"impliedFormat":1},{"version":"15c1c3d7b2e46e0025417ed6d5f03f419e57e6751f87925ca19dc88297053fe6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d540251809289a05349b70ab5f4b7b99f922af66ab3c39ba56a475dcf95d5ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"0b11f3ca66aa33124202c80b70cd203219c3d4460cfc165e0707aa9ec710fc53","affectsGlobalScope":true,"impliedFormat":1},{"version":"6a3f5a0129cc80cf439ab71164334d649b47059a4f5afca90282362407d0c87f","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"61d6a2092f48af66dbfb220e31eea8b10bc02b6932d6e529005fd2d7b3281290","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"36a2e4c9a67439aca5f91bb304611d5ae6e20d420503e96c230cf8fcdc948d94","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"247a952efd811d780e5630f8cfd76f495196f5fa74f6f0fee39ac8ba4a3c9800","impliedFormat":1},{"version":"df1e7a3a604dfc0f434c4583e8103c171cd5c7684f8e841a0a2ac15fabb3bc24","affectsGlobalScope":true,"impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","impliedFormat":1},{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true,"impliedFormat":1},{"version":"2d1319e6b5d0efd8c5eae07eb864a00102151e8b9afddd2d45db52e9aae002c4","affectsGlobalScope":true,"impliedFormat":1},{"version":"2db0dd3aaa2ed285950273ce96ae8a450b45423aa9da2d10e194570f1233fa6b","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"4d2b0eb911816f66abe4970898f97a2cfc902bcd743cbfa5017fad79f7ef90d8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","impliedFormat":1},{"version":"24b8685c62562f5d98615c5a0c1d05f297cf5065f15246edfe99e81ec4c0e011","impliedFormat":1},{"version":"93507c745e8f29090efb99399c3f77bec07db17acd75634249dc92f961573387","impliedFormat":1},{"version":"339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"4eedea23b8a843ec0fd51a384fb6b9fe1bc89198f713d0465c2c8392a9d51271","affectsGlobalScope":true,"impliedFormat":1},{"version":"3d77c73be94570813f8cadd1f05ebc3dc5e2e4fdefe4d340ca20cd018724ee36","impliedFormat":1},{"version":"d674383111e06b6741c4ad2db962131b5b0fa4d0294b998566c635e86195a453","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3e58c4c18a031cbb17abec7a4ad0bd5ae9fc70c1f4ba1e7fb921ad87c504aca","impliedFormat":1},{"version":"a3e8bafb2af8e850c644f4be7f5156cf7d23b7bfdc3b786bd4d10ed40329649c","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"c521f961c1606c94dc831992e659f426b6def6e2e6e327ee25d3c642eb393f95","affectsGlobalScope":true,"impliedFormat":1},{"version":"b0c0d1d13be149f790a75b381b413490f98558649428bb916fd2d71a3f47a134","impliedFormat":1},{"version":"3c884d9d9ec454bdf0d5a0b8465bf8297d2caa4d853851d92cc417ac6f30b969","impliedFormat":1},{"version":"5a369483ac4cfbdf0331c248deeb36140e6907db5e1daed241546b4a2055f82c","impliedFormat":1},{"version":"e8f5b5cc36615c17d330eaf8eebbc0d6bdd942c25991f96ef122f246f4ff722f","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"f0de0233242682db9ac13efa0ddbb456a41abe6f291211b40ba3aa766b03e9b3","affectsGlobalScope":true,"impliedFormat":1},{"version":"596572d40c1f13d8b57920d6d1a77c5ec6fe4952dc157f416f04a801cd3e2678","impliedFormat":1},{"version":"ad23fd126ff06e72728dd7bfc84326a8ca8cec2b9d2dac0193d42a777df0e7d8","impliedFormat":1},{"version":"a55fd4d49da86d2cc19de575beb1515184e55f5f3165e1482ff02fd99f900b5c","impliedFormat":1},{"version":"93bd413918fa921c8729cef45302b24d8b6c7855d72d5bf82d3972595ae8dcbf","impliedFormat":1},{"version":"4ff41188773cbf465807dd2f7059c7494cbee5115608efc297383832a1150c43","impliedFormat":1},{"version":"dccdf1677e531e33f8ac961a68bc537418c9a414797c1ea7e91307501cdc3f5e","impliedFormat":1},{"version":"7edec695cdb707c7146ac34c44ca364469c7ea504344b3206c686e79f61b61a2","affectsGlobalScope":true,"impliedFormat":1},{"version":"d206b4baf4ddcc15d9d69a9a2f4999a72a2c6adeaa8af20fa7a9960816287555","impliedFormat":1},{"version":"93f437e1398a4f06a984f441f7fa7a9f0535c04399619b5c22e0b87bdee182cb","impliedFormat":1},{"version":"d1b1295af3667779be43eb6d4fbaa342e656aa2c4b77a4ad3cf42ec55baeea00","impliedFormat":1},{"version":"70731d10d5311bd4cf710ef7f6539b62660f4b0bfdbb3f9fbe1d25fe6366a7fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"a20f1e119615bf7632729fd89b6c0b5ffdc2df3b512d6304146294528e3ebe19","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"137c2894e8f3e9672d401cc0a305dc7b1db7c69511cf6d3970fb53302f9eae09","impliedFormat":1},{"version":"dd9492e12a57068f08d70cb5eb5ceb39fa5bcf23be01af574270aeee95b982af","impliedFormat":1},{"version":"e432b0e3761ca9ba734bdd41e19a75fec1454ca8e9769bfdf8b31011854cf06a","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"78955c9259da94920609be3e589fc9253268b3fffa822e1e31d28ee2ce0b8a74","impliedFormat":1},{"version":"269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","impliedFormat":1},{"version":"93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","impliedFormat":1},{"version":"73aa178e8fb1449ef3666093d8dca25f96302a80ee45f8ff027df8e4792bf9fd","affectsGlobalScope":true,"impliedFormat":1},{"version":"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb","impliedFormat":1},{"version":"fdedf82878e4c744bc2a1c1e802ae407d63474da51f14a54babe039018e53d8f","affectsGlobalScope":true,"impliedFormat":1},{"version":"08353b04a3501d84fc8d7b49de99f6c1cc26026e6d9d697a18315f3bfe92ed03","affectsGlobalScope":true,"impliedFormat":1},{"version":"578d8bb6dcb2a1c03c4c3f8eb71abc9677e1a5c788b7f24848e3138ce17f3400","impliedFormat":1},{"version":"4f029899f9bae07e225c43aef893590541b2b43267383bf5e32e3a884d219ed5","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"710ad93f8de29dc15e5892aa735e72348b62f40a6d1220f2849837d332f92885","affectsGlobalScope":true,"impliedFormat":1},{"version":"1f1da5d682cdb628890e4a8578fb9e8ab332e6a1a4b3a13fce08b7b4d45d192a","affectsGlobalScope":true,"impliedFormat":1},{"version":"efeedd8bbc5c0d53e760d8b120a010470722982e6ae14de8d1bcff66ebc2ae71","impliedFormat":1},{"version":"b718a94332858862943630649a310d6f8e9a09f86ae7215d8554e75bbbfd7817","impliedFormat":1},{"version":"d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c","impliedFormat":1},{"version":"616075a6ac578cf5a013ee12964188b4412823796ce0b202c6f1d2e4ca8480d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","impliedFormat":1},{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true,"impliedFormat":1},{"version":"483bb10b755f3572526fd76d9481221e8dc30568edcc1a9cc73479d8874bd16d","impliedFormat":1},{"version":"ee7d8894904b465b072be0d2e4b45cf6b887cdba16a467645c4e200982ece7ea","impliedFormat":1},{"version":"574de9322239fc2f136769dd4726fdeea6f379a44691759ffe3a941f9022e5b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"282f98006ed7fa9bb2cd9bdbe2524595cfc4bcd58a0bb3232e4519f2138df811","impliedFormat":1},{"version":"6222e987b58abfe92597e1273ad7233626285bc2d78409d4a7b113d81a83496b","impliedFormat":1},{"version":"cbe726263ae9a7bf32352380f7e8ab66ee25b3457137e316929269c19e18a2be","impliedFormat":1},{"version":"8b96046bf5fb0a815cba6b0880d9f97b7f3a93cf187e8dcfe8e2792e97f38f87","impliedFormat":99},{"version":"bacf2c84cf448b2cd02c717ad46c3d7fd530e0c91282888c923ad64810a4d511","affectsGlobalScope":true,"impliedFormat":1},{"version":"402e5c534fb2b85fa771170595db3ac0dd532112c8fa44fc23f233bc6967488b","impliedFormat":1},{"version":"8885cf05f3e2abf117590bbb951dcf6359e3e5ac462af1c901cfd24c6a6472e2","impliedFormat":1},{"version":"4d979e3c12ffb6497d2b1dc5613130196d986fff764c4526360c0716a162e7e7","impliedFormat":1},{"version":"e61df3640a38d535fd4bc9f4a53aef17c296b58dc4b6394fd576b808dd2fe5e6","impliedFormat":1},{"version":"80781460eca408fe8d2937d9fdbbb780d6aac35f549621e6200c9bee1da5b8fe","impliedFormat":1},{"version":"4719c209b9c00b579553859407a7e5dcfaa1c472994bd62aa5dd3cc0757eb077","impliedFormat":1},{"version":"7ec359bbc29b69d4063fe7dad0baaf35f1856f914db16b3f4f6e3e1bca4099fa","impliedFormat":1},{"version":"b9261ac3e9944d3d72c5ee4cf888ad35d9743a5563405c6963c4e43ee3708ca4","impliedFormat":1},{"version":"c84fd54e8400def0d1ef1569cafd02e9f39a622df9fa69b57ccc82128856b916","impliedFormat":1},{"version":"a022503e75d6953d0e82c2c564508a5c7f8556fad5d7f971372d2d40479e4034","impliedFormat":1},{"version":"2ed6489ef46eb61442d067c08e87e3db501c0bfb2837eee4041a27bf3e792bb0","impliedFormat":1},{"version":"644491cde678bd462bb922c1d0cfab8f17d626b195ccb7f008612dc31f445d2d","impliedFormat":1},{"version":"d60fe6d59d4e19ecc65359490b8535e359ca4b760d2cdb56897ca75d09d41ba3","impliedFormat":1},{"version":"f45a2a8b1777ecb50ed65e1a04bb899d4b676529b7921bd5d69b08573a00c832","impliedFormat":1},{"version":"774b783046ba3d473948132d28a69f52a295b2f378f2939304118ba571b1355e","impliedFormat":1},{"version":"b5734e05c787a40e4f9efe71f16683c5f7dc3bdb0de7c04440c855bd000f8fa7","impliedFormat":1},{"version":"14ba97f0907144771331e1349fdccb5a13526eba0647e6b447e572376d811b6f","impliedFormat":1},{"version":"2a771d907aebf9391ac1f50e4ad37952943515eeea0dcc7e78aa08f508294668","impliedFormat":1},{"version":"7165050eddaed878c2d2cd3cafcaf171072ac39e586a048c0603712b5555f536","impliedFormat":1},{"version":"82e687ebd99518bc63ea04b0c3810fb6e50aa6942decd0ca6f7a56d9b9a212a6","impliedFormat":99},{"version":"7f698624bbbb060ece7c0e51b7236520ebada74b747d7523c7df376453ed6fea","impliedFormat":1},{"version":"8f07f2b6514744ac96e51d7cb8518c0f4de319471237ea10cf688b8d0e9d0225","impliedFormat":1},{"version":"9ae0ca65717af0d3b554a26fd333ad9c78ad3910ad4b22140ff02acb63076927","impliedFormat":99},{"version":"25fa5127591b8873dd2b8d71c09ee44674ccfbfe1bc7be5038c2012611f916e0","signature":"1645e6477998c407a069297155751aa19a64aa0cec225db5b7f2ebcb5bd1dcf9"}],"root":[205],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":4,"module":99,"noEmitOnError":true,"noImplicitOverride":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":7,"useDefineForClassFields":true},"referencedMap":[[175,1],[82,2],[83,2],[123,3],[124,4],[125,5],[126,6],[127,7],[128,8],[129,9],[130,10],[131,11],[132,12],[133,12],[135,13],[134,14],[136,15],[137,16],[138,17],[122,18],[173,1],[139,19],[140,20],[141,21],[142,22],[143,23],[144,24],[145,25],[146,26],[147,27],[148,28],[149,29],[150,30],[151,31],[152,31],[153,32],[154,1],[155,33],[157,34],[156,35],[158,36],[159,37],[160,38],[161,39],[162,40],[163,41],[164,42],[81,43],[80,1],[174,44],[165,45],[166,46],[167,47],[168,48],[169,49],[170,50],[171,51],[172,52],[77,1],[75,1],[78,53],[79,54],[84,1],[76,1],[181,1],[198,55],[196,56],[197,57],[185,58],[186,56],[193,59],[184,60],[189,61],[199,1],[190,62],[195,63],[200,64],[183,65],[191,66],[192,67],[187,68],[194,55],[188,69],[176,70],[182,1],[73,1],[74,1],[12,1],[13,1],[15,1],[14,1],[2,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[22,1],[23,1],[3,1],[24,1],[4,1],[25,1],[29,1],[26,1],[27,1],[28,1],[30,1],[31,1],[32,1],[5,1],[33,1],[34,1],[35,1],[36,1],[6,1],[40,1],[37,1],[38,1],[39,1],[41,1],[7,1],[42,1],[47,1],[48,1],[43,1],[44,1],[45,1],[46,1],[8,1],[52,1],[49,1],[50,1],[51,1],[53,1],[9,1],[54,1],[55,1],[56,1],[59,1],[57,1],[58,1],[60,1],[61,1],[10,1],[62,1],[1,1],[63,1],[64,1],[11,1],[69,1],[66,1],[65,1],[72,1],[70,1],[68,1],[71,1],[67,1],[100,71],[110,72],[99,71],[120,73],[91,74],[90,75],[119,76],[113,77],[118,78],[93,79],[107,80],[92,81],[116,82],[88,83],[87,76],[117,84],[89,85],[94,86],[95,1],[98,86],[85,1],[121,87],[111,88],[102,89],[103,90],[105,91],[101,92],[104,93],[114,76],[96,94],[97,95],[106,96],[86,97],[109,88],[108,86],[112,1],[115,98],[204,99],[201,100],[180,101],[178,102],[177,1],[179,103],[202,1],[203,104],[205,105]],"latestChangedDtsFile":"./index.d.ts","version":"5.6.3"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contember/vite-plugin",
|
|
3
3
|
"license": "Apache-2.0",
|
|
4
|
-
"version": "2.0.0-alpha.
|
|
4
|
+
"version": "2.0.0-alpha.31",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"sideEffects": false,
|
|
7
7
|
"main": "./dist/production/index.js",
|
|
@@ -17,22 +17,13 @@
|
|
|
17
17
|
"types": "./dist/types/index.d.ts",
|
|
18
18
|
"development": "./dist/development/index.cjs",
|
|
19
19
|
"production": "./dist/production/index.cjs",
|
|
20
|
+
"typescript": "./src/index.ts",
|
|
20
21
|
"default": "./dist/production/index.cjs"
|
|
21
22
|
}
|
|
22
23
|
}
|
|
23
24
|
},
|
|
24
25
|
"typings": "./dist/types/index.d.ts",
|
|
25
|
-
"files": [
|
|
26
|
-
"dist/",
|
|
27
|
-
"src/"
|
|
28
|
-
],
|
|
29
|
-
"scripts": {
|
|
30
|
-
"build": "yarn build:js:dev & yarn build:js:prod",
|
|
31
|
-
"build:js:dev": "NODE_ENV=development vite build --mode development",
|
|
32
|
-
"build:js:prod": "vite build --mode production"
|
|
33
|
-
},
|
|
34
26
|
"peerDependencies": {
|
|
35
27
|
"vite": "^4 || ^5"
|
|
36
|
-
}
|
|
37
|
-
"stableVersion": "0.0.0"
|
|
28
|
+
}
|
|
38
29
|
}
|
package/src/index.ts
CHANGED
|
@@ -3,11 +3,49 @@ import { Plugin } from 'vite'
|
|
|
3
3
|
|
|
4
4
|
type ContemberOptions = {
|
|
5
5
|
buildVersion?: boolean
|
|
6
|
+
disableMiddleware?: boolean
|
|
7
|
+
appPath?: string
|
|
6
8
|
}
|
|
7
9
|
|
|
8
10
|
export function contember(options?: ContemberOptions): Plugin {
|
|
11
|
+
const appPath = options?.appPath ?? '/app'
|
|
12
|
+
const contemberDsn = process.argv.find(it => it.includes('contember://'))
|
|
13
|
+
const projectName = contemberDsn ? new URL(contemberDsn).username : null
|
|
14
|
+
|
|
15
|
+
const defineConfig = projectName ? {
|
|
16
|
+
'import.meta.env.VITE_CONTEMBER_ADMIN_PROJECT_NAME': JSON.stringify(projectName),
|
|
17
|
+
} : {}
|
|
18
|
+
|
|
9
19
|
return ({
|
|
10
20
|
name: 'contember',
|
|
21
|
+
config(config) {
|
|
22
|
+
return {
|
|
23
|
+
define: defineConfig,
|
|
24
|
+
base: '/',
|
|
25
|
+
...config,
|
|
26
|
+
build: {
|
|
27
|
+
sourcemap: true,
|
|
28
|
+
...config.build,
|
|
29
|
+
rollupOptions: {
|
|
30
|
+
...config.build?.rollupOptions,
|
|
31
|
+
input: config.build?.rollupOptions?.input ?? {
|
|
32
|
+
root: './index.html',
|
|
33
|
+
app: `.${appPath}/index.html`,
|
|
34
|
+
},
|
|
35
|
+
},
|
|
36
|
+
},
|
|
37
|
+
}
|
|
38
|
+
},
|
|
39
|
+
configureServer(serve) {
|
|
40
|
+
if (!options?.disableMiddleware) {
|
|
41
|
+
serve.middlewares.use((req, res, next) => {
|
|
42
|
+
if (req.url === appPath || req.url?.startsWith(`${appPath}/`) && !req.url?.match(/\.\w+($|\?)/)) {
|
|
43
|
+
req.url = `${appPath}/`
|
|
44
|
+
}
|
|
45
|
+
next()
|
|
46
|
+
})
|
|
47
|
+
}
|
|
48
|
+
},
|
|
11
49
|
transformIndexHtml: options?.buildVersion === false
|
|
12
50
|
? undefined
|
|
13
51
|
: {
|
package/tsconfig.json
ADDED