@nitra/cursor 1.8.164 → 1.8.165
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/mdc/ga.mdc +2 -2
- package/package.json +2 -2
- package/scripts/check-ga.mjs +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,12 @@
|
|
|
4
4
|
|
|
5
5
|
Формат — [Keep a Changelog](https://keepachangelog.com/uk/1.1.0/), нумерація — [SemVer](https://semver.org/lang/uk/).
|
|
6
6
|
|
|
7
|
+
## [1.8.165] - 2026-05-01
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- `ga.mdc` / `check-ga.mjs`: лінт workflow-ів через [`github-actionlint`](https://www.npmjs.com/package/github-actionlint) замість `node-actionlint`. Канонічний скрипт `lint-ga` тепер `bunx github-actionlint && uvx zizmor --offline --collect=workflows .`; `check-ga` вимагає у `package.json` саме `github-actionlint`.
|
|
12
|
+
|
|
7
13
|
## [1.8.164] - 2026-05-01
|
|
8
14
|
|
|
9
15
|
### Added
|
package/mdc/ga.mdc
CHANGED
|
@@ -231,11 +231,11 @@ jobs:
|
|
|
231
231
|
- uses: ./.github/actions/setup-bun-deps
|
|
232
232
|
```
|
|
233
233
|
|
|
234
|
-
**Лінт:** [actionlint](https://github.com/rhysd/actionlint) через [
|
|
234
|
+
**Лінт:** [actionlint](https://github.com/rhysd/actionlint) через [github-actionlint](https://www.npmjs.com/package/github-actionlint); [zizmor](https://docs.zizmor.sh) — `uvx`, офлайн. Скрипт у корені:
|
|
235
235
|
|
|
236
236
|
```json title="package.json"
|
|
237
237
|
"scripts": {
|
|
238
|
-
"lint-ga": "bunx
|
|
238
|
+
"lint-ga": "bunx github-actionlint && uvx zizmor --offline --collect=workflows ."
|
|
239
239
|
}
|
|
240
240
|
```
|
|
241
241
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nitra/cursor",
|
|
3
|
-
"version": "1.8.
|
|
3
|
+
"version": "1.8.165",
|
|
4
4
|
"description": "CLI для завантаження cursor-правил (префікс n-) у локальний репозиторій",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cli",
|
|
@@ -49,6 +49,6 @@
|
|
|
49
49
|
"node": ">=25"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@nitra/cursor": "^1.8.
|
|
52
|
+
"@nitra/cursor": "^1.8.165"
|
|
53
53
|
}
|
|
54
54
|
}
|
package/scripts/check-ga.mjs
CHANGED
|
@@ -738,10 +738,10 @@ async function checkLintGaScript(passFn, failFn) {
|
|
|
738
738
|
return
|
|
739
739
|
}
|
|
740
740
|
passFn('package.json містить lint-ga')
|
|
741
|
-
if (lg.includes('
|
|
742
|
-
passFn('lint-ga викликає
|
|
741
|
+
if (lg.includes('github-actionlint')) {
|
|
742
|
+
passFn('lint-ga викликає github-actionlint')
|
|
743
743
|
} else {
|
|
744
|
-
failFn('lint-ga має містити bunx
|
|
744
|
+
failFn('lint-ga має містити bunx github-actionlint (ga.mdc)')
|
|
745
745
|
}
|
|
746
746
|
if (lg.includes('zizmor') && lg.includes('--offline')) {
|
|
747
747
|
passFn('lint-ga викликає zizmor з --offline')
|