opencode-ship 1.1.1-rc.9 → 1.1.1
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 +7 -7
- 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@1.1.1
|
|
3
|
+
`opencode-ship@1.1.1` 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 v1.1.1
|
|
2
|
+
// opencode-ship CLI v1.1.1
|
|
3
3
|
var __defProp = Object.defineProperty;
|
|
4
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
5
|
var __esm = (fn, res) => function __init() {
|
|
@@ -30,13 +30,13 @@ function resolveProfile({ cli = null, config = null, lock = null } = {}) {
|
|
|
30
30
|
if (cli !== null && cli !== void 0) {
|
|
31
31
|
if (isLegacyCoreProfile(cli)) {
|
|
32
32
|
throw new Error(
|
|
33
|
-
`unknown CLI profile 'core' (only 'engineering' is supported in
|
|
33
|
+
`unknown CLI profile 'core' (only 'engineering' is supported in this release; the 'core' profile was removed; existing persisted 'core' is promoted to engineering on next init/update)`
|
|
34
34
|
);
|
|
35
35
|
}
|
|
36
36
|
const v = normalizeProfile(cli);
|
|
37
37
|
if (v === null) {
|
|
38
38
|
throw new Error(
|
|
39
|
-
`unknown CLI profile '${cli}' (only 'engineering' is supported in
|
|
39
|
+
`unknown CLI profile '${cli}' (only 'engineering' is supported in current release)`
|
|
40
40
|
);
|
|
41
41
|
}
|
|
42
42
|
return { profile: v, source: "cli" };
|
|
@@ -48,7 +48,7 @@ function resolveProfile({ cli = null, config = null, lock = null } = {}) {
|
|
|
48
48
|
const v = normalizeProfile(config.profile);
|
|
49
49
|
if (v === null) {
|
|
50
50
|
throw new Error(
|
|
51
|
-
`unknown ship.config.json profile '${config.profile}' (only 'engineering' is supported in
|
|
51
|
+
`unknown ship.config.json profile '${config.profile}' (only 'engineering' is supported in current release)`
|
|
52
52
|
);
|
|
53
53
|
}
|
|
54
54
|
return { profile: v, source: "config" };
|
|
@@ -60,7 +60,7 @@ function resolveProfile({ cli = null, config = null, lock = null } = {}) {
|
|
|
60
60
|
const v = normalizeProfile(lock.manager.profile);
|
|
61
61
|
if (v === null) {
|
|
62
62
|
throw new Error(
|
|
63
|
-
`unknown lock manager.profile '${lock.manager.profile}' (only 'engineering' is supported in
|
|
63
|
+
`unknown lock manager.profile '${lock.manager.profile}' (only 'engineering' is supported in current release)`
|
|
64
64
|
);
|
|
65
65
|
}
|
|
66
66
|
return { profile: v, source: "lock" };
|
|
@@ -110,7 +110,7 @@ import { fileURLToPath as fileURLToPath2 } from "node:url";
|
|
|
110
110
|
var PACKAGE_VERSION, TEMPLATE_SET;
|
|
111
111
|
var init_version = __esm({
|
|
112
112
|
"src/version.js"() {
|
|
113
|
-
PACKAGE_VERSION = "1.1.1
|
|
113
|
+
PACKAGE_VERSION = "1.1.1";
|
|
114
114
|
TEMPLATE_SET = `v${PACKAGE_VERSION}`;
|
|
115
115
|
}
|
|
116
116
|
});
|
|
@@ -3182,7 +3182,7 @@ async function assembleLock({ repoRoot, plan, lock, configPlan, rootPlan, profil
|
|
|
3182
3182
|
manager: {
|
|
3183
3183
|
schemaVersion: CURRENT_LOCK_SCHEMA,
|
|
3184
3184
|
name: "opencode-ship",
|
|
3185
|
-
version: "1.1.1
|
|
3185
|
+
version: "1.1.1",
|
|
3186
3186
|
templateSet: TEMPLATE_SET_ID,
|
|
3187
3187
|
profile: resolvedProfile,
|
|
3188
3188
|
appliedAt: (/* @__PURE__ */ new Date()).toISOString(),
|
package/dist/core.js
CHANGED
package/dist/plugin.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// opencode-ship v1.1.1
|
|
1
|
+
// opencode-ship v1.1.1
|
|
2
2
|
var __defProp = Object.defineProperty;
|
|
3
3
|
var __export = (target, all) => {
|
|
4
4
|
for (var name in all)
|
|
@@ -16744,7 +16744,7 @@ function flattenShipConfig(ship) {
|
|
|
16744
16744
|
import { readFileSync as readFileSync3, existsSync as existsSync13 } from "node:fs";
|
|
16745
16745
|
import { dirname as dirname7, resolve as resolve13 } from "node:path";
|
|
16746
16746
|
import { fileURLToPath } from "node:url";
|
|
16747
|
-
var PACKAGE_VERSION = "1.1.1
|
|
16747
|
+
var PACKAGE_VERSION = "1.1.1";
|
|
16748
16748
|
var TEMPLATE_SET = `v${PACKAGE_VERSION}`;
|
|
16749
16749
|
|
|
16750
16750
|
// src/plugin.js
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-ship",
|
|
3
|
-
"version": "1.1.1
|
|
3
|
+
"version": "1.1.1",
|
|
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",
|