@jayjiang/byoao 1.0.8 → 1.1.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.
- package/dist/index.js +1 -1
- package/dist/vault/manifest.js +1 -1
- package/dist/vault/self-update.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -28283,7 +28283,7 @@ async function configureProvider(provider, gcpProjectId) {
|
|
|
28283
28283
|
|
|
28284
28284
|
// dist/vault/manifest.js
|
|
28285
28285
|
import path4 from "node:path";
|
|
28286
|
-
var PKG_VERSION = "1.0
|
|
28286
|
+
var PKG_VERSION = "1.1.0";
|
|
28287
28287
|
var InfrastructureSchema = external_exports2.object({
|
|
28288
28288
|
skills: external_exports2.array(external_exports2.string()).default([]),
|
|
28289
28289
|
commands: external_exports2.array(external_exports2.string()).default([]),
|
package/dist/vault/manifest.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { fs } from "../lib/cjs-modules.js";
|
|
2
2
|
import path from "node:path";
|
|
3
3
|
import { z } from "zod";
|
|
4
|
-
const PKG_VERSION =
|
|
4
|
+
const PKG_VERSION = "1.1.0";
|
|
5
5
|
// ── Schema ──────────────────────────────────────────────────────
|
|
6
6
|
const InfrastructureSchema = z.object({
|
|
7
7
|
skills: z.array(z.string()).default([]),
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { execSync } from "node:child_process";
|
|
2
2
|
import { semver } from "../lib/cjs-modules.js";
|
|
3
|
-
const PKG_VERSION =
|
|
3
|
+
const PKG_VERSION = "1.1.0";
|
|
4
4
|
// ── Constants ───────────────────────────────────────────────────
|
|
5
5
|
const PACKAGE_NAME = "@jayjiang/byoao";
|
|
6
6
|
const REGISTRY_TIMEOUT_MS = 5_000;
|