@arcadiasystems/morse-cli 0.10.0 → 0.10.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/CHANGELOG.md +8 -0
- package/README.md +1 -1
- package/dist/index.js +4 -3
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,14 @@ All notable changes to `@arcadiasystems/morse-cli` are documented here. The
|
|
|
4
4
|
format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/) and this
|
|
5
5
|
project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.10.1] - 2026-09-10
|
|
8
|
+
|
|
9
|
+
Tooling only. No behaviour changes.
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
|
|
13
|
+
- `bun run docs-gate`, wired into `bun run check` alongside the coverage gate. It fails when the README status banner does not name the current version, or when CHANGELOG's newest entry does not match `package.json`. The banner silently claimed v0.3.0 for two whole releases, and nothing in lint, typecheck, tests or coverage could catch it.
|
|
14
|
+
|
|
7
15
|
## [0.10.0] - 2026-09-10
|
|
8
16
|
|
|
9
17
|
### Added
|
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ content entries from your terminal, signing with a locally encrypted key.
|
|
|
6
6
|
Content is stored on [Walrus](https://walrus.xyz); private entries are encrypted
|
|
7
7
|
with [Seal](https://github.com/MystenLabs/seal).
|
|
8
8
|
|
|
9
|
-
> Status: v0.10.
|
|
9
|
+
> Status: v0.10.1. Mainnet and testnet are both supported for public content;
|
|
10
10
|
> the command surface is stable.
|
|
11
11
|
>
|
|
12
12
|
> **Encrypted commands need Seal key servers.** Testnet has an open set, so
|
package/dist/index.js
CHANGED
|
@@ -148,7 +148,7 @@ import { Command } from "commander";
|
|
|
148
148
|
// package.json
|
|
149
149
|
var package_default = {
|
|
150
150
|
name: "@arcadiasystems/morse-cli",
|
|
151
|
-
version: "0.10.
|
|
151
|
+
version: "0.10.1",
|
|
152
152
|
description: "Command-line interface for the Morse decentralized CMS on Sui.",
|
|
153
153
|
license: "MIT",
|
|
154
154
|
type: "module",
|
|
@@ -191,6 +191,7 @@ var package_default = {
|
|
|
191
191
|
start: "bun src/index.ts",
|
|
192
192
|
build: "bun build src/index.ts --target node --packages external --outfile dist/index.js",
|
|
193
193
|
typecheck: "tsc --noEmit",
|
|
194
|
+
"docs-gate": "bun scripts/docs-gate.ts",
|
|
194
195
|
lint: "biome check .",
|
|
195
196
|
"lint:fix": "biome check --write .",
|
|
196
197
|
test: "bun test",
|
|
@@ -199,11 +200,11 @@ var package_default = {
|
|
|
199
200
|
"test:coverage": "bun test --coverage",
|
|
200
201
|
"test:e2e": "MORSE_E2E=1 bun test test/e2e/",
|
|
201
202
|
coverage: "bun scripts/coverage-gate.ts",
|
|
202
|
-
check: "tsc --noEmit && biome check . && bun scripts/coverage-gate.ts",
|
|
203
|
+
check: "tsc --noEmit && biome check . && bun scripts/docs-gate.ts && bun scripts/coverage-gate.ts",
|
|
203
204
|
prepublishOnly: "bun run check && bun run build"
|
|
204
205
|
},
|
|
205
206
|
dependencies: {
|
|
206
|
-
"@arcadiasystems/morse-sdk": "^0.8.
|
|
207
|
+
"@arcadiasystems/morse-sdk": "^0.8.1",
|
|
207
208
|
"@mysten/seal": "1.1.3",
|
|
208
209
|
"@mysten/sui": "2.16.2",
|
|
209
210
|
"@mysten/walrus": "1.1.6",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@arcadiasystems/morse-cli",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.1",
|
|
4
4
|
"description": "Command-line interface for the Morse decentralized CMS on Sui.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
"start": "bun src/index.ts",
|
|
44
44
|
"build": "bun build src/index.ts --target node --packages external --outfile dist/index.js",
|
|
45
45
|
"typecheck": "tsc --noEmit",
|
|
46
|
+
"docs-gate": "bun scripts/docs-gate.ts",
|
|
46
47
|
"lint": "biome check .",
|
|
47
48
|
"lint:fix": "biome check --write .",
|
|
48
49
|
"test": "bun test",
|
|
@@ -51,11 +52,11 @@
|
|
|
51
52
|
"test:coverage": "bun test --coverage",
|
|
52
53
|
"test:e2e": "MORSE_E2E=1 bun test test/e2e/",
|
|
53
54
|
"coverage": "bun scripts/coverage-gate.ts",
|
|
54
|
-
"check": "tsc --noEmit && biome check . && bun scripts/coverage-gate.ts",
|
|
55
|
+
"check": "tsc --noEmit && biome check . && bun scripts/docs-gate.ts && bun scripts/coverage-gate.ts",
|
|
55
56
|
"prepublishOnly": "bun run check && bun run build"
|
|
56
57
|
},
|
|
57
58
|
"dependencies": {
|
|
58
|
-
"@arcadiasystems/morse-sdk": "^0.8.
|
|
59
|
+
"@arcadiasystems/morse-sdk": "^0.8.1",
|
|
59
60
|
"@mysten/seal": "1.1.3",
|
|
60
61
|
"@mysten/sui": "2.16.2",
|
|
61
62
|
"@mysten/walrus": "1.1.6",
|