protovibe 1.1.0 → 1.1.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/index.mjs +5 -0
- package/package.json +3 -2
package/dist/index.mjs
CHANGED
|
@@ -645,5 +645,10 @@ function App({ terminalWidth: terminalWidth2 }) {
|
|
|
645
645
|
}
|
|
646
646
|
|
|
647
647
|
// src/index.tsx
|
|
648
|
+
import { createRequire } from "module";
|
|
649
|
+
import updateNotifier from "update-notifier";
|
|
650
|
+
var require2 = createRequire(import.meta.url);
|
|
651
|
+
var pkg = require2("../package.json");
|
|
652
|
+
updateNotifier({ pkg }).notify();
|
|
648
653
|
var terminalWidth = process.stdout.columns ?? 80;
|
|
649
654
|
render(/* @__PURE__ */ React5.createElement(App, { terminalWidth }));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "protovibe",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "A branded CLI platform layer on top of Claude Code",
|
|
5
5
|
"author": "razorgojo",
|
|
6
6
|
"license": "MIT",
|
|
@@ -40,7 +40,8 @@
|
|
|
40
40
|
"@clack/prompts": "^1.1.0",
|
|
41
41
|
"chalk": "^5.6.2",
|
|
42
42
|
"ink": "^6.8.0",
|
|
43
|
-
"react": "^19.2.4"
|
|
43
|
+
"react": "^19.2.4",
|
|
44
|
+
"update-notifier": "^7.3.1"
|
|
44
45
|
},
|
|
45
46
|
"devDependencies": {
|
|
46
47
|
"@types/node": "^25.5.0",
|