@mean-weasel/lineage 0.1.1 → 0.1.2
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 +5 -0
- package/README.md +26 -5
- package/dist/cli/lineage-dev.js +1283 -13
- package/dist/cli/lineage-dev.js.map +4 -4
- package/dist/cli/lineage.js +1283 -13
- package/dist/cli/lineage.js.map +4 -4
- package/dist/server.js +22 -5
- package/dist/server.js.map +2 -2
- package/dist/web/assets/{index-CSnGIWOr.js → index-Cm95o4aV.js} +2 -2
- package/dist/web/index.html +1 -1
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.1.2
|
|
4
|
+
|
|
5
|
+
- Fix packaged Lineage handoff commands so copied `next`, `inspect`, and `link-child` commands run through the published package.
|
|
6
|
+
- Add packaged CLI regression coverage for custom SQLite database handoffs.
|
|
7
|
+
|
|
3
8
|
## 0.1.1
|
|
4
9
|
|
|
5
10
|
- Fix first-run demo lineage loading and catalog-root lineage workspace creation.
|
package/README.md
CHANGED
|
@@ -4,14 +4,21 @@ Lineage is a local-first workspace for reviewing creative assets, branching vari
|
|
|
4
4
|
|
|
5
5
|
## Package Channels
|
|
6
6
|
|
|
7
|
-
Lineage is packaged as `@mean-weasel/lineage`. Use the stable
|
|
7
|
+
Lineage is packaged as `@mean-weasel/lineage`. Use `latest` for the stable dogfood or production install, and use `next` when you intentionally want the development or release-candidate channel:
|
|
8
8
|
|
|
9
9
|
```bash
|
|
10
|
-
npm install -g @mean-weasel/lineage
|
|
10
|
+
npm install -g @mean-weasel/lineage@latest
|
|
11
11
|
npm install -g @mean-weasel/lineage@next
|
|
12
12
|
```
|
|
13
13
|
|
|
14
|
-
The stable and development channels are intended to coexist conceptually
|
|
14
|
+
The stable and development channels are intended to coexist conceptually:
|
|
15
|
+
|
|
16
|
+
- `latest` is the version you should trust for day-to-day dogfooding.
|
|
17
|
+
- `next` is the version to test before promotion.
|
|
18
|
+
- `lineage` runs with stable runtime defaults.
|
|
19
|
+
- `lineage-dev` runs with development runtime defaults.
|
|
20
|
+
|
|
21
|
+
The package includes both CLI bridge bins for help and version checks:
|
|
15
22
|
|
|
16
23
|
```bash
|
|
17
24
|
lineage --help
|
|
@@ -45,7 +52,13 @@ npm run ci
|
|
|
45
52
|
|
|
46
53
|
## Release Checks
|
|
47
54
|
|
|
48
|
-
Use `next` for
|
|
55
|
+
Use `next` for candidate builds and `latest` for the stable public channel. Check the current local, npm, and workflow state with:
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
npm run release:status
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
For local release validation:
|
|
49
62
|
|
|
50
63
|
```bash
|
|
51
64
|
npm run release:dry-run -- --tag next
|
|
@@ -54,7 +67,15 @@ npm run release:dry-run -- --tag latest
|
|
|
54
67
|
npm run release:latest
|
|
55
68
|
```
|
|
56
69
|
|
|
57
|
-
The release script verifies package metadata, changelog version coverage, public-readiness scans, install smoke, browser smoke, audit, and package contents before publishing. GitHub Actions runs CI on pull requests and `main`; publishing is manual through the Release workflow
|
|
70
|
+
The release script verifies package metadata, changelog version coverage, public-readiness scans, install smoke, browser smoke, audit, and package contents before publishing. GitHub Actions runs CI on pull requests and `main`; publishing is manual through the Release workflow.
|
|
71
|
+
|
|
72
|
+
Use the Release workflow operations this way:
|
|
73
|
+
|
|
74
|
+
- `publish-next`: publish the current package version to npm with the `next` dist-tag using trusted publishing and provenance.
|
|
75
|
+
- `promote-latest`: move the already-published `next` version to `latest` after dogfooding. This uses the repository `NPM_TOKEN` secret and refuses to promote unless npm's `next` tag points at the local package version.
|
|
76
|
+
- `publish-latest`: publish the current package version directly to `latest` using trusted publishing and provenance, reserved for cases where the version should skip the `next` channel.
|
|
77
|
+
|
|
78
|
+
The normal cadence is: bump version and changelog, merge to `main`, run `publish-next`, install or run `@mean-weasel/lineage@next`, dogfood it, then run `promote-latest`. After promotion, both npm tags point to the same version until the next development version is published to `next`.
|
|
58
79
|
|
|
59
80
|
## Demo Fixture
|
|
60
81
|
|