conductor-remote 1.34.2 → 1.34.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "conductor-remote",
3
- "version": "1.34.2",
3
+ "version": "1.34.3",
4
4
  "type": "module",
5
5
  "packageManager": "yarn@4.15.0",
6
6
  "description": "Phone control panel for local Conductor agents. Reads ride SQLite + git; prompts ride Conductor's own dispatch path.",
@@ -42,7 +42,7 @@
42
42
  "dev": "node scripts/dev.ts",
43
43
  "dev:web": "vite",
44
44
  "build": "vite build",
45
- "build:node": "tsc -p tsconfig.build.json",
45
+ "build:node": "tsc -p tsconfig.build.json && cp src/*.applescript dist-node/src/",
46
46
  "preview": "yarn build && yarn start",
47
47
  "gen:icons": "node scripts/gen-icons.ts",
48
48
  "deploy": "yarn build && node bin/cli.js service install",
@@ -50,10 +50,11 @@
50
50
  "typecheck": "tsc -p tsconfig.json",
51
51
  "lint": "biome check .",
52
52
  "fix": "biome check . --fix",
53
- "verify": "yarn typecheck && yarn lint",
53
+ "verify": "yarn typecheck && yarn lint && yarn check:applescript",
54
54
  "release": "semantic-release",
55
55
  "prepack": "yarn build && yarn build:node",
56
- "postinstall": "husky || true"
56
+ "postinstall": "husky || true",
57
+ "check:applescript": "node scripts/check-applescript.ts"
57
58
  },
58
59
  "devDependencies": {
59
60
  "@biomejs/biome": "^2.3.8",