@checkstack/announcement-backend 0.3.1 → 0.3.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +33 -0
  2. package/package.json +11 -10
  3. package/tsconfig.json +32 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,38 @@
1
1
  # @checkstack/announcement-backend
2
2
 
3
+ ## 0.3.3
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/cache-api@0.2.3
11
+ - @checkstack/command-backend@0.1.23
12
+ - @checkstack/announcement-common@0.3.0
13
+ - @checkstack/cache-utils@0.2.3
14
+ - @checkstack/common@0.7.0
15
+ - @checkstack/signal-common@0.2.0
16
+
17
+ ## 0.3.2
18
+
19
+ ### Patch Changes
20
+
21
+ - 32d52c6: chore: add `drizzle-kit` as a dev dependency
22
+
23
+ Lets each backend package run `drizzle-kit generate` locally without
24
+ relying on the workspace-level binary. No runtime impact — devDeps
25
+ only.
26
+
27
+ - Updated dependencies [32d52c6]
28
+ - Updated dependencies [32d52c6]
29
+ - Updated dependencies [32d52c6]
30
+ - @checkstack/backend-api@0.14.0
31
+ - @checkstack/auth-backend@0.4.22
32
+ - @checkstack/cache-api@0.2.2
33
+ - @checkstack/command-backend@0.1.22
34
+ - @checkstack/cache-utils@0.2.2
35
+
3
36
  ## 0.3.1
4
37
 
5
38
  ### Patch Changes
package/package.json CHANGED
@@ -1,26 +1,26 @@
1
1
  {
2
2
  "name": "@checkstack/announcement-backend",
3
- "version": "0.3.1",
3
+ "version": "0.3.3",
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"
14
14
  },
15
15
  "dependencies": {
16
- "@checkstack/backend-api": "0.13.0",
17
- "@checkstack/cache-api": "0.2.0",
18
- "@checkstack/cache-utils": "0.2.0",
19
- "@checkstack/announcement-common": "0.2.2",
20
- "@checkstack/auth-backend": "0.4.20",
21
- "@checkstack/command-backend": "0.1.20",
16
+ "@checkstack/backend-api": "0.14.0",
17
+ "@checkstack/cache-api": "0.2.2",
18
+ "@checkstack/cache-utils": "0.2.2",
19
+ "@checkstack/announcement-common": "0.3.0",
20
+ "@checkstack/auth-backend": "0.4.22",
21
+ "@checkstack/command-backend": "0.1.22",
22
22
  "@checkstack/common": "0.7.0",
23
- "@checkstack/signal-common": "0.1.10",
23
+ "@checkstack/signal-common": "0.2.0",
24
24
  "drizzle-orm": "^0.45.0",
25
25
  "zod": "^4.2.1",
26
26
  "@orpc/server": "^1.13.2"
@@ -28,9 +28,10 @@
28
28
  "devDependencies": {
29
29
  "@checkstack/drizzle-helper": "0.0.4",
30
30
  "@checkstack/scripts": "0.1.2",
31
- "@checkstack/test-utils-backend": "0.1.20",
31
+ "@checkstack/test-utils-backend": "0.1.22",
32
32
  "@checkstack/tsconfig": "0.0.5",
33
33
  "@types/bun": "^1.0.0",
34
+ "drizzle-kit": "^0.31.10",
34
35
  "typescript": "^5.0.0"
35
36
  }
36
37
  }
package/tsconfig.json CHANGED
@@ -2,5 +2,37 @@
2
2
  "extends": "@checkstack/tsconfig/backend.json",
3
3
  "include": [
4
4
  "src"
5
+ ],
6
+ "references": [
7
+ {
8
+ "path": "../announcement-common"
9
+ },
10
+ {
11
+ "path": "../auth-backend"
12
+ },
13
+ {
14
+ "path": "../backend-api"
15
+ },
16
+ {
17
+ "path": "../cache-api"
18
+ },
19
+ {
20
+ "path": "../cache-utils"
21
+ },
22
+ {
23
+ "path": "../command-backend"
24
+ },
25
+ {
26
+ "path": "../common"
27
+ },
28
+ {
29
+ "path": "../drizzle-helper"
30
+ },
31
+ {
32
+ "path": "../signal-common"
33
+ },
34
+ {
35
+ "path": "../test-utils-backend"
36
+ }
5
37
  ]
6
38
  }