@mediadatafusion/pi-workflow-suite 0.0.13 → 0.0.14
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 +6 -0
- package/README.md +6 -6
- package/VERSION +1 -1
- package/package.json +4 -2
- package/scripts/prepare-package-readme.mjs +15 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
All notable public releases will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [0.0.14] - 2026-06-08
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Restored the npm/pi.dev publish preparation path so the package-safe README is active before npm publish starts, preserving the rendered package README while keeping media pinned to the published `0.0.12` assets.
|
|
10
|
+
|
|
5
11
|
## [0.0.13] - 2026-06-08
|
|
6
12
|
|
|
7
13
|
### Changed
|
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
[](#installation) [](#quick-start) [](#core-commands) [](#settings-reference)
|
|
6
6
|
|
|
7
|
-
**Workflow Suite Version:** `v0.0.
|
|
7
|
+
**Workflow Suite Version:** `v0.0.14`
|
|
8
8
|
|
|
9
9
|
## Overview
|
|
10
10
|
|
|
@@ -1007,8 +1007,8 @@ pi install -l npm:@mediadatafusion/pi-workflow-suite
|
|
|
1007
1007
|
### Installing specific versions
|
|
1008
1008
|
|
|
1009
1009
|
```bash
|
|
1010
|
-
pi install npm:@mediadatafusion/pi-workflow-suite@0.0.
|
|
1011
|
-
pi install -l npm:@mediadatafusion/pi-workflow-suite@0.0.
|
|
1010
|
+
pi install npm:@mediadatafusion/pi-workflow-suite@0.0.14
|
|
1011
|
+
pi install -l npm:@mediadatafusion/pi-workflow-suite@0.0.14
|
|
1012
1012
|
```
|
|
1013
1013
|
|
|
1014
1014
|
An unversioned install follows normal update behavior: `pi update` and `pi update --extensions` will pick up new package releases. A versioned install pins the package to that version. Pinned package specs are intentionally skipped by Pi's normal package update commands. To move a pinned install to a newer version, reinstall with the desired version. To switch back to latest tracking, use the unversioned install command without `@<version>`.
|
|
@@ -1214,10 +1214,10 @@ See `docs/TROUBLESHOOTING.md` for detailed diagnostics.
|
|
|
1214
1214
|
|
|
1215
1215
|
## Versioning
|
|
1216
1216
|
|
|
1217
|
-
The current preparation version is `v0.0.
|
|
1217
|
+
The current preparation version is `v0.0.14`. Version information is intentionally aligned across:
|
|
1218
1218
|
|
|
1219
|
-
- `VERSION` (`v0.0.
|
|
1220
|
-
- `package.json` (`0.0.
|
|
1219
|
+
- `VERSION` (`v0.0.14`),
|
|
1220
|
+
- `package.json` (`0.0.14`),
|
|
1221
1221
|
- `package-lock.json`,
|
|
1222
1222
|
- this README,
|
|
1223
1223
|
- Workflow Suite settings/about output.
|
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
v0.0.
|
|
1
|
+
v0.0.14
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mediadatafusion/pi-workflow-suite",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.14",
|
|
4
4
|
"description": "Structured workflow orchestration suite for Pi with Standard, Plan, Mission, compaction, diagrams, web access, repo lock, and safety gates.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -114,7 +114,9 @@
|
|
|
114
114
|
"prepack": "node scripts/prepare-package-readme.mjs apply",
|
|
115
115
|
"postpack": "node scripts/prepare-package-readme.mjs restore --pack",
|
|
116
116
|
"restore:package-readme": "node scripts/prepare-package-readme.mjs restore",
|
|
117
|
-
"
|
|
117
|
+
"prepare:publish-readme": "node scripts/prepare-package-readme.mjs apply --publish && node scripts/prepare-package-readme.mjs check",
|
|
118
|
+
"cleanup:publish-readme": "node scripts/prepare-package-readme.mjs restore",
|
|
119
|
+
"prepublishOnly": "node scripts/prepare-package-readme.mjs ensure-publish-ready",
|
|
118
120
|
"postpublish": "node scripts/prepare-package-readme.mjs restore --publish",
|
|
119
121
|
"check:package-readme": "node scripts/prepare-package-readme.mjs check"
|
|
120
122
|
}
|
|
@@ -106,11 +106,25 @@ function check() {
|
|
|
106
106
|
assertPackageReadme(readFileSync(readmePath, 'utf8'));
|
|
107
107
|
}
|
|
108
108
|
|
|
109
|
+
function ensurePublishReady() {
|
|
110
|
+
check();
|
|
111
|
+
if (!existsSync(publishMarkerPath)) {
|
|
112
|
+
throw new Error(
|
|
113
|
+
[
|
|
114
|
+
'package README is package-safe but publish marker is missing.',
|
|
115
|
+
'Run `npm run prepare:publish-readme` before `npm publish --access public` so npm sees the package README before publish starts.',
|
|
116
|
+
'If a previous publish failed, run `npm run cleanup:publish-readme` first.',
|
|
117
|
+
].join(' '),
|
|
118
|
+
);
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
|
|
109
122
|
const command = process.argv[2];
|
|
110
123
|
if (command === 'apply') apply();
|
|
111
124
|
else if (command === 'restore') restore();
|
|
112
125
|
else if (command === 'check') check();
|
|
126
|
+
else if (command === 'ensure-publish-ready') ensurePublishReady();
|
|
113
127
|
else {
|
|
114
|
-
console.error('Usage: prepare-package-readme.mjs apply|restore|check [--publish|--pack]');
|
|
128
|
+
console.error('Usage: prepare-package-readme.mjs apply|restore|check|ensure-publish-ready [--publish|--pack]');
|
|
115
129
|
process.exit(1);
|
|
116
130
|
}
|