@onlooker-community/ecosystem 0.15.0 → 0.15.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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ecosystem",
|
|
3
|
-
"version": "0.15.
|
|
3
|
+
"version": "0.15.1",
|
|
4
4
|
"description": "Observability substrate for Claude Code. Provides the shared ~/.onlooker/ storage root, canonical schema-validated event emission, session and tool tracking hooks, and prompt rules. Required by all other Onlooker plugins.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Onlooker Community",
|
|
@@ -33,19 +33,23 @@ jobs:
|
|
|
33
33
|
# Code marketplace, not npm — a release for a sibling alone must not
|
|
34
34
|
# trigger `npm publish`, which would attempt to re-publish ecosystem at
|
|
35
35
|
# its existing version and fail.
|
|
36
|
+
#
|
|
37
|
+
# We check paths_released (a JSON array) rather than the per-path output
|
|
38
|
+
# key `.--release_created` because keys starting with `.` are silently
|
|
39
|
+
# dropped when release-please-action writes them to $GITHUB_OUTPUT.
|
|
36
40
|
- uses: actions/checkout@v4
|
|
37
|
-
if: ${{ steps.release.outputs['
|
|
41
|
+
if: ${{ contains(fromJSON(steps.release.outputs.paths_released || '[]'), '.') }}
|
|
38
42
|
|
|
39
43
|
- uses: actions/setup-node@v4
|
|
40
|
-
if: ${{ steps.release.outputs['
|
|
44
|
+
if: ${{ contains(fromJSON(steps.release.outputs.paths_released || '[]'), '.') }}
|
|
41
45
|
with:
|
|
42
46
|
node-version: '22'
|
|
43
47
|
registry-url: 'https://registry.npmjs.org'
|
|
44
48
|
|
|
45
49
|
- run: npm ci
|
|
46
|
-
if: ${{ steps.release.outputs['
|
|
50
|
+
if: ${{ contains(fromJSON(steps.release.outputs.paths_released || '[]'), '.') }}
|
|
47
51
|
|
|
48
52
|
- run: npm publish
|
|
49
|
-
if: ${{ steps.release.outputs['
|
|
53
|
+
if: ${{ contains(fromJSON(steps.release.outputs.paths_released || '[]'), '.') }}
|
|
50
54
|
env:
|
|
51
55
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,13 @@
|
|
|
7
7
|
|
|
8
8
|
# Changelog
|
|
9
9
|
|
|
10
|
+
## [0.15.1](https://github.com/onlooker-community/ecosystem/compare/ecosystem-v0.15.0...ecosystem-v0.15.1) (2026-05-25)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **ci:** use paths_released to gate npm publish :rage: ([#37](https://github.com/onlooker-community/ecosystem/issues/37)) ([c62b17f](https://github.com/onlooker-community/ecosystem/commit/c62b17f7e1352cfe260a23c8f48be30f72edbbed))
|
|
16
|
+
|
|
10
17
|
## [0.15.0](https://github.com/onlooker-community/ecosystem/compare/ecosystem-v0.14.0...ecosystem-v0.15.0) (2026-05-25)
|
|
11
18
|
|
|
12
19
|
|
package/package.json
CHANGED