@onlooker-community/ecosystem 0.5.0 → 0.6.0
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.
|
@@ -77,28 +77,10 @@ jobs:
|
|
|
77
77
|
echo "ERROR: package.json version ($PKG_VERSION) does not match tag ($TAG_VERSION)"
|
|
78
78
|
exit 1
|
|
79
79
|
fi
|
|
80
|
-
|
|
81
|
-
test:
|
|
82
|
-
name: Test
|
|
83
|
-
runs-on: ubuntu-latest
|
|
84
|
-
strategy:
|
|
85
|
-
matrix:
|
|
86
|
-
node: ['20', '22']
|
|
87
|
-
steps:
|
|
88
|
-
- uses: actions/checkout@v4
|
|
89
|
-
|
|
90
|
-
- uses: actions/setup-node@v4
|
|
91
|
-
with:
|
|
92
|
-
node-version: ${{ matrix.node }}
|
|
93
|
-
cache: npm
|
|
94
|
-
|
|
95
|
-
- run: npm ci
|
|
96
|
-
- run: npm test
|
|
97
|
-
|
|
98
80
|
publish:
|
|
99
81
|
name: Publish to npm
|
|
100
82
|
runs-on: ubuntu-latest
|
|
101
|
-
needs: [validate
|
|
83
|
+
needs: [validate]
|
|
102
84
|
environment: npm-publish
|
|
103
85
|
steps:
|
|
104
86
|
- uses: actions/checkout@v4
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.6.0](https://github.com/onlooker-community/ecosystem/compare/v0.5.0...v0.6.0) (2026-05-22)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add settings.json for plugin configuration ([67fbdfe](https://github.com/onlooker-community/ecosystem/commit/67fbdfe37f067a45801e7d0355c4a533b687f6b2))
|
|
9
|
+
|
|
3
10
|
## [0.5.0](https://github.com/onlooker-community/ecosystem/compare/v0.4.0...v0.5.0) (2026-05-22)
|
|
4
11
|
|
|
5
12
|
|
package/package.json
CHANGED