offwatch 0.5.13 → 0.5.14

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/postinstall.js +2 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "offwatch",
3
- "version": "0.5.13",
3
+ "version": "0.5.14",
4
4
  "description": "Offwatch — orchestrate AI agent teams to automate dev work",
5
5
  "type": "module",
6
6
  "bin": {
package/postinstall.js CHANGED
@@ -4,11 +4,8 @@ import { fileURLToPath } from "url";
4
4
 
5
5
  const __dirname = dirname(fileURLToPath(import.meta.url));
6
6
 
7
- // Skip download in monorepo development
8
- if (process.cwd().includes("node_modules")) {
9
- if (process.env.DEBUG) {
10
- console.debug(`[DEBUG] downloading CLI binary`);
11
- }
7
+ // Skip download in monorepo development (workspace packages are used directly)
8
+ if (!process.cwd().includes("node_modules")) {
12
9
  loadCLIBinPath(__dirname).then(
13
10
  () => {
14
11
  process.exit(0);