glop.dev 0.7.0 → 0.8.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 +3 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -593,7 +593,8 @@ var initCommand = new Command5("init").description("Install Claude Code hooks in
|
|
|
593
593
|
hooks.SessionEnd = [hookGroup];
|
|
594
594
|
settings.hooks = hooks;
|
|
595
595
|
fs4.writeFileSync(settingsFile, JSON.stringify(settings, null, 2));
|
|
596
|
-
|
|
596
|
+
const workspace = config.workspace_name || config.workspace_slug || config.workspace_id || "default";
|
|
597
|
+
console.log(`${hadHooks ? "\u2713 glop updated" : "\u2713 glop connected"} to workspace "${workspace}" \u2014 sessions will appear at ${config.server_url}/live`);
|
|
597
598
|
});
|
|
598
599
|
|
|
599
600
|
// src/commands/update.ts
|
|
@@ -851,7 +852,7 @@ async function checkForUpdate(currentVersion) {
|
|
|
851
852
|
// package.json
|
|
852
853
|
var package_default = {
|
|
853
854
|
name: "glop.dev",
|
|
854
|
-
version: "0.
|
|
855
|
+
version: "0.8.0",
|
|
855
856
|
type: "module",
|
|
856
857
|
bin: {
|
|
857
858
|
glop: "./dist/index.js"
|