@skillsmith/cli 0.5.0 → 0.5.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.
- package/dist/.tsbuildinfo +1 -1
- package/dist/src/commands/audit.test.js +1 -1
- package/dist/src/commands/audit.test.js.map +1 -1
- package/dist/src/commands/create.d.ts.map +1 -1
- package/dist/src/commands/create.js +1 -1
- package/dist/src/commands/create.js.map +1 -1
- package/dist/src/commands/index.d.ts +1 -0
- package/dist/src/commands/index.d.ts.map +1 -1
- package/dist/src/commands/index.js +3 -1
- package/dist/src/commands/index.js.map +1 -1
- package/dist/src/commands/install-skill.d.ts.map +1 -1
- package/dist/src/commands/install-skill.js +10 -3
- package/dist/src/commands/install-skill.js.map +1 -1
- package/dist/src/commands/install.d.ts +13 -0
- package/dist/src/commands/install.d.ts.map +1 -0
- package/dist/src/commands/install.js +213 -0
- package/dist/src/commands/install.js.map +1 -0
- package/dist/src/commands/manage.d.ts.map +1 -1
- package/dist/src/commands/manage.js +55 -19
- package/dist/src/commands/manage.js.map +1 -1
- package/dist/src/commands/pin.js +1 -1
- package/dist/src/commands/pin.js.map +1 -1
- package/dist/src/commands/search.d.ts.map +1 -1
- package/dist/src/commands/search.js +43 -3
- package/dist/src/commands/search.js.map +1 -1
- package/dist/src/index.d.ts +2 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +8 -3
- package/dist/src/index.js.map +1 -1
- package/dist/src/templates/readme.md.template.d.ts +1 -1
- package/dist/src/templates/readme.md.template.d.ts.map +1 -1
- package/dist/src/templates/readme.md.template.js +1 -1
- package/dist/src/templates/skill.md.template.d.ts +1 -1
- package/dist/src/templates/skill.md.template.d.ts.map +1 -1
- package/dist/src/templates/skill.md.template.js +1 -1
- package/dist/src/utils/skills-directory.d.ts.map +1 -1
- package/dist/src/utils/skills-directory.js +3 -2
- package/dist/src/utils/skills-directory.js.map +1 -1
- package/dist/tests/install-skill.test.js +9 -4
- package/dist/tests/install-skill.test.js.map +1 -1
- package/dist/tests/license-validation.test.d.ts +8 -0
- package/dist/tests/license-validation.test.d.ts.map +1 -0
- package/dist/tests/license-validation.test.js +186 -0
- package/dist/tests/license-validation.test.js.map +1 -0
- package/dist/tests/manage.test.js +84 -0
- package/dist/tests/manage.test.js.map +1 -1
- package/dist/tests/recommend-helpers.test.d.ts +9 -0
- package/dist/tests/recommend-helpers.test.d.ts.map +1 -0
- package/dist/tests/recommend-helpers.test.js +308 -0
- package/dist/tests/recommend-helpers.test.js.map +1 -0
- package/dist/tests/recommend-scoring.test.d.ts +8 -0
- package/dist/tests/recommend-scoring.test.d.ts.map +1 -0
- package/dist/tests/recommend-scoring.test.js +184 -0
- package/dist/tests/recommend-scoring.test.js.map +1 -0
- package/dist/tests/tool-analyzer.test.d.ts +8 -0
- package/dist/tests/tool-analyzer.test.d.ts.map +1 -0
- package/dist/tests/tool-analyzer.test.js +149 -0
- package/dist/tests/tool-analyzer.test.js.map +1 -0
- package/dist/tests/unit/commands/install.test.d.ts +7 -0
- package/dist/tests/unit/commands/install.test.d.ts.map +1 -0
- package/dist/tests/unit/commands/install.test.js +407 -0
- package/dist/tests/unit/commands/install.test.js.map +1 -0
- package/dist/vitest.config.d.ts.map +1 -1
- package/dist/vitest.config.js +9 -3
- package/dist/vitest.config.js.map +1 -1
- package/package.json +4 -3
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"vitest.config.js","sourceRoot":"","sources":["../vitest.config.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,eAAe,CAAA;
|
|
1
|
+
{"version":3,"file":"vitest.config.js","sourceRoot":"","sources":["../vitest.config.ts"],"names":[],"mappings":"AAAA,2DAA2D;AAC3D,4FAA4F;AAC5F,yFAAyF;AACzF,OAAO,EAAE,YAAY,EAAE,MAAM,eAAe,CAAA;AAC5C,OAAO,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,MAAM,qBAAqB,CAAA;AAExE,eAAe,YAAY,CAAC;IAC1B,IAAI,EAAE;QACJ,GAAG,gBAAgB;QACnB,OAAO,EAAE,CAAC,oBAAoB,EAAE,kBAAkB,EAAE,kBAAkB,CAAC;QACvE,QAAQ,EAAE;YACR,GAAG,gBAAgB;SACpB;KACF;CACF,CAAC,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skillsmith/cli",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "CLI tools for Skillsmith skill discovery and authentication",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -12,11 +12,12 @@
|
|
|
12
12
|
"build": "tsc",
|
|
13
13
|
"dev": "tsc --watch",
|
|
14
14
|
"import": "node dist/import.js",
|
|
15
|
-
"test": "vitest run"
|
|
15
|
+
"test": "vitest run",
|
|
16
|
+
"test:coverage": "vitest run --coverage"
|
|
16
17
|
},
|
|
17
18
|
"dependencies": {
|
|
18
19
|
"@inquirer/prompts": "7.10.1",
|
|
19
|
-
"@skillsmith/core": "0.4.
|
|
20
|
+
"@skillsmith/core": "^0.4.16",
|
|
20
21
|
"chalk": "5.6.2",
|
|
21
22
|
"cli-table3": "0.6.5",
|
|
22
23
|
"commander": "12.1.0",
|