@powerlines/plugin-alloy 0.26.204 → 0.26.205

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.
@@ -5,8 +5,8 @@ const require_core_components_source_file = require('./source-file.cjs');
5
5
  let _stryke_path_file_path_fns = require("@stryke/path/file-path-fns");
6
6
  let _alloy_js_core_jsx_runtime = require("@alloy-js/core/jsx-runtime");
7
7
  let _alloy_js_core = require("@alloy-js/core");
8
- let _stryke_path_append = require("@stryke/path/append");
9
8
  let _stryke_path_replace = require("@stryke/path/replace");
9
+ let _stryke_path_append = require("@stryke/path/append");
10
10
  let defu = require("defu");
11
11
  defu = require_runtime.__toESM(defu);
12
12
 
@@ -3,8 +3,8 @@ import { SourceFile } from "./source-file.mjs";
3
3
  import { findFileExtensionSafe, hasFileExtension } from "@stryke/path/file-path-fns";
4
4
  import { createComponent, mergeProps } from "@alloy-js/core/jsx-runtime";
5
5
  import { computed, splitProps } from "@alloy-js/core";
6
- import { appendExtension, appendPath } from "@stryke/path/append";
7
6
  import { replaceExtension, replacePath } from "@stryke/path/replace";
7
+ import { appendExtension, appendPath } from "@stryke/path/append";
8
8
  import defu from "defu";
9
9
 
10
10
  //#region src/core/components/infrastructure-file.tsx
package/dist/render.cjs CHANGED
@@ -4,6 +4,9 @@ require('./core/index.cjs');
4
4
  let _stryke_path_file_path_fns = require("@stryke/path/file-path-fns");
5
5
  let _alloy_js_core_jsx_runtime = require("@alloy-js/core/jsx-runtime");
6
6
  let _alloy_js_core = require("@alloy-js/core");
7
+ let _stryke_helpers_noop = require("@stryke/helpers/noop");
8
+ let _stryke_path_replace = require("@stryke/path/replace");
9
+ let _stryke_string_format_list = require("@stryke/string-format/list");
7
10
 
8
11
  //#region src/render.tsx
9
12
  /**
@@ -27,9 +30,14 @@ async function render(context, children) {
27
30
  meta,
28
31
  children
29
32
  }));
30
- if (!Object.keys(output).length) context.debug("No output files were rendered by Alloy-js component templates.");
33
+ const files = [];
34
+ await (0, _alloy_js_core.traverseOutput)(output, {
35
+ visitDirectory: _stryke_helpers_noop.noop,
36
+ visitFile: (file) => files.push(file)
37
+ });
38
+ if (!files.length) context.debug("No output files were rendered by the Alloy-js components.");
31
39
  else {
32
- context.debug(`Processing ${Object.keys(output).length} rendered output files from Alloy-js component templates.`);
40
+ context.debug(`Rendering ${files.length} output files from Alloy-js components: ${(0, _stryke_string_format_list.list)(files.map((f) => (0, _stryke_path_replace.replacePath)(f.path, context.config.cwd)))}.`);
33
41
  await (0, _alloy_js_core.traverseOutput)(output, {
34
42
  visitDirectory: (directory) => {
35
43
  if (context.fs.existsSync(directory.path)) return;
@@ -1 +1 @@
1
- {"version":3,"file":"render.d.cts","names":[],"sources":["../src/render.tsx"],"mappings":";;;;;;AA4CA;;;;;;;;;;;;iBAAsB,MAAA,kBAAwB,aAAA,EAC5C,OAAA,EAAS,QAAA,EACT,QAAA,EAAU,QAAA,GAAQ,OAAA;;;;;AAAA;AA2FpB;;;;;;;;;;iBAAgB,YAAA,kBAA8B,aAAA,EAC5C,OAAA,EAAS,QAAA,EACT,QAAA,EAAU,QAAA,EACV,OAAA,GAAU,gBAAA"}
1
+ {"version":3,"file":"render.d.cts","names":[],"sources":["../src/render.tsx"],"mappings":";;;;;;AAgDA;;;;;;;;;;;;iBAAsB,MAAA,kBAAwB,aAAA,EAC5C,OAAA,EAAS,QAAA,EACT,QAAA,EAAU,QAAA,GAAQ,OAAA;;;;;AAAA;AA+FpB;;;;;;;;;;iBAAgB,YAAA,kBAA8B,aAAA,EAC5C,OAAA,EAAS,QAAA,EACT,QAAA,EAAU,QAAA,EACV,OAAA,GAAU,gBAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"render.d.mts","names":[],"sources":["../src/render.tsx"],"mappings":";;;;;;AA4CA;;;;;;;;;;;;iBAAsB,MAAA,kBAAwB,aAAA,EAC5C,OAAA,EAAS,QAAA,EACT,QAAA,EAAU,QAAA,GAAQ,OAAA;;;;;AAAA;AA2FpB;;;;;;;;;;iBAAgB,YAAA,kBAA8B,aAAA,EAC5C,OAAA,EAAS,QAAA,EACT,QAAA,EAAU,QAAA,EACV,OAAA,GAAU,gBAAA"}
1
+ {"version":3,"file":"render.d.mts","names":[],"sources":["../src/render.tsx"],"mappings":";;;;;;AAgDA;;;;;;;;;;;;iBAAsB,MAAA,kBAAwB,aAAA,EAC5C,OAAA,EAAS,QAAA,EACT,QAAA,EAAU,QAAA,GAAQ,OAAA;;;;;AAAA;AA+FpB;;;;;;;;;;iBAAgB,YAAA,kBAA8B,aAAA,EAC5C,OAAA,EAAS,QAAA,EACT,QAAA,EAAU,QAAA,EACV,OAAA,GAAU,gBAAA"}
package/dist/render.mjs CHANGED
@@ -3,6 +3,9 @@ import "./core/index.mjs";
3
3
  import { findFileExtension } from "@stryke/path/file-path-fns";
4
4
  import { createComponent } from "@alloy-js/core/jsx-runtime";
5
5
  import { printTree, renderAsync, renderTree, traverseOutput } from "@alloy-js/core";
6
+ import { noop } from "@stryke/helpers/noop";
7
+ import { replacePath } from "@stryke/path/replace";
8
+ import { list } from "@stryke/string-format/list";
6
9
 
7
10
  //#region src/render.tsx
8
11
  /**
@@ -26,9 +29,14 @@ async function render(context, children) {
26
29
  meta,
27
30
  children
28
31
  }));
29
- if (!Object.keys(output).length) context.debug("No output files were rendered by Alloy-js component templates.");
32
+ const files = [];
33
+ await traverseOutput(output, {
34
+ visitDirectory: noop,
35
+ visitFile: (file) => files.push(file)
36
+ });
37
+ if (!files.length) context.debug("No output files were rendered by the Alloy-js components.");
30
38
  else {
31
- context.debug(`Processing ${Object.keys(output).length} rendered output files from Alloy-js component templates.`);
39
+ context.debug(`Rendering ${files.length} output files from Alloy-js components: ${list(files.map((f) => replacePath(f.path, context.config.cwd)))}.`);
32
40
  await traverseOutput(output, {
33
41
  visitDirectory: (directory) => {
34
42
  if (context.fs.existsSync(directory.path)) return;
@@ -1 +1 @@
1
- {"version":3,"file":"render.mjs","names":[],"sources":["../src/render.tsx"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport {\n Children,\n printTree,\n PrintTreeOptions,\n renderAsync,\n renderTree,\n traverseOutput\n} from \"@alloy-js/core\";\nimport { findFileExtension } from \"@stryke/path/file-path-fns\";\nimport { PluginContext } from \"powerlines\";\nimport { MetaItem, Output } from \"./core\";\n\n/**\n * A function to render children components within the [Alloy](https://alloy-framework.github.io) context, and write any saved content to the file system.\n *\n * @example\n * ```tsx\n * import { render } from \"@powerlines/plugin-alloy/render\";\n *\n * await render(context, <> ... </>);\n * ```\n *\n * @param context - The Powerlines plugin context.\n * @param children - The children components to render.\n * @returns A promise that resolves when rendering is complete.\n */\nexport async function render<TContext extends PluginContext>(\n context: TContext,\n children: Children\n) {\n const meta = {} as Record<string, MetaItem>;\n const output = await renderAsync(\n <Output context={context} meta={meta}>\n {children}\n </Output>\n );\n\n if (!Object.keys(output).length) {\n context.debug(\n \"No output files were rendered by Alloy-js component templates.\"\n );\n } else {\n context.debug(\n `Processing ${\n Object.keys(output).length\n } rendered output files from Alloy-js component templates.`\n );\n\n await traverseOutput(output, {\n visitDirectory: directory => {\n if (context.fs.existsSync(directory.path)) {\n return;\n }\n\n context.fs.mkdirSync(directory.path);\n },\n visitFile: file => {\n if (\"contents\" in file) {\n const metadata = meta[file.path] ?? {};\n if (metadata.kind === \"builtin\") {\n if (!metadata.id) {\n throw new Error(\n `Built-in file \"${\n file.path\n }\" is missing its ID in the render metadata.`\n );\n }\n\n context.emitBuiltinSync(file.contents, metadata.id, {\n skipFormat: metadata.skipFormat,\n storage: metadata.storage,\n extension: findFileExtension(file.path)\n });\n } else if (metadata.kind === \"entry\") {\n context.emitEntrySync(file.contents, file.path, {\n skipFormat: metadata.skipFormat,\n storage: metadata.storage,\n ...(metadata.typeDefinition ?? {})\n });\n } else if (metadata.kind === \"infrastructure\") {\n if (!metadata.id) {\n throw new Error(\n `Infrastructure file \"${\n file.path\n }\" is missing its ID in the render metadata.`\n );\n }\n\n context.emitInfrastructureSync(file.contents, metadata.id, {\n skipFormat: metadata.skipFormat,\n storage: metadata.storage,\n extension: findFileExtension(file.path)\n });\n } else {\n context.emitSync(file.contents, file.path, metadata);\n }\n } else {\n context.fs.copySync(file.sourcePath, file.path);\n }\n }\n });\n }\n}\n\n/**\n * A function to render children components within the [Alloy](https://alloy-framework.github.io) context and return the rendered output as a string.\n *\n * @example\n * ```tsx\n * import { renderString } from \"@powerlines/plugin-alloy/render\";\n *\n * const output = await renderString(context, <> ... </>);\n * ```\n *\n * @param context - The Powerlines plugin context.\n * @param children - The children components to render.\n * @param options - Optional print tree options.\n * @returns The rendered output as a string.\n */\nexport function renderString<TContext extends PluginContext>(\n context: TContext,\n children: Children,\n options?: PrintTreeOptions\n) {\n const tree = renderTree(<Output context={context}>{children}</Output>);\n\n return printTree(tree, options);\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;AAsCA,eAAK,OAAA,SAAA,UAAA;CACJ,MAAA,OAAA,CAAA;CACC,MAAE,SAAa,MAAM,YAAY,gBAAc,UAAA;EACvC;EACN;EACF;CACF,CAAA,CAAA;CACE,IAAA,CAAA,OAAS,KAAQ,MAAA,EAAA,QACjB,QAAU,MAAA,gEAAA;MACV;EACA,QAAU,MAAM,cAAU,OAAQ,KAAQ,MAAC,EAAA,OAAA,0DAAA;EAC3C,MAAM,eAAe,QAAA;GAClB,iBAAgB,cAAc;IAC5B,IAAA,QAAQ,GAAA,WAAA,UAAA,IAAA,GACT;;GAGA;GACF,YAAa,SAAA;IACV,IAAG,cAAa,MAAK;KACvB,MAAA,WAAA,KAAA,KAAA,SAAA,CAAA;KACI,IAAA,SAAA,SAAA,WAAA;MACG,IAAA,CAAK,SAAA,IACV,MAAY,IAAA,MAAA,kBAAA,KAAA,KAAA,4CAAA;MAEX,QAAS,gBAAkB,KAAM,UAAG,SAAU,IAAU;OAC3D,YAAA,SAAA;;OAEK,WAAe,kBAAQ,KAAA,IAAA;MAC3B,CAAA;KACI,OAAE,IAAQ,SAAG,SAAW,SACxB,QAAM,cAAA,KAAA,UAAA,KAAA,MAAA;MACR,YAAA,SAAA;;MAEA,GAAU,SAAC,kBAAyB,CAAA;KACrC,CAAA;UACU,IAAI,SAAI,SAAA,kBAAA;MACb,IAAC,CAAA,SAAa,IAChB,MAAM,IAAQ,MAAG,wBAAqB,KAAA,KAAA,4CAAA;MAEpC,QAAK,uBAAa,KAAA,UAAA,SAAA,IAAA;OAChB,YAAU,SAAK;OACf,SAAS,SAAS;OAClB,WAAS,kBAAA,KAAA,IAAA;MACX,CAAC;KACH,OACE,QAAA,SAAA,KAAA,UAAA,KAAA,MAAA,QAAA;IAEJ,OACE,QAAI,GAAA,SAAY,KAAS,YAAU,KAAA,IAAA;GAEvC;EACF,CAAC;CACH;AACF;;;;;;;;;;;;;;;;AAiBA,SAAc,aAAW,SAAA,UAAuB,SAAI;CAKlD,OAAO,UAJK,WAAA,gBAAA,UAAA;EACF;EACA;CACV,CAAC,CACY,GAAA,OAAA;AACf"}
1
+ {"version":3,"file":"render.mjs","names":[],"sources":["../src/render.tsx"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport {\n Children,\n printTree,\n PrintTreeOptions,\n renderAsync,\n renderTree,\n traverseOutput\n} from \"@alloy-js/core\";\nimport { noop } from \"@stryke/helpers/noop\";\nimport { findFileExtension } from \"@stryke/path/file-path-fns\";\nimport { replacePath } from \"@stryke/path/replace\";\nimport { list } from \"@stryke/string-format/list\";\nimport { PluginContext } from \"powerlines\";\nimport { MetaItem, Output } from \"./core\";\nimport { OutputFile } from \"./types\";\n\n/**\n * A function to render children components within the [Alloy](https://alloy-framework.github.io) context, and write any saved content to the file system.\n *\n * @example\n * ```tsx\n * import { render } from \"@powerlines/plugin-alloy/render\";\n *\n * await render(context, <> ... </>);\n * ```\n *\n * @param context - The Powerlines plugin context.\n * @param children - The children components to render.\n * @returns A promise that resolves when rendering is complete.\n */\nexport async function render<TContext extends PluginContext>(\n context: TContext,\n children: Children\n) {\n const meta = {} as Record<string, MetaItem>;\n const output = await renderAsync(\n <Output context={context} meta={meta}>\n {children}\n </Output>\n );\n\n const files = [] as OutputFile[];\n await traverseOutput(output, {\n visitDirectory: noop,\n visitFile: file => files.push(file)\n });\n\n if (!files.length) {\n context.debug(\"No output files were rendered by the Alloy-js components.\");\n } else {\n context.debug(\n `Rendering ${files.length} output files from Alloy-js components: ${list(\n files.map(f => replacePath(f.path, context.config.cwd))\n )}.`\n );\n\n await traverseOutput(output, {\n visitDirectory: directory => {\n if (context.fs.existsSync(directory.path)) {\n return;\n }\n\n context.fs.mkdirSync(directory.path);\n },\n visitFile: file => {\n if (\"contents\" in file) {\n const metadata = meta[file.path] ?? {};\n if (metadata.kind === \"builtin\") {\n if (!metadata.id) {\n throw new Error(\n `Built-in file \"${\n file.path\n }\" is missing its ID in the render metadata.`\n );\n }\n\n context.emitBuiltinSync(file.contents, metadata.id, {\n skipFormat: metadata.skipFormat,\n storage: metadata.storage,\n extension: findFileExtension(file.path)\n });\n } else if (metadata.kind === \"entry\") {\n context.emitEntrySync(file.contents, file.path, {\n skipFormat: metadata.skipFormat,\n storage: metadata.storage,\n ...(metadata.typeDefinition ?? {})\n });\n } else if (metadata.kind === \"infrastructure\") {\n if (!metadata.id) {\n throw new Error(\n `Infrastructure file \"${\n file.path\n }\" is missing its ID in the render metadata.`\n );\n }\n\n context.emitInfrastructureSync(file.contents, metadata.id, {\n skipFormat: metadata.skipFormat,\n storage: metadata.storage,\n extension: findFileExtension(file.path)\n });\n } else {\n context.emitSync(file.contents, file.path, metadata);\n }\n } else {\n context.fs.copySync(file.sourcePath, file.path);\n }\n }\n });\n }\n}\n\n/**\n * A function to render children components within the [Alloy](https://alloy-framework.github.io) context and return the rendered output as a string.\n *\n * @example\n * ```tsx\n * import { renderString } from \"@powerlines/plugin-alloy/render\";\n *\n * const output = await renderString(context, <> ... </>);\n * ```\n *\n * @param context - The Powerlines plugin context.\n * @param children - The children components to render.\n * @param options - Optional print tree options.\n * @returns The rendered output as a string.\n */\nexport function renderString<TContext extends PluginContext>(\n context: TContext,\n children: Children,\n options?: PrintTreeOptions\n) {\n const tree = renderTree(<Output context={context}>{children}</Output>);\n\n return printTree(tree, options);\n}\n"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;AA0CA,eAAK,OAAA,SAAA,UAAA;CACJ,MAAA,OAAA,CAAA;CACC,MAAE,SAAa,MAAM,YAAY,gBAAc,UAAA;EACvC;EACN;EACF;CACF,CAAA,CAAA;CACE,MAAA,QAAS,CAAA;CACT,MAAA,eAAU,QAAA;EACV,gBAAA;EACA,YAAa,SAAM,MAAO,KAAM,IAAE;CAClC,CAAA;CACA,IAAG,CAAA,MAAO,QACR,QAAG,MAAQ,2DAAA;MACT;EACH,QAAA,MAAA,aAAA,MAAA,OAAA,0CAAA,KAAA,MAAA,KAAA,MAAA,YAAA,EAAA,MAAA,QAAA,OAAA,GAAA,CAAA,CAAA,EAAA,EAAA;;GAED,iBAAoB,cAAY;IAC1B,IAAA,QAAA,GAAe,WAAQ,UAAA,IAAA,GAC3B;IAEA,QAAA,GAAA,UAAA,UAAA,IAAA;;GAEE,YAAO,SAAQ;IACjB,IAAQ,cAAU,MAAO;KACpB,MAAA,WAAA,KAAA,KAAA,SAAA,CAAA;KACL,IAAQ,SAAK,SAAA,WAAA;MACV,IAAS,CAAC,SAAQ,IACX,MAAM,IAAG,MAAA,kBAAoB,KAAQ,KAAO,4CAAI;MAEzD,QAAA,gBAAA,KAAA,UAAA,SAAA,IAAA;;OAEK,SAAA,SAAsB;OAC1B,WAAgB,kBAAa,KAAA,IAAA;MACvB,CAAA;KACF,OAAM,IAAA,SAAA,SAAA,SACR,QAAA,cAAA,KAAA,UAAA,KAAA,MAAA;;MAEA,SAAW,SAAU;MACtB,GAAA,SAAA,kBAAA,CAAA;KACD,CAAA;UACO,IAAQ,SAAS,SAAE,kBAAA;MACtB,IAAM,CAAA,SAAU,IACZ,MAAA,IAAS,MAAO,wBAAa,KAAA,KAAA,4CAAA;MAE/B,QAAQ,uBAAS,KAAA,UAAA,SAAA,IAAA;OACf,YAAY,SAAO;OACnB,SAAS,SAAA;OACT,WAAQ,kBAAqB,KAAC,IAAO;MACvC,CAAC;KACH;IAGF,OACE,QAAI,GAAO,SAAE,KAAS,YAAO,KAAA,IAAA;GAEjC;EACF,CAAC;CACH;AACF;;;;;;;;;;;;;;;;AAiBA,SAAc,aAAA,SAAA,UAAA,SAAA;CAKZ,OAAO,UAJG,WAAK,gBAAA,UAAA;EACL;EACF;CACR,CAAC,CACkB,GAAA,OAAS;AAC9B"}
@@ -5,8 +5,8 @@ const require_typescript_components_typescript_file = require('./typescript-file
5
5
  let _stryke_path_file_path_fns = require("@stryke/path/file-path-fns");
6
6
  let _alloy_js_core_jsx_runtime = require("@alloy-js/core/jsx-runtime");
7
7
  let _alloy_js_core = require("@alloy-js/core");
8
- let _stryke_path_append = require("@stryke/path/append");
9
8
  let _stryke_path_replace = require("@stryke/path/replace");
9
+ let _stryke_path_append = require("@stryke/path/append");
10
10
  let defu = require("defu");
11
11
  defu = require_runtime.__toESM(defu);
12
12
  let _stryke_type_checks_is_set = require("@stryke/type-checks/is-set");
@@ -3,8 +3,8 @@ import { TypescriptFile } from "./typescript-file.mjs";
3
3
  import { hasFileExtension } from "@stryke/path/file-path-fns";
4
4
  import { createComponent, mergeProps } from "@alloy-js/core/jsx-runtime";
5
5
  import { computed, splitProps } from "@alloy-js/core";
6
- import { appendPath } from "@stryke/path/append";
7
6
  import { replaceExtension, replacePath } from "@stryke/path/replace";
7
+ import { appendPath } from "@stryke/path/append";
8
8
  import defu from "defu";
9
9
  import { isSet } from "@stryke/type-checks/is-set";
10
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/plugin-alloy",
3
- "version": "0.26.204",
3
+ "version": "0.26.205",
4
4
  "description": "A package containing various Alloy framework components and helper utilities.",
5
5
  "keywords": ["alloy-js", "powerlines", "powerlines-plugin"],
6
6
  "homepage": "https://stormsoftware.com",
@@ -906,8 +906,8 @@
906
906
  "@alloy-js/json": "^0.23.0",
907
907
  "@alloy-js/markdown": "^0.23.0",
908
908
  "@alloy-js/typescript": "^0.23.0",
909
- "@powerlines/deepkit": "0.9.73",
910
- "@powerlines/plugin-babel": "0.13.108",
909
+ "@powerlines/deepkit": "^0.9.73",
910
+ "@powerlines/plugin-babel": "^0.13.108",
911
911
  "@storm-software/config-tools": "^1.190.40",
912
912
  "@stryke/capnp": "^0.12.111",
913
913
  "@stryke/convert": "^0.7.15",
@@ -920,16 +920,16 @@
920
920
  "@stryke/types": "^0.12.12",
921
921
  "@stryke/unique-id": "^0.3.96",
922
922
  "defu": "^6.1.7",
923
- "powerlines": "0.47.112",
923
+ "powerlines": "^0.47.112",
924
924
  "prettier": "^3.8.3",
925
925
  "unctx": "^2.5.0"
926
926
  },
927
927
  "devDependencies": {
928
- "@powerlines/plugin-plugin": "0.12.524",
928
+ "@powerlines/plugin-plugin": "^0.12.524",
929
929
  "@types/node": "^25.9.1"
930
930
  },
931
931
  "peerDependencies": { "@alloy-js/babel-preset": ">=0.3.0" },
932
932
  "peerDependenciesMeta": { "@alloy-js/babel-preset": { "optional": false } },
933
933
  "publishConfig": { "access": "public" },
934
- "gitHead": "56d15e5936a73dc76f87493f7f05ec2df0b1ba7f"
934
+ "gitHead": "4188b20fb27952ae064661f355b081a708e1c4f8"
935
935
  }