@akiojin/gwt 9.11.0 → 9.11.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akiojin/gwt",
3
- "version": "9.11.0",
3
+ "version": "9.11.1",
4
4
  "description": "Desktop GUI for Git worktree management and coding agent launch",
5
5
  "type": "module",
6
6
  "bin": {
@@ -11,7 +11,8 @@
11
11
  "dev": "cargo run -p gwt --bin gwt",
12
12
  "build": "cargo build --release -p gwt --bin gwt --bin gwtd",
13
13
  "test": "cargo test -p gwt-core -p gwt --all-features",
14
- "test:frontend-bundle": "node --check crates/gwt/web/app.js",
14
+ "test:frontend-bundle": "node --check crates/gwt/web/app.js && node --check crates/gwt/web/branch-cleanup-modal.js",
15
+ "test:frontend-smoke": "node --test crates/gwt/web/__tests__/branch-cleanup.smoke.test.mjs",
15
16
  "test:release-assets": "node scripts/test_release_assets.cjs",
16
17
  "test:release-flow": "bash scripts/check-release-flow.sh",
17
18
  "test:all": "bash scripts/test-all.sh",
@@ -44,6 +45,7 @@
44
45
  "packageManager": "pnpm@10.29.2",
45
46
  "devDependencies": {
46
47
  "@commitlint/cli": "^20.5.0",
47
- "@commitlint/config-conventional": "^20.5.0"
48
+ "@commitlint/config-conventional": "^20.5.0",
49
+ "linkedom": "^0.18.12"
48
50
  }
49
51
  }
@@ -17,7 +17,11 @@ pid_rust=$!
17
17
  bash scripts/check-release-flow.sh &
18
18
  pid_release_flow=$!
19
19
 
20
+ node --test crates/gwt/web/__tests__/branch-cleanup.smoke.test.mjs &
21
+ pid_frontend_smoke=$!
22
+
20
23
  fail=0
21
24
  wait $pid_rust || fail=1
22
25
  wait $pid_release_flow || fail=1
26
+ wait $pid_frontend_smoke || fail=1
23
27
  exit $fail
@@ -81,7 +81,7 @@ run("package scripts keep the GUI front door and release contract explicit", ()
81
81
  assert.equal(pkg.scripts["test:release-assets"], "node scripts/test_release_assets.cjs");
82
82
  assert.equal(
83
83
  pkg.scripts["test:frontend-bundle"],
84
- "node --check crates/gwt/web/app.js"
84
+ "node --check crates/gwt/web/app.js && node --check crates/gwt/web/branch-cleanup-modal.js"
85
85
  );
86
86
  assert.equal(pkg.scripts["test:release-flow"], "bash scripts/check-release-flow.sh");
87
87
  assert.equal(pkg.scripts.dev, "cargo run -p gwt --bin gwt");