@checkstack/theme-backend 0.1.25 → 0.1.27

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,31 @@
1
1
  # @checkstack/theme-backend
2
2
 
3
+ ## 0.1.27
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [302cd3f]
8
+ - @checkstack/backend-api@0.14.1
9
+ - @checkstack/auth-backend@0.4.23
10
+ - @checkstack/common@0.7.0
11
+ - @checkstack/theme-common@0.1.9
12
+
13
+ ## 0.1.26
14
+
15
+ ### Patch Changes
16
+
17
+ - 32d52c6: chore: add `drizzle-kit` as a dev dependency
18
+
19
+ Lets each backend package run `drizzle-kit generate` locally without
20
+ relying on the workspace-level binary. No runtime impact — devDeps
21
+ only.
22
+
23
+ - Updated dependencies [32d52c6]
24
+ - Updated dependencies [32d52c6]
25
+ - Updated dependencies [32d52c6]
26
+ - @checkstack/backend-api@0.14.0
27
+ - @checkstack/auth-backend@0.4.22
28
+
3
29
  ## 0.1.25
4
30
 
5
31
  ### Patch Changes
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@checkstack/theme-backend",
3
- "version": "0.1.25",
3
+ "version": "0.1.27",
4
4
  "type": "module",
5
5
  "main": "src/index.ts",
6
6
  "checkstack": {
7
7
  "type": "backend"
8
8
  },
9
9
  "scripts": {
10
- "typecheck": "tsc --noEmit",
10
+ "typecheck": "tsgo -b",
11
11
  "generate": "drizzle-kit generate",
12
12
  "lint": "bun run lint:code",
13
13
  "lint:code": "eslint . --max-warnings 0",
@@ -15,8 +15,8 @@
15
15
  },
16
16
  "dependencies": {
17
17
  "@checkstack/theme-common": "0.1.9",
18
- "@checkstack/backend-api": "0.13.0",
19
- "@checkstack/auth-backend": "0.4.20",
18
+ "@checkstack/backend-api": "0.14.0",
19
+ "@checkstack/auth-backend": "0.4.22",
20
20
  "drizzle-orm": "^0.45.0",
21
21
  "zod": "^4.2.1",
22
22
  "@checkstack/common": "0.7.0",
@@ -26,8 +26,9 @@
26
26
  "@checkstack/drizzle-helper": "0.0.4",
27
27
  "@checkstack/scripts": "0.1.2",
28
28
  "@checkstack/tsconfig": "0.0.5",
29
- "@checkstack/test-utils-backend": "0.1.20",
29
+ "@checkstack/test-utils-backend": "0.1.22",
30
30
  "@types/node": "^20.0.0",
31
+ "drizzle-kit": "^0.31.10",
31
32
  "typescript": "^5.0.0"
32
33
  }
33
34
  }
package/tsconfig.json CHANGED
@@ -2,5 +2,25 @@
2
2
  "extends": "@checkstack/tsconfig/backend.json",
3
3
  "include": [
4
4
  "src"
5
+ ],
6
+ "references": [
7
+ {
8
+ "path": "../auth-backend"
9
+ },
10
+ {
11
+ "path": "../backend-api"
12
+ },
13
+ {
14
+ "path": "../common"
15
+ },
16
+ {
17
+ "path": "../drizzle-helper"
18
+ },
19
+ {
20
+ "path": "../test-utils-backend"
21
+ },
22
+ {
23
+ "path": "../theme-common"
24
+ }
5
25
  ]
6
- }
26
+ }