@tamagui/vite-plugin 1.0.1-beta.153 → 1.0.1-beta.154

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tamagui/vite-plugin",
3
- "version": "1.0.1-beta.153",
3
+ "version": "1.0.1-beta.154",
4
4
  "types": "./types/index.d.ts",
5
5
  "main": "dist/cjs",
6
6
  "module": "dist/esm",
@@ -19,16 +19,16 @@
19
19
  },
20
20
  "dependencies": {
21
21
  "@originjs/vite-plugin-commonjs": "^1.0.3",
22
- "@tamagui/fake-react-native": "^1.0.1-beta.153",
23
- "@tamagui/proxy-worm": "^1.0.1-beta.153",
24
- "@tamagui/react-native-svg": "^1.0.1-beta.153",
25
- "@tamagui/static": "^1.0.1-beta.153",
22
+ "@tamagui/fake-react-native": "^1.0.1-beta.154",
23
+ "@tamagui/proxy-worm": "^1.0.1-beta.154",
24
+ "@tamagui/react-native-svg": "^1.0.1-beta.154",
25
+ "@tamagui/static": "^1.0.1-beta.154",
26
26
  "fs-extra": "^10.1.0",
27
27
  "lodash": "^4.17.21",
28
28
  "outdent": "^0.8.0"
29
29
  },
30
30
  "devDependencies": {
31
- "@tamagui/build": "^1.0.1-beta.153",
31
+ "@tamagui/build": "^1.0.1-beta.154",
32
32
  "vite-plugin-environment": "^1.1.2"
33
33
  },
34
34
  "publishConfig": {
@@ -1,59 +0,0 @@
1
- "use strict";
2
- var __create = Object.create;
3
- var __defProp = Object.defineProperty;
4
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
- var __getOwnPropNames = Object.getOwnPropertyNames;
6
- var __getProtoOf = Object.getPrototypeOf;
7
- var __hasOwnProp = Object.prototype.hasOwnProperty;
8
- var __export = (target, all) => {
9
- for (var name in all)
10
- __defProp(target, name, { get: all[name], enumerable: true });
11
- };
12
- var __copyProps = (to, from, except, desc) => {
13
- if (from && typeof from === "object" || typeof from === "function") {
14
- for (let key of __getOwnPropNames(from))
15
- if (!__hasOwnProp.call(to, key) && key !== except)
16
- __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
17
- }
18
- return to;
19
- };
20
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target, mod));
21
- var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
22
- var extractPlugin_exports = {};
23
- __export(extractPlugin_exports, {
24
- tamaguiExtractPlugin: () => tamaguiExtractPlugin
25
- });
26
- module.exports = __toCommonJS(extractPlugin_exports);
27
- var import_path = __toESM(require("path"));
28
- var import_vite = require("vite");
29
- const styleUpdateEvent = (fileId) => `tamagui-style-update:${fileId}`;
30
- function tamaguiExtractPlugin(options) {
31
- let config;
32
- let server;
33
- const cssMap = /* @__PURE__ */ new Map();
34
- let virtualExt;
35
- let packageName;
36
- const getAbsoluteVirtualFileId = (source) => (0, import_vite.normalizePath)(import_path.default.join(config.root, source));
37
- return {
38
- name: "tamagui-extract",
39
- enforce: "pre",
40
- configureServer(_server) {
41
- server = _server;
42
- },
43
- config(_userConfig, env) {
44
- },
45
- async configResolved(resolvedConfig) {
46
- },
47
- resolveId(source) {
48
- },
49
- load(id) {
50
- },
51
- async transform(code, id, ssrParam) {
52
- }
53
- };
54
- }
55
- // Annotate the CommonJS export names for ESM import in node:
56
- 0 && (module.exports = {
57
- tamaguiExtractPlugin
58
- });
59
- //# sourceMappingURL=extractPlugin.js.map
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../src/extractPlugin.ts"],
4
- "sourcesContent": ["// fork from https://github.com/seek-oss/vanilla-extract/blob/master/packages/vite-plugin/src/index.ts\n\nimport path from 'path'\n\nimport type { TamaguiOptions } from '@tamagui/static'\nimport outdent from 'outdent'\nimport type { Plugin, ResolvedConfig, ViteDevServer } from 'vite'\nimport { normalizePath } from 'vite'\n\nconst styleUpdateEvent = (fileId: string) => `tamagui-style-update:${fileId}`\n\nexport function tamaguiExtractPlugin(options: TamaguiOptions): Plugin {\n let config: ResolvedConfig\n let server: ViteDevServer\n const cssMap = new Map<string, string>()\n let virtualExt: string\n let packageName: string\n\n const getAbsoluteVirtualFileId = (source: string) => normalizePath(path.join(config.root, source))\n\n return {\n name: 'tamagui-extract',\n enforce: 'pre',\n\n configureServer(_server) {\n server = _server\n },\n\n config(_userConfig, env) {\n // const include = env.command === 'serve' ? ['@tamagui/css/injectStyles'] : []\n // return {\n // optimizeDeps: { include },\n // ssr: {\n // external: ['@tamagui/css', '@tamagui/css/fileScope', '@tamagui/css/adapter'],\n // },\n // }\n },\n\n async configResolved(resolvedConfig) {\n // config = resolvedConfig\n // packageName = getPackageInfo(config.root).name\n // if (config.command === 'serve') {\n // postCssConfig = await resolvePostcssConfig(config)\n // }\n // virtualExt = `.vanilla.${config.command === 'serve' ? 'js' : 'css'}`\n },\n\n resolveId(source) {\n // if (!source.endsWith(virtualExt)) {\n // return\n // }\n // // Absolute paths seem to occur often in monorepos, where files are\n // // imported from outside the config root.\n // const absoluteId = source.startsWith(config.root) ? source : getAbsoluteVirtualFileId(source)\n // // There should always be an entry in the `cssMap` here.\n // // The only valid scenario for a missing one is if someone had written\n // // a file in their app using the .vanilla.js/.vanilla.css extension\n // if (cssMap.has(absoluteId)) {\n // return absoluteId\n // }\n },\n\n load(id) {\n // if (!cssMap.has(id)) {\n // return\n // }\n // const css = cssMap.get(id)\n // if (typeof css !== 'string') {\n // return\n // }\n // if (!server || server.config.isProduction) {\n // return css\n // }\n // return outdent`\n // import { injectStyles } from '@tamagui/css/injectStyles';\n // const inject = (css) => injectStyles({\n // fileScope: ${JSON.stringify({ filePath: id })},\n // css\n // });\n // inject(${JSON.stringify(css)});\n // import.meta.hot.on('${styleUpdateEvent(id)}', (css) => {\n // inject(css);\n // });\n // `\n },\n\n async transform(code, id, ssrParam) {\n // if (!cssFileFilter.test(id)) {\n // return null\n // }\n // let ssr: boolean | undefined\n // if (typeof ssrParam === 'boolean') {\n // ssr = ssrParam\n // } else {\n // ssr = ssrParam?.ssr\n // }\n // const index = id.indexOf('?')\n // const validId = index === -1 ? id : id.substring(0, index)\n // if (ssr) {\n // return addFileScope({\n // source: code,\n // filePath: normalizePath(validId),\n // rootPath: config.root,\n // packageName,\n // })\n // }\n // const { source, watchFiles } = await compile({\n // filePath: validId,\n // cwd: config.root,\n // esbuildOptions,\n // })\n // for (const file of watchFiles) {\n // // In start mode, we need to prevent the file from rewatching itself.\n // // If it's a `build --watch`, it needs to watch everything.\n // if (config.command === 'build' || file !== id) {\n // this.addWatchFile(file)\n // }\n // }\n // const output = await processVanillaFile({\n // source,\n // filePath: validId,\n // identOption: identifiers ?? (config.mode === 'production' ? 'short' : 'debug'),\n // serializeVirtualCssPath: async ({ fileScope, source }) => {\n // const rootRelativeId = `${fileScope.filePath}${virtualExt}`\n // const absoluteId = getAbsoluteVirtualFileId(rootRelativeId)\n // let cssSource = source\n // if (postCssConfig) {\n // const postCssResult = await (await import('postcss'))\n // .default(postCssConfig.plugins)\n // .process(source, {\n // ...postCssConfig.options,\n // from: undefined,\n // map: false,\n // })\n // cssSource = postCssResult.css\n // }\n // if (server && cssMap.has(absoluteId) && cssMap.get(absoluteId) !== source) {\n // const { moduleGraph } = server\n // const module = moduleGraph.getModuleById(absoluteId)\n // if (module) {\n // moduleGraph.invalidateModule(module)\n // }\n // server.ws.send({\n // type: 'custom',\n // event: styleUpdateEvent(absoluteId),\n // data: cssSource,\n // })\n // }\n // cssMap.set(absoluteId, cssSource)\n // // We use the root relative id here to ensure file contents (content-hashes)\n // // are consistent across build machines\n // return `import \"${rootRelativeId}\";`\n // },\n // })\n // return {\n // code: output,\n // map: { mappings: '' },\n // }\n },\n }\n}\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAEA,kBAAiB;AAKjB,kBAA8B;AAE9B,MAAM,mBAAmB,CAAC,WAAmB,wBAAwB;AAE9D,8BAA8B,SAAiC;AACpE,MAAI;AACJ,MAAI;AACJ,QAAM,SAAS,oBAAI,IAAoB;AACvC,MAAI;AACJ,MAAI;AAEJ,QAAM,2BAA2B,CAAC,WAAmB,+BAAc,oBAAK,KAAK,OAAO,MAAM,MAAM,CAAC;AAEjG,SAAO;AAAA,IACL,MAAM;AAAA,IACN,SAAS;AAAA,IAET,gBAAgB,SAAS;AACvB,eAAS;AAAA,IACX;AAAA,IAEA,OAAO,aAAa,KAAK;AAAA,IAQzB;AAAA,IAEA,MAAM,eAAe,gBAAgB;AAAA,IAOrC;AAAA,IAEA,UAAU,QAAQ;AAAA,IAalB;AAAA,IAEA,KAAK,IAAI;AAAA,IAsBT;AAAA,IAEA,MAAM,UAAU,MAAM,IAAI,UAAU;AAAA,IAwEpC;AAAA,EACF;AACF;",
6
- "names": []
7
- }
@@ -1,32 +0,0 @@
1
- import path from "path";
2
- import { normalizePath } from "vite";
3
- const styleUpdateEvent = (fileId) => `tamagui-style-update:${fileId}`;
4
- function tamaguiExtractPlugin(options) {
5
- let config;
6
- let server;
7
- const cssMap = /* @__PURE__ */ new Map();
8
- let virtualExt;
9
- let packageName;
10
- const getAbsoluteVirtualFileId = (source) => normalizePath(path.join(config.root, source));
11
- return {
12
- name: "tamagui-extract",
13
- enforce: "pre",
14
- configureServer(_server) {
15
- server = _server;
16
- },
17
- config(_userConfig, env) {
18
- },
19
- async configResolved(resolvedConfig) {
20
- },
21
- resolveId(source) {
22
- },
23
- load(id) {
24
- },
25
- async transform(code, id, ssrParam) {
26
- }
27
- };
28
- }
29
- export {
30
- tamaguiExtractPlugin
31
- };
32
- //# sourceMappingURL=extractPlugin.js.map
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../src/extractPlugin.ts"],
4
- "sourcesContent": ["// fork from https://github.com/seek-oss/vanilla-extract/blob/master/packages/vite-plugin/src/index.ts\n\nimport path from 'path'\n\nimport type { TamaguiOptions } from '@tamagui/static'\nimport outdent from 'outdent'\nimport type { Plugin, ResolvedConfig, ViteDevServer } from 'vite'\nimport { normalizePath } from 'vite'\n\nconst styleUpdateEvent = (fileId: string) => `tamagui-style-update:${fileId}`\n\nexport function tamaguiExtractPlugin(options: TamaguiOptions): Plugin {\n let config: ResolvedConfig\n let server: ViteDevServer\n const cssMap = new Map<string, string>()\n let virtualExt: string\n let packageName: string\n\n const getAbsoluteVirtualFileId = (source: string) => normalizePath(path.join(config.root, source))\n\n return {\n name: 'tamagui-extract',\n enforce: 'pre',\n\n configureServer(_server) {\n server = _server\n },\n\n config(_userConfig, env) {\n // const include = env.command === 'serve' ? ['@tamagui/css/injectStyles'] : []\n // return {\n // optimizeDeps: { include },\n // ssr: {\n // external: ['@tamagui/css', '@tamagui/css/fileScope', '@tamagui/css/adapter'],\n // },\n // }\n },\n\n async configResolved(resolvedConfig) {\n // config = resolvedConfig\n // packageName = getPackageInfo(config.root).name\n // if (config.command === 'serve') {\n // postCssConfig = await resolvePostcssConfig(config)\n // }\n // virtualExt = `.vanilla.${config.command === 'serve' ? 'js' : 'css'}`\n },\n\n resolveId(source) {\n // if (!source.endsWith(virtualExt)) {\n // return\n // }\n // // Absolute paths seem to occur often in monorepos, where files are\n // // imported from outside the config root.\n // const absoluteId = source.startsWith(config.root) ? source : getAbsoluteVirtualFileId(source)\n // // There should always be an entry in the `cssMap` here.\n // // The only valid scenario for a missing one is if someone had written\n // // a file in their app using the .vanilla.js/.vanilla.css extension\n // if (cssMap.has(absoluteId)) {\n // return absoluteId\n // }\n },\n\n load(id) {\n // if (!cssMap.has(id)) {\n // return\n // }\n // const css = cssMap.get(id)\n // if (typeof css !== 'string') {\n // return\n // }\n // if (!server || server.config.isProduction) {\n // return css\n // }\n // return outdent`\n // import { injectStyles } from '@tamagui/css/injectStyles';\n // const inject = (css) => injectStyles({\n // fileScope: ${JSON.stringify({ filePath: id })},\n // css\n // });\n // inject(${JSON.stringify(css)});\n // import.meta.hot.on('${styleUpdateEvent(id)}', (css) => {\n // inject(css);\n // });\n // `\n },\n\n async transform(code, id, ssrParam) {\n // if (!cssFileFilter.test(id)) {\n // return null\n // }\n // let ssr: boolean | undefined\n // if (typeof ssrParam === 'boolean') {\n // ssr = ssrParam\n // } else {\n // ssr = ssrParam?.ssr\n // }\n // const index = id.indexOf('?')\n // const validId = index === -1 ? id : id.substring(0, index)\n // if (ssr) {\n // return addFileScope({\n // source: code,\n // filePath: normalizePath(validId),\n // rootPath: config.root,\n // packageName,\n // })\n // }\n // const { source, watchFiles } = await compile({\n // filePath: validId,\n // cwd: config.root,\n // esbuildOptions,\n // })\n // for (const file of watchFiles) {\n // // In start mode, we need to prevent the file from rewatching itself.\n // // If it's a `build --watch`, it needs to watch everything.\n // if (config.command === 'build' || file !== id) {\n // this.addWatchFile(file)\n // }\n // }\n // const output = await processVanillaFile({\n // source,\n // filePath: validId,\n // identOption: identifiers ?? (config.mode === 'production' ? 'short' : 'debug'),\n // serializeVirtualCssPath: async ({ fileScope, source }) => {\n // const rootRelativeId = `${fileScope.filePath}${virtualExt}`\n // const absoluteId = getAbsoluteVirtualFileId(rootRelativeId)\n // let cssSource = source\n // if (postCssConfig) {\n // const postCssResult = await (await import('postcss'))\n // .default(postCssConfig.plugins)\n // .process(source, {\n // ...postCssConfig.options,\n // from: undefined,\n // map: false,\n // })\n // cssSource = postCssResult.css\n // }\n // if (server && cssMap.has(absoluteId) && cssMap.get(absoluteId) !== source) {\n // const { moduleGraph } = server\n // const module = moduleGraph.getModuleById(absoluteId)\n // if (module) {\n // moduleGraph.invalidateModule(module)\n // }\n // server.ws.send({\n // type: 'custom',\n // event: styleUpdateEvent(absoluteId),\n // data: cssSource,\n // })\n // }\n // cssMap.set(absoluteId, cssSource)\n // // We use the root relative id here to ensure file contents (content-hashes)\n // // are consistent across build machines\n // return `import \"${rootRelativeId}\";`\n // },\n // })\n // return {\n // code: output,\n // map: { mappings: '' },\n // }\n },\n }\n}\n"],
5
- "mappings": "AAEA;AAKA;AAEA,MAAM,mBAAmB,CAAC,WAAmB,wBAAwB;AAE9D,8BAA8B,SAAiC;AACpE,MAAI;AACJ,MAAI;AACJ,QAAM,SAAS,oBAAI,IAAoB;AACvC,MAAI;AACJ,MAAI;AAEJ,QAAM,2BAA2B,CAAC,WAAmB,cAAc,KAAK,KAAK,OAAO,MAAM,MAAM,CAAC;AAEjG,SAAO;AAAA,IACL,MAAM;AAAA,IACN,SAAS;AAAA,IAET,gBAAgB,SAAS;AACvB,eAAS;AAAA,IACX;AAAA,IAEA,OAAO,aAAa,KAAK;AAAA,IAQzB;AAAA,IAEA,MAAM,eAAe,gBAAgB;AAAA,IAOrC;AAAA,IAEA,UAAU,QAAQ;AAAA,IAalB;AAAA,IAEA,KAAK,IAAI;AAAA,IAsBT;AAAA,IAEA,MAAM,UAAU,MAAM,IAAI,UAAU;AAAA,IAwEpC;AAAA,EACF;AACF;",
6
- "names": []
7
- }
@@ -1,32 +0,0 @@
1
- import path from "path";
2
- import { normalizePath } from "vite";
3
- const styleUpdateEvent = (fileId) => `tamagui-style-update:${fileId}`;
4
- function tamaguiExtractPlugin(options) {
5
- let config;
6
- let server;
7
- const cssMap = /* @__PURE__ */ new Map();
8
- let virtualExt;
9
- let packageName;
10
- const getAbsoluteVirtualFileId = (source) => normalizePath(path.join(config.root, source));
11
- return {
12
- name: "tamagui-extract",
13
- enforce: "pre",
14
- configureServer(_server) {
15
- server = _server;
16
- },
17
- config(_userConfig, env) {
18
- },
19
- async configResolved(resolvedConfig) {
20
- },
21
- resolveId(source) {
22
- },
23
- load(id) {
24
- },
25
- async transform(code, id, ssrParam) {
26
- }
27
- };
28
- }
29
- export {
30
- tamaguiExtractPlugin
31
- };
32
- //# sourceMappingURL=extractPlugin.js.map
@@ -1,7 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../../src/extractPlugin.ts"],
4
- "sourcesContent": ["// fork from https://github.com/seek-oss/vanilla-extract/blob/master/packages/vite-plugin/src/index.ts\n\nimport path from 'path'\n\nimport type { TamaguiOptions } from '@tamagui/static'\nimport outdent from 'outdent'\nimport type { Plugin, ResolvedConfig, ViteDevServer } from 'vite'\nimport { normalizePath } from 'vite'\n\nconst styleUpdateEvent = (fileId: string) => `tamagui-style-update:${fileId}`\n\nexport function tamaguiExtractPlugin(options: TamaguiOptions): Plugin {\n let config: ResolvedConfig\n let server: ViteDevServer\n const cssMap = new Map<string, string>()\n let virtualExt: string\n let packageName: string\n\n const getAbsoluteVirtualFileId = (source: string) => normalizePath(path.join(config.root, source))\n\n return {\n name: 'tamagui-extract',\n enforce: 'pre',\n\n configureServer(_server) {\n server = _server\n },\n\n config(_userConfig, env) {\n // const include = env.command === 'serve' ? ['@tamagui/css/injectStyles'] : []\n // return {\n // optimizeDeps: { include },\n // ssr: {\n // external: ['@tamagui/css', '@tamagui/css/fileScope', '@tamagui/css/adapter'],\n // },\n // }\n },\n\n async configResolved(resolvedConfig) {\n // config = resolvedConfig\n // packageName = getPackageInfo(config.root).name\n // if (config.command === 'serve') {\n // postCssConfig = await resolvePostcssConfig(config)\n // }\n // virtualExt = `.vanilla.${config.command === 'serve' ? 'js' : 'css'}`\n },\n\n resolveId(source) {\n // if (!source.endsWith(virtualExt)) {\n // return\n // }\n // // Absolute paths seem to occur often in monorepos, where files are\n // // imported from outside the config root.\n // const absoluteId = source.startsWith(config.root) ? source : getAbsoluteVirtualFileId(source)\n // // There should always be an entry in the `cssMap` here.\n // // The only valid scenario for a missing one is if someone had written\n // // a file in their app using the .vanilla.js/.vanilla.css extension\n // if (cssMap.has(absoluteId)) {\n // return absoluteId\n // }\n },\n\n load(id) {\n // if (!cssMap.has(id)) {\n // return\n // }\n // const css = cssMap.get(id)\n // if (typeof css !== 'string') {\n // return\n // }\n // if (!server || server.config.isProduction) {\n // return css\n // }\n // return outdent`\n // import { injectStyles } from '@tamagui/css/injectStyles';\n // const inject = (css) => injectStyles({\n // fileScope: ${JSON.stringify({ filePath: id })},\n // css\n // });\n // inject(${JSON.stringify(css)});\n // import.meta.hot.on('${styleUpdateEvent(id)}', (css) => {\n // inject(css);\n // });\n // `\n },\n\n async transform(code, id, ssrParam) {\n // if (!cssFileFilter.test(id)) {\n // return null\n // }\n // let ssr: boolean | undefined\n // if (typeof ssrParam === 'boolean') {\n // ssr = ssrParam\n // } else {\n // ssr = ssrParam?.ssr\n // }\n // const index = id.indexOf('?')\n // const validId = index === -1 ? id : id.substring(0, index)\n // if (ssr) {\n // return addFileScope({\n // source: code,\n // filePath: normalizePath(validId),\n // rootPath: config.root,\n // packageName,\n // })\n // }\n // const { source, watchFiles } = await compile({\n // filePath: validId,\n // cwd: config.root,\n // esbuildOptions,\n // })\n // for (const file of watchFiles) {\n // // In start mode, we need to prevent the file from rewatching itself.\n // // If it's a `build --watch`, it needs to watch everything.\n // if (config.command === 'build' || file !== id) {\n // this.addWatchFile(file)\n // }\n // }\n // const output = await processVanillaFile({\n // source,\n // filePath: validId,\n // identOption: identifiers ?? (config.mode === 'production' ? 'short' : 'debug'),\n // serializeVirtualCssPath: async ({ fileScope, source }) => {\n // const rootRelativeId = `${fileScope.filePath}${virtualExt}`\n // const absoluteId = getAbsoluteVirtualFileId(rootRelativeId)\n // let cssSource = source\n // if (postCssConfig) {\n // const postCssResult = await (await import('postcss'))\n // .default(postCssConfig.plugins)\n // .process(source, {\n // ...postCssConfig.options,\n // from: undefined,\n // map: false,\n // })\n // cssSource = postCssResult.css\n // }\n // if (server && cssMap.has(absoluteId) && cssMap.get(absoluteId) !== source) {\n // const { moduleGraph } = server\n // const module = moduleGraph.getModuleById(absoluteId)\n // if (module) {\n // moduleGraph.invalidateModule(module)\n // }\n // server.ws.send({\n // type: 'custom',\n // event: styleUpdateEvent(absoluteId),\n // data: cssSource,\n // })\n // }\n // cssMap.set(absoluteId, cssSource)\n // // We use the root relative id here to ensure file contents (content-hashes)\n // // are consistent across build machines\n // return `import \"${rootRelativeId}\";`\n // },\n // })\n // return {\n // code: output,\n // map: { mappings: '' },\n // }\n },\n }\n}\n"],
5
- "mappings": "AAEA;AAKA;AAEA,MAAM,mBAAmB,CAAC,WAAmB,wBAAwB;AAE9D,8BAA8B,SAAiC;AACpE,MAAI;AACJ,MAAI;AACJ,QAAM,SAAS,oBAAI,IAAoB;AACvC,MAAI;AACJ,MAAI;AAEJ,QAAM,2BAA2B,CAAC,WAAmB,cAAc,KAAK,KAAK,OAAO,MAAM,MAAM,CAAC;AAEjG,SAAO;AAAA,IACL,MAAM;AAAA,IACN,SAAS;AAAA,IAET,gBAAgB,SAAS;AACvB,eAAS;AAAA,IACX;AAAA,IAEA,OAAO,aAAa,KAAK;AAAA,IAQzB;AAAA,IAEA,MAAM,eAAe,gBAAgB;AAAA,IAOrC;AAAA,IAEA,UAAU,QAAQ;AAAA,IAalB;AAAA,IAEA,KAAK,IAAI;AAAA,IAsBT;AAAA,IAEA,MAAM,UAAU,MAAM,IAAI,UAAU;AAAA,IAwEpC;AAAA,EACF;AACF;",
6
- "names": []
7
- }