@knapsack/doctor 4.98.1 → 4.98.2--canary.7909.8fa6ced.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.
@@ -1,12 +1,22 @@
1
- $ tsc -p tsconfig.test.json && vitest run
1
+ $ vitest run
2
2
 
3
3
   RUN  v4.1.9 /home/runner/work/app-monorepo/app-monorepo/libs/doctor
4
4
 
5
- ✓ src/v4/detect/ui.test.ts (6 tests) 26ms
5
+ ✓ src/v4/detect/ui.test.ts (6 tests) 11ms
6
+ stderr | src/branch-reconcile-data-loss.test.ts > the doctor MASKS overlay-window duplication (CX-1351 Bug 2)
7
+ Block with id "4f3tc2Ymq6" does not exist, removing.
8
+
6
9
  stderr | src/fix-app-client-data.test.ts > orphaned blocks
7
10
  Block with id "4f3tc2Ymq6" does not exist, removing.
8
- Block with id "avR0lhkLyG" does not exist, removing.
11
+ Block with id "K8oBhmIpXR" does not exist, removing.
12
+
13
+ stderr | src/branch-reconcile-data-loss.test.ts > control: without the concurrent-edit collision, the new page survives the merge
14
+ Block with id "4f3tc2Ymq6" does not exist, removing.
15
+
16
+ stderr | src/branch-reconcile-data-loss.test.ts > a page built on a branch survives another branch merging to main (CX-1351)
17
+ Block with id "4f3tc2Ymq6" does not exist, removing.
9
18
 
19
+ ✓ src/branch-reconcile-data-loss.test.ts (3 tests) 45ms
10
20
  stderr | src/fix-app-client-data.test.ts > orphaned demos
11
21
  Block with id "4f3tc2Ymq6" does not exist, removing.
12
22
 
@@ -19,10 +29,10 @@ Block with id "avR0lhkLyG" does not exist, removing.
19
29
  stderr | src/fix-app-client-data.test.ts > fixes bad navstate
20
30
  Block with id "4f3tc2Ymq6" does not exist, removing.
21
31
 
22
- ✓ src/fix-app-client-data.test.ts (5 tests) 61ms
32
+ ✓ src/fix-app-client-data.test.ts (5 tests) 67ms
23
33
 
24
-  Test Files  2 passed (2)
25
-  Tests  11 passed (11)
26
-  Start at  20:01:54
27
-  Duration  1.02s (transform 430ms, setup 0ms, import 1.50s, tests 87ms, environment 0ms)
34
+  Test Files  3 passed (3)
35
+  Tests  13 passed | 1 expected fail (14)
36
+  Start at  22:28:16
37
+  Duration  606ms (transform 466ms, setup 0ms, import 1.30s, tests 123ms, environment 0ms)
28
38
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@knapsack/doctor",
3
3
  "description": "",
4
- "version": "4.98.1",
4
+ "version": "4.98.2--canary.7909.8fa6ced.0",
5
5
  "type": "module",
6
6
  "exports": {
7
7
  ".": {
@@ -16,16 +16,16 @@
16
16
  "build": "tsc",
17
17
  "clean": "rm -rf ./dist",
18
18
  "lint": "eslint ./",
19
- "test": "tsc -p tsconfig.test.json && vitest run"
19
+ "test": "vitest run"
20
20
  },
21
21
  "dependencies": {
22
- "@knapsack/utils": "4.98.1"
22
+ "@knapsack/utils": "4.98.2--canary.7909.8fa6ced.0"
23
23
  },
24
24
  "devDependencies": {
25
- "@knapsack/eslint-config-starter": "4.98.1",
26
- "@knapsack/prettier-config": "4.98.1",
27
- "@knapsack/types": "4.98.1",
28
- "@knapsack/typescript-config-starter": "4.98.1",
25
+ "@knapsack/eslint-config-starter": "4.98.2--canary.7909.8fa6ced.0",
26
+ "@knapsack/prettier-config": "4.98.2--canary.7909.8fa6ced.0",
27
+ "@knapsack/types": "4.98.2--canary.7909.8fa6ced.0",
28
+ "@knapsack/typescript-config-starter": "4.98.2--canary.7909.8fa6ced.0",
29
29
  "@types/node": "^24.13.2",
30
30
  "eslint": "^9.20.0",
31
31
  "typescript": "^6.0.3",
@@ -40,5 +40,5 @@
40
40
  "directory": "libs/doctor",
41
41
  "type": "git"
42
42
  },
43
- "gitHead": "3a1b2f0b867e7c03ba640def33c76dbf1a63b4e0"
43
+ "gitHead": "8fa6ced151ace367d1badbcf02ccbb39672dbf2f"
44
44
  }
package/tsconfig.json CHANGED
@@ -5,11 +5,5 @@
5
5
  "strictNullChecks": false,
6
6
  "outDir": "./dist"
7
7
  },
8
- "include": ["./src"],
9
- "exclude": [
10
- "src/**/*.test.ts",
11
- "src/**/*.test.tsx",
12
- "src/**/*.spec.ts",
13
- "src/**/*.spec.tsx"
14
- ]
8
+ "include": ["./src"]
15
9
  }