@tokens-studio/tokenscript-interpreter 0.32.0 → 0.34.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (70) hide show
  1. package/dist/chunk-33CDF4L4.js +6444 -0
  2. package/dist/chunk-33CDF4L4.js.map +1 -0
  3. package/dist/chunk-AXH5N7KV.js +99 -0
  4. package/dist/chunk-AXH5N7KV.js.map +1 -0
  5. package/dist/chunk-QP7M6WUR.js +6227 -0
  6. package/dist/chunk-QP7M6WUR.js.map +1 -0
  7. package/dist/cli.js +242 -2
  8. package/dist/cli.js.map +1 -1
  9. package/dist/compliance-suite.js +2 -2
  10. package/dist/config-DtbN3iyg.d.ts +918 -0
  11. package/dist/lib/{chunk-QYRJ6NSL.cjs → chunk-LEYHQJTL.cjs} +3 -2
  12. package/dist/lib/chunk-LEYHQJTL.cjs.map +1 -0
  13. package/dist/lib/{chunk-GKSWF7FF.cjs → chunk-LMGHS2NP.cjs} +102 -100
  14. package/dist/lib/chunk-LMGHS2NP.cjs.map +1 -0
  15. package/dist/lib/{chunk-LI2D53SH.js → chunk-LSTH2XJ4.js} +5 -3
  16. package/dist/lib/chunk-LSTH2XJ4.js.map +1 -0
  17. package/dist/lib/{chunk-YD3MIYOO.js → chunk-ODVWXGOM.js} +3 -2
  18. package/dist/lib/chunk-ODVWXGOM.js.map +1 -0
  19. package/dist/lib/{chunk-UYVHWJIC.js → chunk-RWXDOZAS.js} +250 -5
  20. package/dist/lib/chunk-RWXDOZAS.js.map +1 -0
  21. package/dist/lib/{chunk-QGOGK2VP.cjs → chunk-YCIBJDRB.cjs} +790 -543
  22. package/dist/lib/chunk-YCIBJDRB.cjs.map +1 -0
  23. package/dist/lib/index.cjs +97 -89
  24. package/dist/lib/index.d.cts +5 -5
  25. package/dist/lib/index.d.ts +5 -5
  26. package/dist/lib/index.js +3 -3
  27. package/dist/lib/{interpreter-DNmBc--s.d.ts → interpreter-6QwMkUqD.d.cts} +30 -2
  28. package/dist/lib/{interpreter-CP7CNwDa.d.cts → interpreter-v7WiwSP9.d.ts} +30 -2
  29. package/dist/lib/interpreter.cjs +73 -73
  30. package/dist/lib/interpreter.d.cts +4 -4
  31. package/dist/lib/interpreter.d.ts +4 -4
  32. package/dist/lib/interpreter.js +3 -3
  33. package/dist/lib/processor-node.cjs +12 -12
  34. package/dist/lib/processor-node.d.cts +3 -3
  35. package/dist/lib/processor-node.d.ts +3 -3
  36. package/dist/lib/processor-node.js +3 -3
  37. package/dist/lib/processor.cjs +23 -15
  38. package/dist/lib/processor.d.cts +18 -5
  39. package/dist/lib/processor.d.ts +18 -5
  40. package/dist/lib/processor.js +3 -3
  41. package/dist/lib/schema.cjs +5 -5
  42. package/dist/lib/schema.d.cts +1 -1
  43. package/dist/lib/schema.d.ts +1 -1
  44. package/dist/lib/schema.js +3 -3
  45. package/dist/lib/syntax-highlighting.cjs +15 -15
  46. package/dist/lib/syntax-highlighting.d.cts +1 -1
  47. package/dist/lib/syntax-highlighting.d.ts +1 -1
  48. package/dist/lib/syntax-highlighting.js +2 -2
  49. package/dist/lib/{types-DHgmzR1Z.d.ts → types-BI0AZ4Ej.d.ts} +2 -2
  50. package/dist/lib/{types-BimJex2v.d.cts → types-EB8V9c46.d.cts} +1 -0
  51. package/dist/lib/{types-BimJex2v.d.ts → types-EB8V9c46.d.ts} +1 -0
  52. package/dist/lib/{types-DsJuwrq3.d.cts → types-cFwP43uv.d.cts} +2 -2
  53. package/dist/lib/types.cjs +6 -6
  54. package/dist/lib/types.d.cts +1 -1
  55. package/dist/lib/types.d.ts +1 -1
  56. package/dist/lib/types.js +1 -1
  57. package/dist/processor/index.d.ts +15 -2
  58. package/dist/processor/index.js +24 -3
  59. package/dist/processor/index.js.map +1 -1
  60. package/dist/repl.d.ts +1 -1
  61. package/dist/repl.js +2 -2
  62. package/dist/types.d.ts +1 -1
  63. package/dist/types.js +1 -1
  64. package/package.json +1 -1
  65. package/dist/lib/chunk-GKSWF7FF.cjs.map +0 -1
  66. package/dist/lib/chunk-LI2D53SH.js.map +0 -1
  67. package/dist/lib/chunk-QGOGK2VP.cjs.map +0 -1
  68. package/dist/lib/chunk-QYRJ6NSL.cjs.map +0 -1
  69. package/dist/lib/chunk-UYVHWJIC.js.map +0 -1
  70. package/dist/lib/chunk-YD3MIYOO.js.map +0 -1
@@ -1,4 +1,4 @@
1
- import { T as Token, A as ASTNode, I as ISymbolType, e as Config, R as ReferenceRecord } from './types-BimJex2v.cjs';
1
+ import { T as Token, A as ASTNode, I as ISymbolType, e as Config, R as ReferenceRecord } from './types-EB8V9c46.js';
2
2
 
3
3
  /**
4
4
  * Union type for serialized error data that can be passed in error data objects.
@@ -186,6 +186,7 @@ declare enum InterpreterErrorCode {
186
186
  FOR_EACH_NOT_LIST = "INT_FOR_EACH_NOT_LIST",
187
187
  FOR_EACH_VARIABLE_SHADOW = "INT_FOR_EACH_VARIABLE_SHADOW",
188
188
  FOR_EACH_DUPLICATE_VARS = "INT_FOR_EACH_DUPLICATE_VARS",
189
+ TEMPLATE_INVALID_TYPE = "INT_TEMPLATE_INVALID_TYPE",
189
190
  UNKNOWN_ERROR = "INT_UNKNOWN_ERROR"
190
191
  }
191
192
  interface InterpreterErrorData {
@@ -282,6 +283,9 @@ interface InterpreterErrorData {
282
283
  [InterpreterErrorCode.FOR_EACH_DUPLICATE_VARS]: {
283
284
  name: string;
284
285
  };
286
+ [InterpreterErrorCode.TEMPLATE_INVALID_TYPE]: {
287
+ valueType: string;
288
+ };
285
289
  [InterpreterErrorCode.UNKNOWN_ERROR]: Record<string, never>;
286
290
  }
287
291
 
@@ -292,7 +296,8 @@ declare enum LexerErrorCode {
292
296
  EMPTY_VARIABLE_NAME = "LEXER_EMPTY_VARIABLE_NAME",
293
297
  INVALID_HEX_COLOR_FORMAT = "LEXER_INVALID_HEX_COLOR_FORMAT",
294
298
  EXPECTED_CHARACTER = "LEXER_EXPECTED_CHARACTER",
295
- MULTIPLE_DECIMAL_POINTS = "LEXER_MULTIPLE_DECIMAL_POINTS"
299
+ MULTIPLE_DECIMAL_POINTS = "LEXER_MULTIPLE_DECIMAL_POINTS",
300
+ UNTERMINATED_TEMPLATE_STRING = "LEXER_UNTERMINATED_TEMPLATE_STRING"
296
301
  }
297
302
  interface LexerErrorData {
298
303
  [LexerErrorCode.INVALID_CHARACTER]: {
@@ -316,6 +321,7 @@ interface LexerErrorData {
316
321
  [LexerErrorCode.MULTIPLE_DECIMAL_POINTS]: {
317
322
  value: string;
318
323
  };
324
+ [LexerErrorCode.UNTERMINATED_TEMPLATE_STRING]: Record<string, never>;
319
325
  }
320
326
 
321
327
  declare enum OperationsErrorCode {
@@ -616,6 +622,13 @@ declare class Lexer {
616
622
  private stringElement;
617
623
  private reference;
618
624
  private explicitString;
625
+ /**
626
+ * Read a backtick-delimited template string.
627
+ * Supports escape sequences: \{ \$ \` \\
628
+ * The raw content (with escapes preserved) is stored as the token value.
629
+ * The parser handles splitting into segments.
630
+ */
631
+ private templateString;
619
632
  private hexColor;
620
633
  private collectToken;
621
634
  nextToken(): Token;
@@ -765,6 +778,15 @@ declare class Parser {
765
778
  private factor;
766
779
  private attributeAccess;
767
780
  private functionCall;
781
+ /**
782
+ * Parse a TEMPLATE_STRING token into a TemplateStringNode.
783
+ * Scans the raw content for:
784
+ * - {ref.path} → ReferenceNode
785
+ * - ${expression} → parsed sub-expression
786
+ * - \{ \${ \` \\ → escaped literals (backslash removed)
787
+ * - everything else → literal StringNode segments
788
+ */
789
+ private templateString;
768
790
  parse(inlineMode?: boolean): ASTNode | null;
769
791
  }
770
792
  interface ParseExpressionResult {
@@ -808,6 +830,12 @@ declare class Interpreter {
808
830
  private visitBinOpNode;
809
831
  private visitNumNode;
810
832
  private visitStringNode;
833
+ private visitTemplateStringNode;
834
+ /**
835
+ * Validate that a value is a primitive type allowed in template string interpolation.
836
+ * Lists, Dictionaries, and non-hex Colors are rejected.
837
+ */
838
+ private validateTemplateValue;
811
839
  /**
812
840
  * Bare identifiers are treated as string literals if not found as variables
813
841
  * Check symbol table first (variables override references), then references
@@ -1,290 +1,290 @@
1
1
  'use strict';
2
2
 
3
- var chunkQGOGK2VP_cjs = require('./chunk-QGOGK2VP.cjs');
4
- var chunkGKSWF7FF_cjs = require('./chunk-GKSWF7FF.cjs');
5
- var chunkQYRJ6NSL_cjs = require('./chunk-QYRJ6NSL.cjs');
3
+ var chunkYCIBJDRB_cjs = require('./chunk-YCIBJDRB.cjs');
4
+ var chunkLMGHS2NP_cjs = require('./chunk-LMGHS2NP.cjs');
5
+ var chunkLEYHQJTL_cjs = require('./chunk-LEYHQJTL.cjs');
6
6
 
7
7
 
8
8
 
9
9
  Object.defineProperty(exports, "ASTNodes", {
10
10
  enumerable: true,
11
- get: function () { return chunkQGOGK2VP_cjs.ASTNodes; }
11
+ get: function () { return chunkYCIBJDRB_cjs.ASTNodes; }
12
12
  });
13
13
  Object.defineProperty(exports, "ColorManager", {
14
14
  enumerable: true,
15
- get: function () { return chunkQGOGK2VP_cjs.ColorManager; }
15
+ get: function () { return chunkYCIBJDRB_cjs.ColorManager; }
16
16
  });
17
17
  Object.defineProperty(exports, "ColorSpecificationSchema", {
18
18
  enumerable: true,
19
- get: function () { return chunkQGOGK2VP_cjs.ColorSpecificationSchema; }
19
+ get: function () { return chunkYCIBJDRB_cjs.ColorSpecificationSchema; }
20
20
  });
21
21
  Object.defineProperty(exports, "Config", {
22
22
  enumerable: true,
23
- get: function () { return chunkQGOGK2VP_cjs.Config; }
23
+ get: function () { return chunkYCIBJDRB_cjs.Config; }
24
24
  });
25
25
  Object.defineProperty(exports, "ConstantsSpecificationSchema", {
26
26
  enumerable: true,
27
- get: function () { return chunkQGOGK2VP_cjs.ConstantsSpecificationSchema; }
27
+ get: function () { return chunkYCIBJDRB_cjs.ConstantsSpecificationSchema; }
28
28
  });
29
29
  Object.defineProperty(exports, "DEFAULT_LANGUAGE_OPTIONS", {
30
30
  enumerable: true,
31
- get: function () { return chunkQGOGK2VP_cjs.DEFAULT_LANGUAGE_OPTIONS; }
31
+ get: function () { return chunkYCIBJDRB_cjs.DEFAULT_LANGUAGE_OPTIONS; }
32
32
  });
33
33
  Object.defineProperty(exports, "FunctionSpecificationSchema", {
34
34
  enumerable: true,
35
- get: function () { return chunkQGOGK2VP_cjs.FunctionSpecificationSchema; }
35
+ get: function () { return chunkYCIBJDRB_cjs.FunctionSpecificationSchema; }
36
36
  });
37
37
  Object.defineProperty(exports, "FunctionsManager", {
38
38
  enumerable: true,
39
- get: function () { return chunkQGOGK2VP_cjs.FunctionsManager; }
39
+ get: function () { return chunkYCIBJDRB_cjs.FunctionsManager; }
40
40
  });
41
41
  Object.defineProperty(exports, "IncompleteType", {
42
42
  enumerable: true,
43
- get: function () { return chunkQGOGK2VP_cjs.IncompleteType; }
43
+ get: function () { return chunkYCIBJDRB_cjs.IncompleteType; }
44
44
  });
45
45
  Object.defineProperty(exports, "Interpreter", {
46
46
  enumerable: true,
47
- get: function () { return chunkQGOGK2VP_cjs.Interpreter; }
47
+ get: function () { return chunkYCIBJDRB_cjs.Interpreter; }
48
48
  });
49
49
  Object.defineProperty(exports, "Lexer", {
50
50
  enumerable: true,
51
- get: function () { return chunkQGOGK2VP_cjs.Lexer; }
51
+ get: function () { return chunkYCIBJDRB_cjs.Lexer; }
52
52
  });
53
53
  Object.defineProperty(exports, "ParseState", {
54
54
  enumerable: true,
55
- get: function () { return chunkQGOGK2VP_cjs.ParseState; }
55
+ get: function () { return chunkYCIBJDRB_cjs.ParseState; }
56
56
  });
57
57
  Object.defineProperty(exports, "Parser", {
58
58
  enumerable: true,
59
- get: function () { return chunkQGOGK2VP_cjs.Parser; }
59
+ get: function () { return chunkYCIBJDRB_cjs.Parser; }
60
60
  });
61
61
  Object.defineProperty(exports, "PartialBinOpNode", {
62
62
  enumerable: true,
63
- get: function () { return chunkQGOGK2VP_cjs.PartialBinOpNode; }
63
+ get: function () { return chunkYCIBJDRB_cjs.PartialBinOpNode; }
64
64
  });
65
65
  Object.defineProperty(exports, "PartialFunctionCallNode", {
66
66
  enumerable: true,
67
- get: function () { return chunkQGOGK2VP_cjs.PartialFunctionCallNode; }
67
+ get: function () { return chunkYCIBJDRB_cjs.PartialFunctionCallNode; }
68
68
  });
69
69
  Object.defineProperty(exports, "PartialParenNode", {
70
70
  enumerable: true,
71
- get: function () { return chunkQGOGK2VP_cjs.PartialParenNode; }
71
+ get: function () { return chunkYCIBJDRB_cjs.PartialParenNode; }
72
72
  });
73
73
  Object.defineProperty(exports, "PartialReferenceNode", {
74
74
  enumerable: true,
75
- get: function () { return chunkQGOGK2VP_cjs.PartialReferenceNode; }
75
+ get: function () { return chunkYCIBJDRB_cjs.PartialReferenceNode; }
76
76
  });
77
77
  Object.defineProperty(exports, "PartialStringNode", {
78
78
  enumerable: true,
79
- get: function () { return chunkQGOGK2VP_cjs.PartialStringNode; }
79
+ get: function () { return chunkYCIBJDRB_cjs.PartialStringNode; }
80
80
  });
81
81
  Object.defineProperty(exports, "PartialUnaryOpNode", {
82
82
  enumerable: true,
83
- get: function () { return chunkQGOGK2VP_cjs.PartialUnaryOpNode; }
83
+ get: function () { return chunkYCIBJDRB_cjs.PartialUnaryOpNode; }
84
84
  });
85
85
  Object.defineProperty(exports, "UnitManager", {
86
86
  enumerable: true,
87
- get: function () { return chunkQGOGK2VP_cjs.UnitManager; }
87
+ get: function () { return chunkYCIBJDRB_cjs.UnitManager; }
88
88
  });
89
89
  Object.defineProperty(exports, "UnitSpecificationSchema", {
90
90
  enumerable: true,
91
- get: function () { return chunkQGOGK2VP_cjs.UnitSpecificationSchema; }
91
+ get: function () { return chunkYCIBJDRB_cjs.UnitSpecificationSchema; }
92
92
  });
93
93
  Object.defineProperty(exports, "collectAllReferences", {
94
94
  enumerable: true,
95
- get: function () { return chunkQGOGK2VP_cjs.collectAllReferences; }
95
+ get: function () { return chunkYCIBJDRB_cjs.collectAllReferences; }
96
96
  });
97
97
  Object.defineProperty(exports, "collectReferenceNodes", {
98
98
  enumerable: true,
99
- get: function () { return chunkQGOGK2VP_cjs.collectReferenceNodes; }
99
+ get: function () { return chunkYCIBJDRB_cjs.collectReferenceNodes; }
100
100
  });
101
101
  Object.defineProperty(exports, "evaluateExpression", {
102
102
  enumerable: true,
103
- get: function () { return chunkQGOGK2VP_cjs.evaluateExpression; }
103
+ get: function () { return chunkYCIBJDRB_cjs.evaluateExpression; }
104
104
  });
105
105
  Object.defineProperty(exports, "filterAST", {
106
106
  enumerable: true,
107
- get: function () { return chunkQGOGK2VP_cjs.filterAST; }
107
+ get: function () { return chunkYCIBJDRB_cjs.filterAST; }
108
108
  });
109
109
  Object.defineProperty(exports, "hasPartialNodes", {
110
110
  enumerable: true,
111
- get: function () { return chunkQGOGK2VP_cjs.hasPartialNodes; }
111
+ get: function () { return chunkYCIBJDRB_cjs.hasPartialNodes; }
112
112
  });
113
113
  Object.defineProperty(exports, "parseExpression", {
114
114
  enumerable: true,
115
- get: function () { return chunkQGOGK2VP_cjs.parseExpression; }
115
+ get: function () { return chunkYCIBJDRB_cjs.parseExpression; }
116
116
  });
117
117
  Object.defineProperty(exports, "parseTolerantly", {
118
118
  enumerable: true,
119
- get: function () { return chunkQGOGK2VP_cjs.parseTolerantly; }
119
+ get: function () { return chunkYCIBJDRB_cjs.parseTolerantly; }
120
120
  });
121
121
  Object.defineProperty(exports, "renameReferences", {
122
122
  enumerable: true,
123
- get: function () { return chunkQGOGK2VP_cjs.renameReferences; }
123
+ get: function () { return chunkYCIBJDRB_cjs.renameReferences; }
124
124
  });
125
125
  Object.defineProperty(exports, "tokenizeTolerantly", {
126
126
  enumerable: true,
127
- get: function () { return chunkQGOGK2VP_cjs.tokenizeTolerantly; }
127
+ get: function () { return chunkYCIBJDRB_cjs.tokenizeTolerantly; }
128
128
  });
129
129
  Object.defineProperty(exports, "walkAST", {
130
130
  enumerable: true,
131
- get: function () { return chunkQGOGK2VP_cjs.walkAST; }
131
+ get: function () { return chunkYCIBJDRB_cjs.walkAST; }
132
132
  });
133
133
  Object.defineProperty(exports, "BaseSymbolType", {
134
134
  enumerable: true,
135
- get: function () { return chunkGKSWF7FF_cjs.BaseSymbolType; }
135
+ get: function () { return chunkLMGHS2NP_cjs.BaseSymbolType; }
136
136
  });
137
137
  Object.defineProperty(exports, "BooleanSymbol", {
138
138
  enumerable: true,
139
- get: function () { return chunkGKSWF7FF_cjs.BooleanSymbol; }
139
+ get: function () { return chunkLMGHS2NP_cjs.BooleanSymbol; }
140
140
  });
141
141
  Object.defineProperty(exports, "ColorErrorCode", {
142
142
  enumerable: true,
143
- get: function () { return chunkGKSWF7FF_cjs.ColorErrorCode; }
143
+ get: function () { return chunkLMGHS2NP_cjs.ColorErrorCode; }
144
144
  });
145
145
  Object.defineProperty(exports, "ColorSymbol", {
146
146
  enumerable: true,
147
- get: function () { return chunkGKSWF7FF_cjs.ColorSymbol; }
147
+ get: function () { return chunkLMGHS2NP_cjs.ColorSymbol; }
148
148
  });
149
149
  Object.defineProperty(exports, "ConfigErrorCode", {
150
150
  enumerable: true,
151
- get: function () { return chunkGKSWF7FF_cjs.ConfigErrorCode; }
151
+ get: function () { return chunkLMGHS2NP_cjs.ConfigErrorCode; }
152
152
  });
153
153
  Object.defineProperty(exports, "DictionarySymbol", {
154
154
  enumerable: true,
155
- get: function () { return chunkGKSWF7FF_cjs.DictionarySymbol; }
155
+ get: function () { return chunkLMGHS2NP_cjs.DictionarySymbol; }
156
156
  });
157
157
  Object.defineProperty(exports, "FunctionsErrorCode", {
158
158
  enumerable: true,
159
- get: function () { return chunkGKSWF7FF_cjs.FunctionsErrorCode; }
159
+ get: function () { return chunkLMGHS2NP_cjs.FunctionsErrorCode; }
160
160
  });
161
161
  Object.defineProperty(exports, "InterpreterError", {
162
162
  enumerable: true,
163
- get: function () { return chunkGKSWF7FF_cjs.InterpreterError; }
163
+ get: function () { return chunkLMGHS2NP_cjs.InterpreterError; }
164
164
  });
165
165
  Object.defineProperty(exports, "InterpreterErrorCode", {
166
166
  enumerable: true,
167
- get: function () { return chunkGKSWF7FF_cjs.InterpreterErrorCode; }
167
+ get: function () { return chunkLMGHS2NP_cjs.InterpreterErrorCode; }
168
168
  });
169
169
  Object.defineProperty(exports, "LanguageError", {
170
170
  enumerable: true,
171
- get: function () { return chunkGKSWF7FF_cjs.LanguageError; }
171
+ get: function () { return chunkLMGHS2NP_cjs.LanguageError; }
172
172
  });
173
173
  Object.defineProperty(exports, "LexerError", {
174
174
  enumerable: true,
175
- get: function () { return chunkGKSWF7FF_cjs.LexerError; }
175
+ get: function () { return chunkLMGHS2NP_cjs.LexerError; }
176
176
  });
177
177
  Object.defineProperty(exports, "LexerErrorCode", {
178
178
  enumerable: true,
179
- get: function () { return chunkGKSWF7FF_cjs.LexerErrorCode; }
179
+ get: function () { return chunkLMGHS2NP_cjs.LexerErrorCode; }
180
180
  });
181
181
  Object.defineProperty(exports, "ListSymbol", {
182
182
  enumerable: true,
183
- get: function () { return chunkGKSWF7FF_cjs.ListSymbol; }
183
+ get: function () { return chunkLMGHS2NP_cjs.ListSymbol; }
184
184
  });
185
185
  Object.defineProperty(exports, "NullSymbol", {
186
186
  enumerable: true,
187
- get: function () { return chunkGKSWF7FF_cjs.NullSymbol; }
187
+ get: function () { return chunkLMGHS2NP_cjs.NullSymbol; }
188
188
  });
189
189
  Object.defineProperty(exports, "NumberSymbol", {
190
190
  enumerable: true,
191
- get: function () { return chunkGKSWF7FF_cjs.NumberSymbol; }
191
+ get: function () { return chunkLMGHS2NP_cjs.NumberSymbol; }
192
192
  });
193
193
  Object.defineProperty(exports, "NumberWithUnitSymbol", {
194
194
  enumerable: true,
195
- get: function () { return chunkGKSWF7FF_cjs.NumberWithUnitSymbol; }
195
+ get: function () { return chunkLMGHS2NP_cjs.NumberWithUnitSymbol; }
196
196
  });
197
197
  Object.defineProperty(exports, "OperationsErrorCode", {
198
198
  enumerable: true,
199
- get: function () { return chunkGKSWF7FF_cjs.OperationsErrorCode; }
199
+ get: function () { return chunkLMGHS2NP_cjs.OperationsErrorCode; }
200
200
  });
201
201
  Object.defineProperty(exports, "ParserError", {
202
202
  enumerable: true,
203
- get: function () { return chunkGKSWF7FF_cjs.ParserError; }
203
+ get: function () { return chunkLMGHS2NP_cjs.ParserError; }
204
204
  });
205
205
  Object.defineProperty(exports, "ParserErrorCode", {
206
206
  enumerable: true,
207
- get: function () { return chunkGKSWF7FF_cjs.ParserErrorCode; }
207
+ get: function () { return chunkLMGHS2NP_cjs.ParserErrorCode; }
208
208
  });
209
209
  Object.defineProperty(exports, "ProcessorError", {
210
210
  enumerable: true,
211
- get: function () { return chunkGKSWF7FF_cjs.ProcessorError; }
211
+ get: function () { return chunkLMGHS2NP_cjs.ProcessorError; }
212
212
  });
213
213
  Object.defineProperty(exports, "ProcessorErrorCode", {
214
214
  enumerable: true,
215
- get: function () { return chunkGKSWF7FF_cjs.ProcessorErrorCode; }
215
+ get: function () { return chunkLMGHS2NP_cjs.ProcessorErrorCode; }
216
216
  });
217
217
  Object.defineProperty(exports, "StringSymbol", {
218
218
  enumerable: true,
219
- get: function () { return chunkGKSWF7FF_cjs.StringSymbol; }
219
+ get: function () { return chunkLMGHS2NP_cjs.StringSymbol; }
220
220
  });
221
221
  Object.defineProperty(exports, "SymbolsErrorCode", {
222
222
  enumerable: true,
223
- get: function () { return chunkGKSWF7FF_cjs.SymbolsErrorCode; }
223
+ get: function () { return chunkLMGHS2NP_cjs.SymbolsErrorCode; }
224
224
  });
225
225
  Object.defineProperty(exports, "TokenSymbol", {
226
226
  enumerable: true,
227
- get: function () { return chunkGKSWF7FF_cjs.TokenSymbol; }
227
+ get: function () { return chunkLMGHS2NP_cjs.TokenSymbol; }
228
228
  });
229
229
  Object.defineProperty(exports, "UnitErrorCode", {
230
230
  enumerable: true,
231
- get: function () { return chunkGKSWF7FF_cjs.UnitErrorCode; }
231
+ get: function () { return chunkLMGHS2NP_cjs.UnitErrorCode; }
232
232
  });
233
233
  Object.defineProperty(exports, "getMessage", {
234
234
  enumerable: true,
235
- get: function () { return chunkGKSWF7FF_cjs.getMessage; }
235
+ get: function () { return chunkLMGHS2NP_cjs.getMessage; }
236
236
  });
237
237
  Object.defineProperty(exports, "getResultTypeName", {
238
238
  enumerable: true,
239
- get: function () { return chunkGKSWF7FF_cjs.getResultTypeName; }
239
+ get: function () { return chunkLMGHS2NP_cjs.getResultTypeName; }
240
240
  });
241
241
  Object.defineProperty(exports, "isInterpreterError", {
242
242
  enumerable: true,
243
- get: function () { return chunkGKSWF7FF_cjs.isInterpreterError; }
243
+ get: function () { return chunkLMGHS2NP_cjs.isInterpreterError; }
244
244
  });
245
245
  Object.defineProperty(exports, "isLanguageError", {
246
246
  enumerable: true,
247
- get: function () { return chunkGKSWF7FF_cjs.isLanguageError; }
247
+ get: function () { return chunkLMGHS2NP_cjs.isLanguageError; }
248
248
  });
249
249
  Object.defineProperty(exports, "isLexerError", {
250
250
  enumerable: true,
251
- get: function () { return chunkGKSWF7FF_cjs.isLexerError; }
251
+ get: function () { return chunkLMGHS2NP_cjs.isLexerError; }
252
252
  });
253
253
  Object.defineProperty(exports, "isParserError", {
254
254
  enumerable: true,
255
- get: function () { return chunkGKSWF7FF_cjs.isParserError; }
255
+ get: function () { return chunkLMGHS2NP_cjs.isParserError; }
256
256
  });
257
257
  Object.defineProperty(exports, "isProcessorError", {
258
258
  enumerable: true,
259
- get: function () { return chunkGKSWF7FF_cjs.isProcessorError; }
259
+ get: function () { return chunkLMGHS2NP_cjs.isProcessorError; }
260
260
  });
261
261
  Object.defineProperty(exports, "jsValueToSymbolType", {
262
262
  enumerable: true,
263
- get: function () { return chunkGKSWF7FF_cjs.jsValueToSymbolType; }
263
+ get: function () { return chunkLMGHS2NP_cjs.jsValueToSymbolType; }
264
264
  });
265
265
  Object.defineProperty(exports, "serializeError", {
266
266
  enumerable: true,
267
- get: function () { return chunkGKSWF7FF_cjs.serializeError; }
267
+ get: function () { return chunkLMGHS2NP_cjs.serializeError; }
268
268
  });
269
269
  Object.defineProperty(exports, "Operations", {
270
270
  enumerable: true,
271
- get: function () { return chunkQYRJ6NSL_cjs.Operations; }
271
+ get: function () { return chunkLEYHQJTL_cjs.Operations; }
272
272
  });
273
273
  Object.defineProperty(exports, "ReservedKeyword", {
274
274
  enumerable: true,
275
- get: function () { return chunkQYRJ6NSL_cjs.ReservedKeyword; }
275
+ get: function () { return chunkLEYHQJTL_cjs.ReservedKeyword; }
276
276
  });
277
277
  Object.defineProperty(exports, "SupportedFormats", {
278
278
  enumerable: true,
279
- get: function () { return chunkQYRJ6NSL_cjs.SupportedFormats; }
279
+ get: function () { return chunkLEYHQJTL_cjs.SupportedFormats; }
280
280
  });
281
281
  Object.defineProperty(exports, "TokenType", {
282
282
  enumerable: true,
283
- get: function () { return chunkQYRJ6NSL_cjs.TokenType; }
283
+ get: function () { return chunkLEYHQJTL_cjs.TokenType; }
284
284
  });
285
285
  Object.defineProperty(exports, "UNINTERPRETED_KEYWORDS", {
286
286
  enumerable: true,
287
- get: function () { return chunkQYRJ6NSL_cjs.UNINTERPRETED_KEYWORDS; }
287
+ get: function () { return chunkLEYHQJTL_cjs.UNINTERPRETED_KEYWORDS; }
288
288
  });
289
289
  //# sourceMappingURL=interpreter.cjs.map
290
290
  //# sourceMappingURL=interpreter.cjs.map
@@ -1,7 +1,7 @@
1
- import { A as ASTNode, T as Token, O as Operations, t as TokenType, R as ReferenceRecord, e as Config, H as ReferenceNode, K as BinOpNode, M as FunctionCallNode, P as ImplicitListNode, Q as ListNode, V as NoOpNode, W as NumNode, X as StringNode, Y as UnaryOpNode } from './types-BimJex2v.cjs';
2
- export { B as BaseSymbolType, a as BooleanSymbol, C as ColorManager, b as ColorSpecification, c as ColorSpecificationSchema, d as ColorSymbol, f as ConfigOptions, g as ConstantsSpecification, h as ConstantsSpecificationSchema, D as DEFAULT_LANGUAGE_OPTIONS, i as DictionarySymbol, F as FunctionSpecification, j as FunctionSpecificationSchema, k as FunctionsManager, I as ISymbolType, J as JsValue, L as LanguageOptions, l as ListSymbol, N as NullSymbol, m as NumberSymbol, n as NumberWithUnitSymbol, o as ReferenceRecordValue, p as ReservedKeyword, S as StringSymbol, q as SupportedFormats, r as SymbolMetadata, s as TokenSymbol, U as UNINTERPRETED_KEYWORDS, u as UnitManager, v as UnitSpecification, w as UnitSpecificationSchema, x as collectReferenceNodes, y as filterAST, z as getResultTypeName, E as jsValueToSymbolType, G as walkAST } from './types-BimJex2v.cjs';
3
- import { A as AllErrorCodes, L as LanguageError, T as TolerantParseResult } from './interpreter-CP7CNwDa.cjs';
4
- export { C as ColorErrorCode, c as ColorErrorData, d as ConfigErrorCode, e as ConfigErrorData, E as ErrorOptions, F as FunctionsErrorCode, f as FunctionsErrorData, g as IncompleteInfo, h as IncompleteType, i as Interpreter, I as InterpreterError, j as InterpreterErrorCode, k as InterpreterErrorData, l as InterpreterResult, m as Lexer, a as LexerError, n as LexerErrorCode, o as LexerErrorData, O as OperationsErrorCode, p as OperationsErrorData, q as ParseState, r as Parser, b as ParserError, s as ParserErrorCode, t as ParserErrorData, P as ProcessorError, u as ProcessorErrorCode, v as ProcessorErrorData, S as SerializedError, w as SymbolsErrorCode, x as SymbolsErrorData, U as UnitErrorCode, y as UnitErrorData, z as isInterpreterError, B as isLanguageError, D as isLexerError, G as isParserError, H as isProcessorError, J as parseExpression, K as serializeError } from './interpreter-CP7CNwDa.cjs';
1
+ import { A as ASTNode, T as Token, O as Operations, t as TokenType, R as ReferenceRecord, e as Config, H as ReferenceNode, K as BinOpNode, M as FunctionCallNode, P as ImplicitListNode, Q as ListNode, V as NoOpNode, W as NumNode, X as StringNode, Y as UnaryOpNode } from './types-EB8V9c46.cjs';
2
+ export { B as BaseSymbolType, a as BooleanSymbol, C as ColorManager, b as ColorSpecification, c as ColorSpecificationSchema, d as ColorSymbol, f as ConfigOptions, g as ConstantsSpecification, h as ConstantsSpecificationSchema, D as DEFAULT_LANGUAGE_OPTIONS, i as DictionarySymbol, F as FunctionSpecification, j as FunctionSpecificationSchema, k as FunctionsManager, I as ISymbolType, J as JsValue, L as LanguageOptions, l as ListSymbol, N as NullSymbol, m as NumberSymbol, n as NumberWithUnitSymbol, o as ReferenceRecordValue, p as ReservedKeyword, S as StringSymbol, q as SupportedFormats, r as SymbolMetadata, s as TokenSymbol, U as UNINTERPRETED_KEYWORDS, u as UnitManager, v as UnitSpecification, w as UnitSpecificationSchema, x as collectReferenceNodes, y as filterAST, z as getResultTypeName, E as jsValueToSymbolType, G as walkAST } from './types-EB8V9c46.cjs';
3
+ import { A as AllErrorCodes, L as LanguageError, T as TolerantParseResult } from './interpreter-6QwMkUqD.cjs';
4
+ export { C as ColorErrorCode, c as ColorErrorData, d as ConfigErrorCode, e as ConfigErrorData, E as ErrorOptions, F as FunctionsErrorCode, f as FunctionsErrorData, g as IncompleteInfo, h as IncompleteType, i as Interpreter, I as InterpreterError, j as InterpreterErrorCode, k as InterpreterErrorData, l as InterpreterResult, m as Lexer, a as LexerError, n as LexerErrorCode, o as LexerErrorData, O as OperationsErrorCode, p as OperationsErrorData, q as ParseState, r as Parser, b as ParserError, s as ParserErrorCode, t as ParserErrorData, P as ProcessorError, u as ProcessorErrorCode, v as ProcessorErrorData, S as SerializedError, w as SymbolsErrorCode, x as SymbolsErrorData, U as UnitErrorCode, y as UnitErrorData, z as isInterpreterError, B as isLanguageError, D as isLexerError, G as isParserError, H as isProcessorError, J as parseExpression, K as serializeError } from './interpreter-6QwMkUqD.cjs';
5
5
  import '@tokens-studio/schema-validation';
6
6
 
7
7
  /**
@@ -1,7 +1,7 @@
1
- import { A as ASTNode, T as Token, O as Operations, t as TokenType, R as ReferenceRecord, e as Config, H as ReferenceNode, K as BinOpNode, M as FunctionCallNode, P as ImplicitListNode, Q as ListNode, V as NoOpNode, W as NumNode, X as StringNode, Y as UnaryOpNode } from './types-BimJex2v.js';
2
- export { B as BaseSymbolType, a as BooleanSymbol, C as ColorManager, b as ColorSpecification, c as ColorSpecificationSchema, d as ColorSymbol, f as ConfigOptions, g as ConstantsSpecification, h as ConstantsSpecificationSchema, D as DEFAULT_LANGUAGE_OPTIONS, i as DictionarySymbol, F as FunctionSpecification, j as FunctionSpecificationSchema, k as FunctionsManager, I as ISymbolType, J as JsValue, L as LanguageOptions, l as ListSymbol, N as NullSymbol, m as NumberSymbol, n as NumberWithUnitSymbol, o as ReferenceRecordValue, p as ReservedKeyword, S as StringSymbol, q as SupportedFormats, r as SymbolMetadata, s as TokenSymbol, U as UNINTERPRETED_KEYWORDS, u as UnitManager, v as UnitSpecification, w as UnitSpecificationSchema, x as collectReferenceNodes, y as filterAST, z as getResultTypeName, E as jsValueToSymbolType, G as walkAST } from './types-BimJex2v.js';
3
- import { A as AllErrorCodes, L as LanguageError, T as TolerantParseResult } from './interpreter-DNmBc--s.js';
4
- export { C as ColorErrorCode, c as ColorErrorData, d as ConfigErrorCode, e as ConfigErrorData, E as ErrorOptions, F as FunctionsErrorCode, f as FunctionsErrorData, g as IncompleteInfo, h as IncompleteType, i as Interpreter, I as InterpreterError, j as InterpreterErrorCode, k as InterpreterErrorData, l as InterpreterResult, m as Lexer, a as LexerError, n as LexerErrorCode, o as LexerErrorData, O as OperationsErrorCode, p as OperationsErrorData, q as ParseState, r as Parser, b as ParserError, s as ParserErrorCode, t as ParserErrorData, P as ProcessorError, u as ProcessorErrorCode, v as ProcessorErrorData, S as SerializedError, w as SymbolsErrorCode, x as SymbolsErrorData, U as UnitErrorCode, y as UnitErrorData, z as isInterpreterError, B as isLanguageError, D as isLexerError, G as isParserError, H as isProcessorError, J as parseExpression, K as serializeError } from './interpreter-DNmBc--s.js';
1
+ import { A as ASTNode, T as Token, O as Operations, t as TokenType, R as ReferenceRecord, e as Config, H as ReferenceNode, K as BinOpNode, M as FunctionCallNode, P as ImplicitListNode, Q as ListNode, V as NoOpNode, W as NumNode, X as StringNode, Y as UnaryOpNode } from './types-EB8V9c46.js';
2
+ export { B as BaseSymbolType, a as BooleanSymbol, C as ColorManager, b as ColorSpecification, c as ColorSpecificationSchema, d as ColorSymbol, f as ConfigOptions, g as ConstantsSpecification, h as ConstantsSpecificationSchema, D as DEFAULT_LANGUAGE_OPTIONS, i as DictionarySymbol, F as FunctionSpecification, j as FunctionSpecificationSchema, k as FunctionsManager, I as ISymbolType, J as JsValue, L as LanguageOptions, l as ListSymbol, N as NullSymbol, m as NumberSymbol, n as NumberWithUnitSymbol, o as ReferenceRecordValue, p as ReservedKeyword, S as StringSymbol, q as SupportedFormats, r as SymbolMetadata, s as TokenSymbol, U as UNINTERPRETED_KEYWORDS, u as UnitManager, v as UnitSpecification, w as UnitSpecificationSchema, x as collectReferenceNodes, y as filterAST, z as getResultTypeName, E as jsValueToSymbolType, G as walkAST } from './types-EB8V9c46.js';
3
+ import { A as AllErrorCodes, L as LanguageError, T as TolerantParseResult } from './interpreter-v7WiwSP9.js';
4
+ export { C as ColorErrorCode, c as ColorErrorData, d as ConfigErrorCode, e as ConfigErrorData, E as ErrorOptions, F as FunctionsErrorCode, f as FunctionsErrorData, g as IncompleteInfo, h as IncompleteType, i as Interpreter, I as InterpreterError, j as InterpreterErrorCode, k as InterpreterErrorData, l as InterpreterResult, m as Lexer, a as LexerError, n as LexerErrorCode, o as LexerErrorData, O as OperationsErrorCode, p as OperationsErrorData, q as ParseState, r as Parser, b as ParserError, s as ParserErrorCode, t as ParserErrorData, P as ProcessorError, u as ProcessorErrorCode, v as ProcessorErrorData, S as SerializedError, w as SymbolsErrorCode, x as SymbolsErrorData, U as UnitErrorCode, y as UnitErrorData, z as isInterpreterError, B as isLanguageError, D as isLexerError, G as isParserError, H as isProcessorError, J as parseExpression, K as serializeError } from './interpreter-v7WiwSP9.js';
5
5
  import '@tokens-studio/schema-validation';
6
6
 
7
7
  /**
@@ -1,5 +1,5 @@
1
- export { ASTNodes, ColorManager, ColorSpecificationSchema, Config, ConstantsSpecificationSchema, DEFAULT_LANGUAGE_OPTIONS, FunctionSpecificationSchema, FunctionsManager, IncompleteType, Interpreter, Lexer, ParseState, Parser, PartialBinOpNode, PartialFunctionCallNode, PartialParenNode, PartialReferenceNode, PartialStringNode, PartialUnaryOpNode, UnitManager, UnitSpecificationSchema, collectAllReferences, collectReferenceNodes, evaluateExpression, filterAST, hasPartialNodes, parseExpression, parseTolerantly, renameReferences, tokenizeTolerantly, walkAST } from './chunk-UYVHWJIC.js';
2
- export { BaseSymbolType, BooleanSymbol, ColorErrorCode, ColorSymbol, ConfigErrorCode, DictionarySymbol, FunctionsErrorCode, InterpreterError, InterpreterErrorCode, LanguageError, LexerError, LexerErrorCode, ListSymbol, NullSymbol, NumberSymbol, NumberWithUnitSymbol, OperationsErrorCode, ParserError, ParserErrorCode, ProcessorError, ProcessorErrorCode, StringSymbol, SymbolsErrorCode, TokenSymbol, UnitErrorCode, getMessage, getResultTypeName, isInterpreterError, isLanguageError, isLexerError, isParserError, isProcessorError, jsValueToSymbolType, serializeError } from './chunk-LI2D53SH.js';
3
- export { Operations, ReservedKeyword, SupportedFormats, TokenType, UNINTERPRETED_KEYWORDS } from './chunk-YD3MIYOO.js';
1
+ export { ASTNodes, ColorManager, ColorSpecificationSchema, Config, ConstantsSpecificationSchema, DEFAULT_LANGUAGE_OPTIONS, FunctionSpecificationSchema, FunctionsManager, IncompleteType, Interpreter, Lexer, ParseState, Parser, PartialBinOpNode, PartialFunctionCallNode, PartialParenNode, PartialReferenceNode, PartialStringNode, PartialUnaryOpNode, UnitManager, UnitSpecificationSchema, collectAllReferences, collectReferenceNodes, evaluateExpression, filterAST, hasPartialNodes, parseExpression, parseTolerantly, renameReferences, tokenizeTolerantly, walkAST } from './chunk-RWXDOZAS.js';
2
+ export { BaseSymbolType, BooleanSymbol, ColorErrorCode, ColorSymbol, ConfigErrorCode, DictionarySymbol, FunctionsErrorCode, InterpreterError, InterpreterErrorCode, LanguageError, LexerError, LexerErrorCode, ListSymbol, NullSymbol, NumberSymbol, NumberWithUnitSymbol, OperationsErrorCode, ParserError, ParserErrorCode, ProcessorError, ProcessorErrorCode, StringSymbol, SymbolsErrorCode, TokenSymbol, UnitErrorCode, getMessage, getResultTypeName, isInterpreterError, isLanguageError, isLexerError, isParserError, isProcessorError, jsValueToSymbolType, serializeError } from './chunk-LSTH2XJ4.js';
3
+ export { Operations, ReservedKeyword, SupportedFormats, TokenType, UNINTERPRETED_KEYWORDS } from './chunk-ODVWXGOM.js';
4
4
  //# sourceMappingURL=interpreter.js.map
5
5
  //# sourceMappingURL=interpreter.js.map
@@ -1,8 +1,8 @@
1
1
  'use strict';
2
2
 
3
- var chunkQGOGK2VP_cjs = require('./chunk-QGOGK2VP.cjs');
4
- require('./chunk-GKSWF7FF.cjs');
5
- var chunkQYRJ6NSL_cjs = require('./chunk-QYRJ6NSL.cjs');
3
+ var chunkYCIBJDRB_cjs = require('./chunk-YCIBJDRB.cjs');
4
+ require('./chunk-LMGHS2NP.cjs');
5
+ var chunkLEYHQJTL_cjs = require('./chunk-LEYHQJTL.cjs');
6
6
  var fs = require('fs/promises');
7
7
  var path = require('path');
8
8
  var yauzl = require('yauzl');
@@ -40,11 +40,11 @@ function parseJson(content, fileName) {
40
40
  );
41
41
  }
42
42
  }
43
- chunkQYRJ6NSL_cjs.__name(parseJson, "parseJson");
43
+ chunkLEYHQJTL_cjs.__name(parseJson, "parseJson");
44
44
  function removeJsonExtension(fileName) {
45
45
  return fileName.replace(/\.json$/i, "");
46
46
  }
47
- chunkQYRJ6NSL_cjs.__name(removeJsonExtension, "removeJsonExtension");
47
+ chunkLEYHQJTL_cjs.__name(removeJsonExtension, "removeJsonExtension");
48
48
  async function loadZipToMemory(zipPath) {
49
49
  return new Promise((resolve, reject) => {
50
50
  const filesContent = {};
@@ -103,7 +103,7 @@ async function loadZipToMemory(zipPath) {
103
103
  });
104
104
  });
105
105
  }
106
- chunkQYRJ6NSL_cjs.__name(loadZipToMemory, "loadZipToMemory");
106
+ chunkLEYHQJTL_cjs.__name(loadZipToMemory, "loadZipToMemory");
107
107
  function detectFileType(filePath, stats) {
108
108
  if (stats.isDirectory()) {
109
109
  return "DIRECTORY" /* DIRECTORY */;
@@ -113,7 +113,7 @@ function detectFileType(filePath, stats) {
113
113
  if (ext === ".json") return "JSON" /* JSON */;
114
114
  throw new Error(`Unsupported file type: ${ext}`);
115
115
  }
116
- chunkQYRJ6NSL_cjs.__name(detectFileType, "detectFileType");
116
+ chunkLEYHQJTL_cjs.__name(detectFileType, "detectFileType");
117
117
  async function collectJsonFiles(filePath) {
118
118
  const fileStats = await fs__default.default.stat(filePath);
119
119
  const fileType = detectFileType(filePath, fileStats);
@@ -145,7 +145,7 @@ async function collectJsonFiles(filePath) {
145
145
  }
146
146
  }
147
147
  }
148
- chunkQYRJ6NSL_cjs.__name(collectJsonFiles, "collectJsonFiles");
148
+ chunkLEYHQJTL_cjs.__name(collectJsonFiles, "collectJsonFiles");
149
149
 
150
150
  // src/processor/utils/normalizer.ts
151
151
  function normalizeJsonFiles(jsonFiles) {
@@ -165,7 +165,7 @@ function normalizeJsonFiles(jsonFiles) {
165
165
  }
166
166
  return jsonFiles;
167
167
  }
168
- chunkQYRJ6NSL_cjs.__name(normalizeJsonFiles, "normalizeJsonFiles");
168
+ chunkLEYHQJTL_cjs.__name(normalizeJsonFiles, "normalizeJsonFiles");
169
169
 
170
170
  // src/processor/processFiles.ts
171
171
  async function processTokensFromFiles({
@@ -175,16 +175,16 @@ async function processTokensFromFiles({
175
175
  activeTheme,
176
176
  builder
177
177
  }) {
178
- await chunkQGOGK2VP_cjs.fetchAndRegisterSchemas(schemas ?? []);
178
+ await chunkYCIBJDRB_cjs.fetchAndRegisterSchemas(schemas ?? []);
179
179
  const jsonFiles = await collectJsonFiles(inputPath);
180
180
  const normalizedFiles = normalizeJsonFiles(jsonFiles);
181
- return chunkQGOGK2VP_cjs.processTokenSets(normalizedFiles, {
181
+ return chunkYCIBJDRB_cjs.processTokenSets(normalizedFiles, {
182
182
  activeSets,
183
183
  activeTheme,
184
184
  builder
185
185
  });
186
186
  }
187
- chunkQYRJ6NSL_cjs.__name(processTokensFromFiles, "processTokensFromFiles");
187
+ chunkLEYHQJTL_cjs.__name(processTokensFromFiles, "processTokensFromFiles");
188
188
 
189
189
  exports.processTokensFromFiles = processTokensFromFiles;
190
190
  //# sourceMappingURL=processor-node.cjs.map
@@ -1,6 +1,6 @@
1
- import { P as ProcessFilesOptions, a as ProcessResult } from './types-DsJuwrq3.cjs';
2
- import './interpreter-CP7CNwDa.cjs';
3
- import './types-BimJex2v.cjs';
1
+ import { P as ProcessFilesOptions, a as ProcessResult } from './types-cFwP43uv.cjs';
2
+ import './interpreter-6QwMkUqD.cjs';
3
+ import './types-EB8V9c46.cjs';
4
4
  import '@tokens-studio/schema-validation';
5
5
 
6
6
  /**
@@ -1,6 +1,6 @@
1
- import { P as ProcessFilesOptions, a as ProcessResult } from './types-DHgmzR1Z.js';
2
- import './interpreter-DNmBc--s.js';
3
- import './types-BimJex2v.js';
1
+ import { P as ProcessFilesOptions, a as ProcessResult } from './types-BI0AZ4Ej.js';
2
+ import './interpreter-v7WiwSP9.js';
3
+ import './types-EB8V9c46.js';
4
4
  import '@tokens-studio/schema-validation';
5
5
 
6
6
  /**
@@ -1,6 +1,6 @@
1
- import { fetchAndRegisterSchemas, processTokenSets } from './chunk-UYVHWJIC.js';
2
- import './chunk-LI2D53SH.js';
3
- import { __name } from './chunk-YD3MIYOO.js';
1
+ import { fetchAndRegisterSchemas, processTokenSets } from './chunk-RWXDOZAS.js';
2
+ import './chunk-LSTH2XJ4.js';
3
+ import { __name } from './chunk-ODVWXGOM.js';
4
4
  import fs from 'fs/promises';
5
5
  import path from 'path';
6
6
  import * as yauzl from 'yauzl';