@backcap/cli 0.1.2 → 0.1.4
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.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +9 -9
package/dist/index.cjs
CHANGED
|
@@ -288,7 +288,7 @@ class RegistryError extends Error {
|
|
|
288
288
|
}
|
|
289
289
|
}
|
|
290
290
|
|
|
291
|
-
const FALLBACK_URL = "https://
|
|
291
|
+
const FALLBACK_URL = "https://faroke.github.io/backcap/registry.json";
|
|
292
292
|
async function fetchRegistry(primaryUrl) {
|
|
293
293
|
let data;
|
|
294
294
|
try {
|
package/dist/index.mjs
CHANGED
|
@@ -271,7 +271,7 @@ class RegistryError extends Error {
|
|
|
271
271
|
}
|
|
272
272
|
}
|
|
273
273
|
|
|
274
|
-
const FALLBACK_URL = "https://
|
|
274
|
+
const FALLBACK_URL = "https://faroke.github.io/backcap/registry.json";
|
|
275
275
|
async function fetchRegistry(primaryUrl) {
|
|
276
276
|
let data;
|
|
277
277
|
try {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backcap/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"bin": {
|
|
6
6
|
"backcap": "./dist/index.mjs"
|
|
@@ -14,13 +14,7 @@
|
|
|
14
14
|
"files": [
|
|
15
15
|
"dist"
|
|
16
16
|
],
|
|
17
|
-
"scripts": {
|
|
18
|
-
"build": "unbuild",
|
|
19
|
-
"dev": "unbuild --stub",
|
|
20
|
-
"test": "vitest run"
|
|
21
|
-
},
|
|
22
17
|
"dependencies": {
|
|
23
|
-
"@backcap/shared": "workspace:*",
|
|
24
18
|
"@clack/prompts": "^0.7.0",
|
|
25
19
|
"c12": "^1.11.0",
|
|
26
20
|
"citty": "^0.1.6",
|
|
@@ -28,7 +22,8 @@
|
|
|
28
22
|
"ofetch": "^1.3.4",
|
|
29
23
|
"pathe": "^1.1.2",
|
|
30
24
|
"pkg-types": "^1.1.1",
|
|
31
|
-
"zod": "^3.22.0"
|
|
25
|
+
"zod": "^3.22.0",
|
|
26
|
+
"@backcap/shared": "0.1.2"
|
|
32
27
|
},
|
|
33
28
|
"devDependencies": {
|
|
34
29
|
"unbuild": "^2.0.0"
|
|
@@ -38,5 +33,10 @@
|
|
|
38
33
|
},
|
|
39
34
|
"engines": {
|
|
40
35
|
"node": ">=18"
|
|
36
|
+
},
|
|
37
|
+
"scripts": {
|
|
38
|
+
"build": "unbuild",
|
|
39
|
+
"dev": "unbuild --stub",
|
|
40
|
+
"test": "vitest run"
|
|
41
41
|
}
|
|
42
|
-
}
|
|
42
|
+
}
|