@skill-map/cli 0.24.2 → 0.24.3
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/LICENSE +21 -0
- package/README.md +4 -4
- package/dist/cli.js +5 -5
- package/dist/cli.js.map +1 -1
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/kernel/index.js +5 -5
- package/dist/kernel/index.js.map +1 -1
- package/dist/ui/{chunk-CUNKB7ZS.js → chunk-533YMAY3.js} +1 -1
- package/dist/ui/{chunk-UJOZYR5I.js → chunk-6BG7PBUN.js} +1 -1
- package/dist/ui/{chunk-SG23AWC6.js → chunk-AD7RBRD3.js} +2 -2
- package/dist/ui/{chunk-BA5FEGFM.js → chunk-BK4M46IZ.js} +1 -1
- package/dist/ui/{chunk-XPMAU22J.js → chunk-J3YWUNFO.js} +1 -1
- package/dist/ui/{chunk-S3F7ZJKD.js → chunk-O546Z3K4.js} +1 -1
- package/dist/ui/{chunk-IN3Q4IBM.js → chunk-QV6BIVZJ.js} +1 -1
- package/dist/ui/{chunk-DUE22NNK.js → chunk-RR36XBDS.js} +1 -1
- package/dist/ui/{chunk-EI3A2R5P.js → chunk-UVILXZ5L.js} +1 -1
- package/dist/ui/{chunk-NLLFX5I7.js → chunk-UXCAEDR6.js} +1 -1
- package/dist/ui/{chunk-ZYPPIYEF.js → chunk-VO6NF24F.js} +1 -1
- package/dist/ui/{chunk-7KJXEUBZ.js → chunk-Z2667C3S.js} +1 -1
- package/dist/ui/index.html +1 -1
- package/dist/ui/{main-6UGKLU2M.js → main-GGBD5FA4.js} +2 -2
- package/package.json +25 -25
- /package/dist/ui/{chunk-RIDAAD4I.js → chunk-5W6J6H76.js} +0 -0
- /package/dist/ui/{chunk-3R7E3HPC.js → chunk-H2J55DNK.js} +0 -0
- /package/dist/ui/{chunk-N2C45VIA.js → chunk-JMP2LDMI.js} +0 -0
- /package/dist/ui/{chunk-FWFBO7KA.js → chunk-Y7MXGXU3.js} +0 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Crystian
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -61,10 +61,10 @@ sm db migrate / backup / ... # DB management
|
|
|
61
61
|
For development inside the monorepo, two extra scripts are wired:
|
|
62
62
|
|
|
63
63
|
```bash
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
64
|
+
pnpm test # full Node test suite (kernel + CLI + adapters + integration)
|
|
65
|
+
pnpm lint # ESLint flat config across every workspace that opts in
|
|
66
|
+
pnpm build # tsup → dist/ (bundles + types)
|
|
67
|
+
pnpm validate # alias for "all static checks"; CI runs this
|
|
68
68
|
```
|
|
69
69
|
|
|
70
70
|
Exit codes follow [`spec/cli-contract.md`](../spec/cli-contract.md):
|
package/dist/cli.js
CHANGED
|
@@ -5747,7 +5747,7 @@ var UPDATE_CHECK_TEXTS = {
|
|
|
5747
5747
|
// package.json
|
|
5748
5748
|
var package_default = {
|
|
5749
5749
|
name: "@skill-map/cli",
|
|
5750
|
-
version: "0.24.
|
|
5750
|
+
version: "0.24.3",
|
|
5751
5751
|
description: "skill-map reference implementation \u2014 kernel + CLI + adapters.",
|
|
5752
5752
|
license: "MIT",
|
|
5753
5753
|
type: "module",
|
|
@@ -5800,9 +5800,9 @@ var package_default = {
|
|
|
5800
5800
|
"lint:fix": "eslint . --fix",
|
|
5801
5801
|
reference: "node scripts/build-reference.js",
|
|
5802
5802
|
"reference:check": "node scripts/build-reference.js --check",
|
|
5803
|
-
validate: "
|
|
5804
|
-
"validate:compile": "
|
|
5805
|
-
"validate:test": "
|
|
5803
|
+
validate: "pnpm validate:compile && pnpm validate:test",
|
|
5804
|
+
"validate:compile": "pnpm typecheck && pnpm lint && pnpm build && pnpm reference:check",
|
|
5805
|
+
"validate:test": "pnpm test:ci",
|
|
5806
5806
|
pretest: "tsup",
|
|
5807
5807
|
"pretest:coverage": "tsup",
|
|
5808
5808
|
"pretest:coverage:html": "tsup",
|
|
@@ -5814,7 +5814,7 @@ var package_default = {
|
|
|
5814
5814
|
},
|
|
5815
5815
|
dependencies: {
|
|
5816
5816
|
"@hono/node-server": "2.0.1",
|
|
5817
|
-
"@skill-map/spec": "
|
|
5817
|
+
"@skill-map/spec": "workspace:*",
|
|
5818
5818
|
ajv: "8.18.0",
|
|
5819
5819
|
"ajv-formats": "3.0.1",
|
|
5820
5820
|
chokidar: "5.0.0",
|