@checkstack/gitops-backend 0.2.5 → 0.2.7

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,33 @@
1
1
  # @checkstack/gitops-backend
2
2
 
3
+ ## 0.2.7
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [302cd3f]
8
+ - @checkstack/backend-api@0.14.1
9
+ - @checkstack/command-backend@0.1.23
10
+ - @checkstack/queue-api@0.2.17
11
+ - @checkstack/common@0.7.0
12
+ - @checkstack/gitops-common@0.2.1
13
+
14
+ ## 0.2.6
15
+
16
+ ### Patch Changes
17
+
18
+ - 32d52c6: chore: add `drizzle-kit` as a dev dependency
19
+
20
+ Lets each backend package run `drizzle-kit generate` locally without
21
+ relying on the workspace-level binary. No runtime impact — devDeps
22
+ only.
23
+
24
+ - Updated dependencies [32d52c6]
25
+ - Updated dependencies [32d52c6]
26
+ - Updated dependencies [32d52c6]
27
+ - @checkstack/backend-api@0.14.0
28
+ - @checkstack/command-backend@0.1.22
29
+ - @checkstack/queue-api@0.2.16
30
+
3
31
  ## 0.2.5
4
32
 
5
33
  ### Patch Changes
package/package.json CHANGED
@@ -1,23 +1,23 @@
1
1
  {
2
2
  "name": "@checkstack/gitops-backend",
3
- "version": "0.2.5",
3
+ "version": "0.2.7",
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",
16
+ "@checkstack/backend-api": "0.14.0",
17
17
  "@checkstack/gitops-common": "0.2.1",
18
18
  "@checkstack/common": "0.7.0",
19
- "@checkstack/command-backend": "0.1.20",
20
- "@checkstack/queue-api": "0.2.14",
19
+ "@checkstack/command-backend": "0.1.22",
20
+ "@checkstack/queue-api": "0.2.16",
21
21
  "@orpc/server": "^1.13.2",
22
22
  "drizzle-orm": "^0.45.0",
23
23
  "minimatch": "^10.0.0",
@@ -32,6 +32,7 @@
32
32
  "@types/bun": "^1.3.5",
33
33
  "@types/node": "^20.0.0",
34
34
  "@types/uuid": "^11.0.0",
35
+ "drizzle-kit": "^0.31.10",
35
36
  "typescript": "^5.0.0"
36
37
  }
37
38
  }
package/tsconfig.json CHANGED
@@ -1,4 +1,26 @@
1
1
  {
2
2
  "extends": "@checkstack/tsconfig/backend.json",
3
- "include": ["src"]
3
+ "include": [
4
+ "src"
5
+ ],
6
+ "references": [
7
+ {
8
+ "path": "../backend-api"
9
+ },
10
+ {
11
+ "path": "../command-backend"
12
+ },
13
+ {
14
+ "path": "../common"
15
+ },
16
+ {
17
+ "path": "../drizzle-helper"
18
+ },
19
+ {
20
+ "path": "../gitops-common"
21
+ },
22
+ {
23
+ "path": "../queue-api"
24
+ }
25
+ ]
4
26
  }