@tamagui/static-sync 2.0.0-1769665879528 → 2.0.0-1780064412517

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/dist/index.cjs CHANGED
@@ -2,14 +2,18 @@ var __create = Object.create;
2
2
  var __defProp = Object.defineProperty;
3
3
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
4
  var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __getProtoOf = Object.getPrototypeOf, __hasOwnProp = Object.prototype.hasOwnProperty;
5
+ var __getProtoOf = Object.getPrototypeOf;
6
+ var __hasOwnProp = Object.prototype.hasOwnProperty;
6
7
  var __export = (target, all) => {
7
8
  for (var name in all)
8
- __defProp(target, name, { get: all[name], enumerable: !0 });
9
- }, __copyProps = (to, from, except, desc) => {
10
- if (from && typeof from == "object" || typeof from == "function")
9
+ __defProp(target, name, { get: all[name], enumerable: true });
10
+ };
11
+ var __copyProps = (to, from, except, desc) => {
12
+ if (from && typeof from === "object" || typeof from === "function") {
11
13
  for (let key of __getOwnPropNames(from))
12
- !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
14
+ if (!__hasOwnProp.call(to, key) && key !== except)
15
+ __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
16
+ }
13
17
  return to;
14
18
  };
15
19
  var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
@@ -17,9 +21,10 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
17
21
  // file that has been converted to a CommonJS file using a Babel-
18
22
  // compatible transform (i.e. "__esModule" has not been set), then set
19
23
  // "default" to the CommonJS "module.exports" for node compatibility.
20
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: !0 }) : target,
24
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
21
25
  mod
22
- )), __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
26
+ ));
27
+ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
23
28
 
24
29
  // src/index.ts
25
30
  var index_exports = {};
@@ -27,67 +32,74 @@ __export(index_exports, {
27
32
  extractToClassNamesSync: () => extractToClassNamesSync,
28
33
  extractToNativeSync: () => extractToNativeSync,
29
34
  getBabelPlugin: () => getBabelPlugin,
30
- getPragmaOptions: () => getPragmaOptions,
31
- loadTamaguiBuildConfigSync: () => loadTamaguiBuildConfigSync
35
+ getPragmaOptions: () => getPragmaOptions
32
36
  });
33
37
  module.exports = __toCommonJS(index_exports);
34
- var import_synckit = require("synckit"), import_node_url = require("node:url"), import_meta = {}, getWorkerPath = () => typeof import_meta < "u" && import_meta.url ? (0, import_node_url.fileURLToPath)(import_meta.resolve("@tamagui/static/worker")).replace(/\.mjs$/, ".js") : require.resolve("@tamagui/static/worker").replace(/\.mjs$/, ".js"), runTaskSync = (0, import_synckit.createSyncFn)(getWorkerPath(), {
38
+ var import_synckit = require("synckit");
39
+ var import_node_url = require("node:url");
40
+ var import_meta = {};
41
+ var getWorkerPath = () => {
42
+ if (typeof import_meta !== "undefined" && import_meta.url) {
43
+ const workerPath = (0, import_node_url.fileURLToPath)(import_meta.resolve("@tamagui/static/worker"));
44
+ return workerPath.replace(/\.mjs$/, ".js");
45
+ }
46
+ return require.resolve("@tamagui/static/worker").replace(/\.mjs$/, ".js");
47
+ };
48
+ var runTaskSync = (0, import_synckit.createSyncFn)(getWorkerPath(), {
35
49
  timeout: 6e4
36
50
  // 60s timeout for sync operations
37
- }), getPragmaOptions = (props) => {
38
- let { default: Static } = require("@tamagui/static");
51
+ });
52
+ var getPragmaOptions = (props) => {
53
+ const { default: Static } = require("@tamagui/static");
39
54
  return Static.getPragmaOptions(props);
40
55
  };
41
- function loadTamaguiBuildConfigSync(tamaguiOptions) {
42
- let { default: Static } = require("@tamagui/static");
43
- return Static.loadTamaguiBuildConfigSync(tamaguiOptions);
44
- }
45
56
  function extractToClassNamesSync(params) {
46
- let { source, sourcePath = "", options, shouldPrintDebug = !1 } = params;
47
- if (typeof source != "string")
57
+ const { source, sourcePath = "", options, shouldPrintDebug = false } = params;
58
+ if (typeof source !== "string") {
48
59
  throw new Error("`source` must be a string of javascript");
49
- let result = runTaskSync({
60
+ }
61
+ const task = {
50
62
  type: "extractToClassNames",
51
63
  source,
52
64
  sourcePath,
53
65
  options,
54
66
  shouldPrintDebug
55
- });
67
+ };
68
+ const result = runTaskSync(task);
56
69
  if (!result.success) {
57
- let errorMessage = [
70
+ const errorMessage = [
58
71
  `[tamagui-extract] Error processing file: ${sourcePath || "(unknown)"}`,
59
- "",
72
+ ``,
60
73
  result.error,
61
74
  result.stack ? `
62
75
  ${result.stack}` : ""
63
- ].filter(Boolean).join(`
64
- `);
76
+ ].filter(Boolean).join("\n");
65
77
  throw new Error(errorMessage);
66
78
  }
67
79
  return result.data;
68
80
  }
69
81
  function extractToNativeSync(sourceFileName, sourceCode, options) {
70
- let result = runTaskSync({
82
+ const task = {
71
83
  type: "extractToNative",
72
84
  sourceFileName,
73
85
  sourceCode,
74
86
  options
75
- });
87
+ };
88
+ const result = runTaskSync(task);
76
89
  if (!result.success) {
77
- let errorMessage = [
90
+ const errorMessage = [
78
91
  `[tamagui-extract] Error processing file: ${sourceFileName || "(unknown)"}`,
79
- "",
92
+ ``,
80
93
  result.error,
81
94
  result.stack ? `
82
95
  ${result.stack}` : ""
83
- ].filter(Boolean).join(`
84
- `);
96
+ ].filter(Boolean).join("\n");
85
97
  throw new Error(errorMessage);
86
98
  }
87
99
  return result.data;
88
100
  }
89
101
  function getBabelPlugin() {
90
- let { default: Static } = require("@tamagui/static");
102
+ const { default: Static } = require("@tamagui/static");
91
103
  return Static.getBabelPlugin();
92
104
  }
93
105
  // Annotate the CommonJS export names for ESM import in node:
@@ -95,7 +107,6 @@ function getBabelPlugin() {
95
107
  extractToClassNamesSync,
96
108
  extractToNativeSync,
97
109
  getBabelPlugin,
98
- getPragmaOptions,
99
- loadTamaguiBuildConfigSync
110
+ getPragmaOptions
100
111
  });
101
112
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,43 +1,42 @@
1
1
  {
2
2
  "name": "@tamagui/static-sync",
3
- "version": "2.0.0-1769665879528",
3
+ "version": "2.0.0-1780064412517",
4
+ "license": "MIT",
4
5
  "source": "src/index.ts",
5
- "types": "./types/index.d.ts",
6
- "type": "commonjs",
7
- "main": "dist",
8
6
  "files": [
9
7
  "src",
10
8
  "types",
11
9
  "dist"
12
10
  ],
13
- "scripts": {
14
- "build": "tamagui-build --skip-native --bundle",
15
- "watch": "yarn build --watch",
16
- "clean": "tamagui-build clean",
17
- "clean:build": "tamagui-build clean:build",
18
- "lint": "biome check src",
19
- "lint:fix": "biome check --write src"
20
- },
11
+ "type": "commonjs",
12
+ "main": "dist",
13
+ "types": "./types/index.d.ts",
21
14
  "exports": {
22
15
  "./package.json": "./package.json",
23
16
  ".": {
24
17
  "types": "./types/index.d.ts",
25
- "require": "./dist/index.cjs",
18
+ "browser": "./dist/index.cjs",
26
19
  "module": "./dist/index.cjs",
27
- "import": "./dist/index.cjs"
20
+ "import": "./dist/index.cjs",
21
+ "require": "./dist/index.cjs"
28
22
  }
29
23
  },
30
24
  "publishConfig": {
31
25
  "access": "public"
32
26
  },
33
- "license": "MIT",
27
+ "scripts": {
28
+ "build": "tamagui-build --skip-native --bundle",
29
+ "watch": "bun run build --watch",
30
+ "clean": "tamagui-build clean",
31
+ "clean:build": "tamagui-build clean:build"
32
+ },
34
33
  "dependencies": {
35
34
  "@babel/core": "^7.25.2",
36
- "@tamagui/static": "2.0.0-1769665879528",
37
- "@tamagui/types": "2.0.0-1769665879528",
35
+ "@tamagui/static": "2.0.0-1780064412517",
36
+ "@tamagui/types": "2.0.0-1780064412517",
38
37
  "synckit": "^0.9.2"
39
38
  },
40
39
  "devDependencies": {
41
- "@tamagui/build": "2.0.0-1769665879528"
40
+ "@tamagui/build": "2.0.0-1780064412517"
42
41
  }
43
- }
42
+ }
package/src/index.ts CHANGED
@@ -13,10 +13,7 @@ import type { TamaguiOptions } from '@tamagui/types'
13
13
  import { createSyncFn } from 'synckit'
14
14
  import { fileURLToPath } from 'node:url'
15
15
 
16
- export type {
17
- ExtractedResponse,
18
- TamaguiProjectInfo,
19
- } from '@tamagui/static'
16
+ export type { ExtractedResponse, TamaguiProjectInfo } from '@tamagui/static'
20
17
  export type { TamaguiOptions } from '@tamagui/types'
21
18
 
22
19
  // Resolve worker path - works for both CJS and ESM
@@ -37,27 +34,12 @@ const runTaskSync = createSyncFn(getWorkerPath(), {
37
34
  timeout: 60000, // 60s timeout for sync operations
38
35
  })
39
36
 
40
- export const getPragmaOptions = (props: {
41
- source: string
42
- path: string
43
- }) => {
37
+ export const getPragmaOptions = (props: { source: string; path: string }) => {
44
38
  // This doesn't need worker, just use static directly
45
39
  const { default: Static } = require('@tamagui/static')
46
40
  return Static.getPragmaOptions(props)
47
41
  }
48
42
 
49
- /**
50
- * Load Tamagui build configuration synchronously
51
- * This is only used for loading tamagui.build.ts config
52
- */
53
- export function loadTamaguiBuildConfigSync(
54
- tamaguiOptions: Partial<TamaguiOptions> | undefined
55
- ): TamaguiOptions {
56
- // Import from static package for this sync operation
57
- const { default: Static } = require('@tamagui/static')
58
- return Static.loadTamaguiBuildConfigSync(tamaguiOptions)
59
- }
60
-
61
43
  /**
62
44
  * Extract Tamagui components to className-based CSS for web (synchronous)
63
45
  */
package/types/index.d.ts CHANGED
@@ -9,17 +9,12 @@
9
9
  */
10
10
  import type { BabelFileResult } from '@babel/core';
11
11
  import type { TamaguiOptions } from '@tamagui/types';
12
- export type { ExtractedResponse, TamaguiProjectInfo, } from '@tamagui/static';
12
+ export type { ExtractedResponse, TamaguiProjectInfo } from '@tamagui/static';
13
13
  export type { TamaguiOptions } from '@tamagui/types';
14
14
  export declare const getPragmaOptions: (props: {
15
15
  source: string;
16
16
  path: string;
17
17
  }) => any;
18
- /**
19
- * Load Tamagui build configuration synchronously
20
- * This is only used for loading tamagui.build.ts config
21
- */
22
- export declare function loadTamaguiBuildConfigSync(tamaguiOptions: Partial<TamaguiOptions> | undefined): TamaguiOptions;
23
18
  /**
24
19
  * Extract Tamagui components to className-based CSS for web (synchronous)
25
20
  */
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,aAAa,CAAA;AAClD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAA;AAIpD,YAAY,EACV,iBAAiB,EACjB,kBAAkB,GACnB,MAAM,iBAAiB,CAAA;AACxB,YAAY,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAA;AAoBpD,eAAO,MAAM,gBAAgB,GAAI,OAAO;IACtC,MAAM,EAAE,MAAM,CAAA;IACd,IAAI,EAAE,MAAM,CAAA;CACb,QAIA,CAAA;AAED;;;GAGG;AACH,wBAAgB,0BAA0B,CACxC,cAAc,EAAE,OAAO,CAAC,cAAc,CAAC,GAAG,SAAS,GAClD,cAAc,CAIhB;AAED;;GAEG;AACH,wBAAgB,uBAAuB,CAAC,MAAM,EAAE;IAC9C,MAAM,EAAE,MAAM,GAAG,MAAM,CAAA;IACvB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,OAAO,EAAE,cAAc,CAAA;IACvB,gBAAgB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAA;CACvC,GAAG,GAAG,CA+BN;AAED;;GAEG;AACH,wBAAgB,mBAAmB,CACjC,cAAc,EAAE,MAAM,EACtB,UAAU,EAAE,MAAM,EAClB,OAAO,EAAE,cAAc,GACtB,eAAe,CAwBjB;AAED;;GAEG;AACH,wBAAgB,cAAc,QAI7B"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,aAAa,CAAA;AAClD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAA;AAIpD,YAAY,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAA;AAC5E,YAAY,EAAE,cAAc,EAAE,MAAM,gBAAgB,CAAA;AAoBpD,eAAO,MAAM,gBAAgB,GAAI,OAAO;IAAE,MAAM,EAAE,MAAM,CAAC;IAAC,IAAI,EAAE,MAAM,CAAA;CAAE,QAIvE,CAAA;AAED;;GAEG;AACH,wBAAgB,uBAAuB,CAAC,MAAM,EAAE;IAC9C,MAAM,EAAE,MAAM,GAAG,MAAM,CAAA;IACvB,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,OAAO,EAAE,cAAc,CAAA;IACvB,gBAAgB,CAAC,EAAE,OAAO,GAAG,SAAS,CAAA;CACvC,GAAG,GAAG,CA+BN;AAED;;GAEG;AACH,wBAAgB,mBAAmB,CACjC,cAAc,EAAE,MAAM,EACtB,UAAU,EAAE,MAAM,EAClB,OAAO,EAAE,cAAc,GACtB,eAAe,CAwBjB;AAED;;GAEG;AACH,wBAAgB,cAAc,QAI7B"}
package/dist/index.js DELETED
@@ -1,101 +0,0 @@
1
- var __create = Object.create;
2
- var __defProp = Object.defineProperty;
3
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
- var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __getProtoOf = Object.getPrototypeOf, __hasOwnProp = Object.prototype.hasOwnProperty;
6
- var __export = (target, all) => {
7
- for (var name in all)
8
- __defProp(target, name, { get: all[name], enumerable: !0 });
9
- }, __copyProps = (to, from, except, desc) => {
10
- if (from && typeof from == "object" || typeof from == "function")
11
- for (let key of __getOwnPropNames(from))
12
- !__hasOwnProp.call(to, key) && key !== except && __defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
13
- return to;
14
- };
15
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
16
- // If the importer is in node compatibility mode or this is not an ESM
17
- // file that has been converted to a CommonJS file using a Babel-
18
- // compatible transform (i.e. "__esModule" has not been set), then set
19
- // "default" to the CommonJS "module.exports" for node compatibility.
20
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: !0 }) : target,
21
- mod
22
- )), __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: !0 }), mod);
23
-
24
- // src/index.ts
25
- var index_exports = {};
26
- __export(index_exports, {
27
- extractToClassNamesSync: () => extractToClassNamesSync,
28
- extractToNativeSync: () => extractToNativeSync,
29
- getBabelPlugin: () => getBabelPlugin,
30
- getPragmaOptions: () => getPragmaOptions,
31
- loadTamaguiBuildConfigSync: () => loadTamaguiBuildConfigSync
32
- });
33
- module.exports = __toCommonJS(index_exports);
34
- var import_synckit = require("synckit"), import_node_url = require("node:url"), import_meta = {}, getWorkerPath = () => typeof import_meta < "u" && import_meta.url ? (0, import_node_url.fileURLToPath)(import_meta.resolve("@tamagui/static/worker")).replace(/\.mjs$/, ".js") : require.resolve("@tamagui/static/worker").replace(/\.mjs$/, ".js"), runTaskSync = (0, import_synckit.createSyncFn)(getWorkerPath(), {
35
- timeout: 6e4
36
- // 60s timeout for sync operations
37
- }), getPragmaOptions = (props) => {
38
- let { default: Static } = require("@tamagui/static");
39
- return Static.getPragmaOptions(props);
40
- };
41
- function loadTamaguiBuildConfigSync(tamaguiOptions) {
42
- let { default: Static } = require("@tamagui/static");
43
- return Static.loadTamaguiBuildConfigSync(tamaguiOptions);
44
- }
45
- function extractToClassNamesSync(params) {
46
- let { source, sourcePath = "", options, shouldPrintDebug = !1 } = params;
47
- if (typeof source != "string")
48
- throw new Error("`source` must be a string of javascript");
49
- let result = runTaskSync({
50
- type: "extractToClassNames",
51
- source,
52
- sourcePath,
53
- options,
54
- shouldPrintDebug
55
- });
56
- if (!result.success) {
57
- let errorMessage = [
58
- `[tamagui-extract] Error processing file: ${sourcePath || "(unknown)"}`,
59
- "",
60
- result.error,
61
- result.stack ? `
62
- ${result.stack}` : ""
63
- ].filter(Boolean).join(`
64
- `);
65
- throw new Error(errorMessage);
66
- }
67
- return result.data;
68
- }
69
- function extractToNativeSync(sourceFileName, sourceCode, options) {
70
- let result = runTaskSync({
71
- type: "extractToNative",
72
- sourceFileName,
73
- sourceCode,
74
- options
75
- });
76
- if (!result.success) {
77
- let errorMessage = [
78
- `[tamagui-extract] Error processing file: ${sourceFileName || "(unknown)"}`,
79
- "",
80
- result.error,
81
- result.stack ? `
82
- ${result.stack}` : ""
83
- ].filter(Boolean).join(`
84
- `);
85
- throw new Error(errorMessage);
86
- }
87
- return result.data;
88
- }
89
- function getBabelPlugin() {
90
- let { default: Static } = require("@tamagui/static");
91
- return Static.getBabelPlugin();
92
- }
93
- // Annotate the CommonJS export names for ESM import in node:
94
- 0 && (module.exports = {
95
- extractToClassNamesSync,
96
- extractToNativeSync,
97
- getBabelPlugin,
98
- getPragmaOptions,
99
- loadTamaguiBuildConfigSync
100
- });
101
- //# sourceMappingURL=index.js.map
package/dist/index.js.map DELETED
@@ -1,6 +0,0 @@
1
- {
2
- "version": 3,
3
- "sources": ["../src/index.ts"],
4
- "mappings": ";;;;;;;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAYA,qBAA6B,oBAC7B,kBAA8B,qBAb9B,kBAsBM,gBAAgB,MAEhB,OAAO,cAAgB,OAAe,YAAY,UACjC,+BAAc,YAAY,QAAQ,wBAAwB,CAAC,EAE5D,QAAQ,UAAU,KAAK,IAIpC,gBAAgB,wBAAwB,EAAE,QAAQ,UAAU,KAAK,GAIpE,kBAAc,6BAAa,cAAc,GAAG;AAAA,EAChD,SAAS;AAAA;AACX,CAAC,GAEY,mBAAmB,CAAC,UAG3B;AAEJ,MAAM,EAAE,SAAS,OAAO,IAAI,QAAQ,iBAAiB;AACrD,SAAO,OAAO,iBAAiB,KAAK;AACtC;AAMO,SAAS,2BACd,gBACgB;AAEhB,MAAM,EAAE,SAAS,OAAO,IAAI,QAAQ,iBAAiB;AACrD,SAAO,OAAO,2BAA2B,cAAc;AACzD;AAKO,SAAS,wBAAwB,QAKhC;AACN,MAAM,EAAE,QAAQ,aAAa,IAAI,SAAS,mBAAmB,GAAM,IAAI;AAEvE,MAAI,OAAO,UAAW;AACpB,UAAM,IAAI,MAAM,yCAAyC;AAW3D,MAAM,SAAS,YARF;AAAA,IACX,MAAM;AAAA,IACN;AAAA,IACA;AAAA,IACA;AAAA,IACA;AAAA,EACF,CAE+B;AAE/B,MAAI,CAAC,OAAO,SAAS;AACnB,QAAM,eAAe;AAAA,MACnB,4CAA4C,cAAc,WAAW;AAAA,MACrE;AAAA,MACA,OAAO;AAAA,MACP,OAAO,QAAQ;AAAA,EAAK,OAAO,KAAK,KAAK;AAAA,IACvC,EACG,OAAO,OAAO,EACd,KAAK;AAAA,CAAI;AAEZ,UAAM,IAAI,MAAM,YAAY;AAAA,EAC9B;AAEA,SAAO,OAAO;AAChB;AAKO,SAAS,oBACd,gBACA,YACA,SACiB;AAQjB,MAAM,SAAS,YAPF;AAAA,IACX,MAAM;AAAA,IACN;AAAA,IACA;AAAA,IACA;AAAA,EACF,CAE+B;AAE/B,MAAI,CAAC,OAAO,SAAS;AACnB,QAAM,eAAe;AAAA,MACnB,4CAA4C,kBAAkB,WAAW;AAAA,MACzE;AAAA,MACA,OAAO;AAAA,MACP,OAAO,QAAQ;AAAA,EAAK,OAAO,KAAK,KAAK;AAAA,IACvC,EACG,OAAO,OAAO,EACd,KAAK;AAAA,CAAI;AAEZ,UAAM,IAAI,MAAM,YAAY;AAAA,EAC9B;AAEA,SAAO,OAAO;AAChB;AAKO,SAAS,iBAAiB;AAE/B,MAAM,EAAE,SAAS,OAAO,IAAI,QAAQ,iBAAiB;AACrD,SAAO,OAAO,eAAe;AAC/B;",
5
- "names": []
6
- }