@localskills/cli 0.10.0 → 0.11.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.
- package/dist/index.js +8 -1
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -12,7 +12,11 @@ var __require = /* @__PURE__ */ ((x3) => typeof require !== "undefined" ? requir
|
|
|
12
12
|
throw Error('Dynamic require of "' + x3 + '" is not supported');
|
|
13
13
|
});
|
|
14
14
|
var __commonJS = (cb, mod) => function __require2() {
|
|
15
|
-
|
|
15
|
+
try {
|
|
16
|
+
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
17
|
+
} catch (e2) {
|
|
18
|
+
throw mod = 0, e2;
|
|
19
|
+
}
|
|
16
20
|
};
|
|
17
21
|
var __copyProps = (to, from, except, desc) => {
|
|
18
22
|
if (from && typeof from === "object" || typeof from === "function") {
|
|
@@ -1171,6 +1175,9 @@ var ProfileNotFoundError = class extends Error {
|
|
|
1171
1175
|
this.source = source;
|
|
1172
1176
|
this.name = "ProfileNotFoundError";
|
|
1173
1177
|
}
|
|
1178
|
+
profileName;
|
|
1179
|
+
availableProfiles;
|
|
1180
|
+
source;
|
|
1174
1181
|
};
|
|
1175
1182
|
var _profileOverride;
|
|
1176
1183
|
function setProfileOverride(name) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@localskills/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.0",
|
|
4
4
|
"description": "CLI for localskills.sh — install agent skills locally",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"@types/node": "20",
|
|
19
19
|
"tsup": "^8",
|
|
20
20
|
"typescript": "^5.7",
|
|
21
|
-
"vitest": "^3",
|
|
21
|
+
"vitest": "^3.2.6",
|
|
22
22
|
"@localskills/shared": "0.0.0",
|
|
23
23
|
"@localskills/tsconfig": "0.0.0"
|
|
24
24
|
},
|