agency-lang 0.0.24 → 0.0.25

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.
@@ -330,7 +330,7 @@ export class TypeScriptGenerator extends BaseGenerator {
330
330
  }
331
331
  else {
332
332
  // Interpolation segment
333
- stringParts.push(`\${${segment.variableName}}`);
333
+ stringParts.push("${" + segment.variableName + "}");
334
334
  }
335
335
  }
336
336
  return "`" + stringParts.join("") + "`";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "agency-lang",
3
- "version": "0.0.24",
3
+ "version": "0.0.25",
4
4
  "description": "The Agency language",
5
5
  "main": "lib/index.js",
6
6
  "scripts": {
@@ -56,4 +56,4 @@
56
56
  "typescript": "^5.9.3",
57
57
  "vitest": "^4.0.16"
58
58
  }
59
- }
59
+ }