mano-coding 0.1.26 → 0.1.27

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 (2) hide show
  1. package/dist/bin.js +3 -3
  2. package/package.json +1 -1
package/dist/bin.js CHANGED
@@ -39623,8 +39623,8 @@ function collectTargetCandidates(manifests) {
39623
39623
  const seen = /* @__PURE__ */ new Set();
39624
39624
  const candidates = [];
39625
39625
  for (const manifest of manifests) {
39626
- for (const target of manifest.targets) {
39627
- if (!seen.has(target.id)) {
39626
+ for (const target of manifest?.targets ?? []) {
39627
+ if (target?.id && !seen.has(target.id)) {
39628
39628
  seen.add(target.id);
39629
39629
  candidates.push({ id: target.id, label: target.id });
39630
39630
  }
@@ -42277,7 +42277,7 @@ import { createRequire as createRequire2 } from "node:module";
42277
42277
  import { readFileSync as readFileSync4 } from "node:fs";
42278
42278
  import { fileURLToPath as fileURLToPath5 } from "node:url";
42279
42279
  function resolveVersion() {
42280
- if (true) return "0.1.26";
42280
+ if (true) return "0.1.27";
42281
42281
  const candidates = [
42282
42282
  new URL("../package.json", import.meta.url),
42283
42283
  new URL("../../package.json", import.meta.url),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mano-coding",
3
- "version": "0.1.26",
3
+ "version": "0.1.27",
4
4
  "description": "Mano Coding CLI and toolchain",
5
5
  "type": "module",
6
6
  "main": "index.js",