tempora-cli 0.1.4 → 0.1.5
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 +2 -2
- package/dist/registry.json +1 -1
- package/package.json +2 -2
- package/registry.json +1 -1
package/dist/index.js
CHANGED
|
@@ -215,11 +215,11 @@ async function loadRegistry() {
|
|
|
215
215
|
return data;
|
|
216
216
|
}
|
|
217
217
|
} catch {
|
|
218
|
-
|
|
218
|
+
process.stdout.write(" Using local registry (could not reach GitHub)\n");
|
|
219
219
|
}
|
|
220
220
|
const registryPath = path4.resolve(__dirname2, "./registry.json");
|
|
221
221
|
if (!fs3.existsSync(registryPath)) {
|
|
222
|
-
throw new Error("Registry not found. Please
|
|
222
|
+
throw new Error("Registry not found. Please reinstall: npm install -g tempora-cli");
|
|
223
223
|
}
|
|
224
224
|
const raw = fs3.readFileSync(registryPath, "utf-8");
|
|
225
225
|
return JSON.parse(raw);
|
package/dist/registry.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tempora-cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "Tempora CLI — scaffold projects from curated templates",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
},
|
|
34
34
|
"scripts": {
|
|
35
35
|
"build": "tsup && node scripts/buildRegistry.mjs",
|
|
36
|
-
"dev": "
|
|
36
|
+
"dev": "tsup && node scripts/buildRegistry.mjs",
|
|
37
37
|
"lint": "tsc --noEmit"
|
|
38
38
|
}
|
|
39
39
|
}
|