opencode-ship 0.10.0-rc.28 → 0.10.0-rc.29
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/THIRD_PARTY_NOTICES.md +1 -1
- package/dist/cli.js +4 -4
- package/dist/core.js +1 -1
- package/dist/plugin.js +2 -2
- package/package.json +1 -1
package/THIRD_PARTY_NOTICES.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Third-Party Notices
|
|
2
2
|
|
|
3
|
-
`opencode-ship@0.10.0-rc.
|
|
3
|
+
`opencode-ship@0.10.0-rc.29` ships the complete Matt Pocock and Superpowers
|
|
4
4
|
methodology under the MIT license, plus the Ship-owned installer,
|
|
5
5
|
plugin, agents, and skills. The complete immutable pin list is in
|
|
6
6
|
`vendor/sources.json`; the upstream snapshots are under
|
package/dist/cli.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
// opencode-ship CLI v0.10.0-rc.
|
|
2
|
+
// opencode-ship CLI v0.10.0-rc.29
|
|
3
3
|
var __defProp = Object.defineProperty;
|
|
4
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
5
|
var __esm = (fn, res) => function __init() {
|
|
@@ -235,7 +235,7 @@ function applyOwnedPointers(rootDoc, { pointerEntries = POINTER_ENTRIES, allowEq
|
|
|
235
235
|
result.applied.push({ pointer: entry.pointer, value: entry.value });
|
|
236
236
|
continue;
|
|
237
237
|
}
|
|
238
|
-
if (existing === entry.value) {
|
|
238
|
+
if (existing === entry.value || stableStringify(existing) === stableStringify(entry.value)) {
|
|
239
239
|
if (allowEqualValues) {
|
|
240
240
|
result.skipped.push({ pointer: entry.pointer, reason: "already equal" });
|
|
241
241
|
}
|
|
@@ -689,7 +689,7 @@ function resolvePackageRoot(startUrl) {
|
|
|
689
689
|
import { readFileSync as readFileSync2, existsSync as existsSync2 } from "node:fs";
|
|
690
690
|
import { dirname as dirname2, resolve as resolve2 } from "node:path";
|
|
691
691
|
import { fileURLToPath as fileURLToPath2 } from "node:url";
|
|
692
|
-
var PACKAGE_VERSION = "0.10.0-rc.
|
|
692
|
+
var PACKAGE_VERSION = "0.10.0-rc.29";
|
|
693
693
|
var TEMPLATE_SET = `v${PACKAGE_VERSION}`;
|
|
694
694
|
|
|
695
695
|
// src/installer/catalog.js
|
|
@@ -2960,7 +2960,7 @@ async function assembleLock({ repoRoot, plan, lock, configPlan, rootPlan, profil
|
|
|
2960
2960
|
manager: {
|
|
2961
2961
|
schemaVersion: CURRENT_LOCK_SCHEMA,
|
|
2962
2962
|
name: "opencode-ship",
|
|
2963
|
-
version: "0.10.0-rc.
|
|
2963
|
+
version: "0.10.0-rc.29",
|
|
2964
2964
|
templateSet: TEMPLATE_SET_ID,
|
|
2965
2965
|
// Newly written locks always carry the resolved profile so
|
|
2966
2966
|
// future CLI invocations without --profile still resolve to
|
package/dist/core.js
CHANGED
package/dist/plugin.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// opencode-ship v0.10.0-rc.
|
|
1
|
+
// opencode-ship v0.10.0-rc.29
|
|
2
2
|
var __defProp = Object.defineProperty;
|
|
3
3
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
4
4
|
var __esm = (fn, res) => function __init() {
|
|
@@ -16793,7 +16793,7 @@ function flattenShipConfig(ship) {
|
|
|
16793
16793
|
import { readFileSync as readFileSync2, existsSync as existsSync12 } from "node:fs";
|
|
16794
16794
|
import { dirname as dirname7, resolve as resolve13 } from "node:path";
|
|
16795
16795
|
import { fileURLToPath } from "node:url";
|
|
16796
|
-
var PACKAGE_VERSION = "0.10.0-rc.
|
|
16796
|
+
var PACKAGE_VERSION = "0.10.0-rc.29";
|
|
16797
16797
|
var TEMPLATE_SET = `v${PACKAGE_VERSION}`;
|
|
16798
16798
|
|
|
16799
16799
|
// src/plugin.js
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-ship",
|
|
3
|
-
"version": "0.10.0-rc.
|
|
3
|
+
"version": "0.10.0-rc.29",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "npm-distributed OpenCode installer that materializes the delivery plugin, reviewer/verifier agents, skills, ship config and lock into any consumer repository.",
|
|
6
6
|
"license": "MIT",
|