patchrelay 0.54.1 → 0.54.2

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,6 +1,6 @@
1
1
  {
2
2
  "service": "patchrelay",
3
- "version": "0.54.1",
4
- "commit": "0c53d049a5b8",
5
- "builtAt": "2026-04-28T22:15:25.654Z"
3
+ "version": "0.54.2",
4
+ "commit": "28fde578da2e",
5
+ "builtAt": "2026-04-28T22:47:00.733Z"
6
6
  }
package/package.json CHANGED
@@ -1,9 +1,8 @@
1
1
  {
2
2
  "name": "patchrelay",
3
- "version": "0.54.1",
3
+ "version": "0.54.2",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
- "packageManager": "pnpm@10.28.2",
7
6
  "repository": {
8
7
  "type": "git",
9
8
  "url": "git+https://github.com/krasnoperov/patchrelay.git"
@@ -29,20 +28,6 @@
29
28
  "packages/merge-steward",
30
29
  "packages/review-quill"
31
30
  ],
32
- "scripts": {
33
- "dev": "node --watch --experimental-transform-types src/index.ts",
34
- "build": "rm -rf dist && tsgo -p tsconfig.json && chmod +x dist/index.js && node scripts/write-build-info.mjs",
35
- "prepack": "pnpm build",
36
- "start": "node dist/index.js serve",
37
- "doctor": "node dist/index.js doctor",
38
- "restart": "node dist/index.js service restart",
39
- "deploy": "pnpm build && npm install -g . && node dist/index.js service restart",
40
- "lint": "oxlint --ignore-path .gitignore .",
41
- "typecheck": "tsgo -p tsconfig.json --noEmit",
42
- "check": "pnpm typecheck",
43
- "test": "node --experimental-transform-types --test 'test/**/*.test.ts'",
44
- "ci": "pnpm lint && pnpm check && pnpm test && pnpm build"
45
- },
46
31
  "dependencies": {
47
32
  "fastify": "^5.8.5",
48
33
  "fastify-raw-body": "^5.0.0",
@@ -57,5 +42,18 @@
57
42
  "@types/react": "^19.2.14",
58
43
  "@typescript/native-preview": "7.0.0-dev.20260427.1",
59
44
  "oxlint": "^1.62.0"
45
+ },
46
+ "scripts": {
47
+ "dev": "node --watch --experimental-transform-types src/index.ts",
48
+ "build": "rm -rf dist && tsgo -p tsconfig.json && chmod +x dist/index.js && node scripts/write-build-info.mjs",
49
+ "start": "node dist/index.js serve",
50
+ "doctor": "node dist/index.js doctor",
51
+ "restart": "node dist/index.js service restart",
52
+ "deploy": "pnpm build && pnpm add -g . && node dist/index.js service restart",
53
+ "lint": "oxlint --ignore-path .gitignore .",
54
+ "typecheck": "tsgo -p tsconfig.json --noEmit",
55
+ "check": "pnpm typecheck",
56
+ "test": "node --experimental-transform-types --test 'test/**/*.test.ts'",
57
+ "ci": "pnpm lint && pnpm check && pnpm test && pnpm build"
60
58
  }
61
- }
59
+ }