draht-claude 2026.7.11 → 2026.7.12

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/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## [2026.7.12] - 2026-07-12
4
+
5
+ ### Changed
6
+
7
+ - migrate workspace checks to TypeScript 7
8
+
3
9
  ## [2026.7.11] - 2026-07-11
4
10
 
5
11
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "draht-claude",
3
- "version": "2026.7.11",
3
+ "version": "2026.7.12",
4
4
  "description": "Draht GSD, multi-agent, TDD and DDD workflows as a Claude Code plugin. Install with `npx draht-claude install`.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -25,7 +25,7 @@
25
25
  "prepublishOnly": "node ../../scripts/sync-draht-tools.mjs"
26
26
  },
27
27
  "dependencies": {
28
- "@draht/tools": "2026.7.11"
28
+ "@draht/tools": "2026.7.12"
29
29
  },
30
30
  "keywords": [
31
31
  "claude-code",
@@ -107,7 +107,7 @@ fs.appendFileSync(LOG_FILE, JSON.stringify(entry) + "\n");
107
107
  if (status === "pass") {
108
108
  // Type check
109
109
  try {
110
- const tsCmd = toolchain.pm === "bun" ? "bun run tsgo --noEmit 2>&1" : "npx tsc --noEmit 2>&1";
110
+ const tsCmd = toolchain.pm === "bun" ? "bun run tsc --noEmit 2>&1" : "npx tsc --noEmit 2>&1";
111
111
  execSync(tsCmd, { timeout: 30000, encoding: "utf-8", cwd });
112
112
  // Run tests
113
113
  try {
@@ -76,7 +76,7 @@ const issues = [];
76
76
 
77
77
  // 1. TypeScript check
78
78
  try {
79
- const tsCmd = toolchain.pm === "bun" ? "bun run tsgo --noEmit 2>&1" : "npx tsc --noEmit 2>&1";
79
+ const tsCmd = toolchain.pm === "bun" ? "bun run tsc --noEmit 2>&1" : "npx tsc --noEmit 2>&1";
80
80
  execSync(tsCmd, { timeout: 60000, encoding: "utf-8", cwd });
81
81
  } catch (error) {
82
82
  const output = error.stdout || error.stderr || "";