prism-pr 1.0.0-alpha.56 → 1.0.0-alpha.58

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 (2) hide show
  1. package/bin/run.js +8 -0
  2. package/package.json +5 -8
package/bin/run.js CHANGED
@@ -1,4 +1,12 @@
1
1
  #!/usr/bin/env node
2
+
3
+ // Suppress node:sqlite ExperimentalWarning
4
+ const _origEmit = process.emit.bind(process);
5
+ process.emit = function (event, ...args) {
6
+ if (event === 'warning' && args[0]?.name === 'ExperimentalWarning') return false;
7
+ return _origEmit(event, ...args);
8
+ };
9
+
2
10
  import { execute } from '@oclif/core';
3
11
 
4
12
  // If no command specified, default to interactive TUI
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "prism-pr",
3
- "version": "1.0.0-alpha.56",
3
+ "version": "1.0.0-alpha.58",
4
4
  "description": "Intelligent Pull Request review orchestrator for Bitbucket",
5
5
  "type": "module",
6
6
  "bin": {
@@ -51,9 +51,8 @@
51
51
  "@anthropic-ai/sdk": "^0.39.0",
52
52
  "@ast-grep/napi": "^0.42.1",
53
53
  "@oclif/core": "^4.2.0",
54
- "better-sqlite3": "^12.8.0",
55
54
  "cli-table3": "^0.6.5",
56
- "drizzle-orm": "^0.38.0",
55
+ "drizzle-orm": "1.0.0-beta.21",
57
56
  "ink": "^5.1.0",
58
57
  "ink-text-input": "^6.0.0",
59
58
  "ora": "^8.1.0",
@@ -63,15 +62,14 @@
63
62
  },
64
63
  "devDependencies": {
65
64
  "@oclif/test": "^4.1.0",
66
- "@types/better-sqlite3": "^7.6.13",
67
- "@types/node": "^20.17.0",
65
+ "@types/node": "^24.12.0",
68
66
  "@types/react": "^18.3.0",
69
67
  "@typescript-eslint/eslint-plugin": "^8.19.0",
70
68
  "@typescript-eslint/parser": "^8.19.0",
71
69
  "@vitest/coverage-v8": "^3.0.0",
72
70
  "commit-and-tag-version": "^12.7.1",
73
71
  "copyfiles": "^2.4.1",
74
- "drizzle-kit": "^0.30.0",
72
+ "drizzle-kit": "1.0.0-beta.21",
75
73
  "eslint": "^9.17.0",
76
74
  "eslint-config-prettier": "^9.1.0",
77
75
  "ink-testing-library": "^4.0.0",
@@ -82,7 +80,7 @@
82
80
  "vitest": "^3.0.0"
83
81
  },
84
82
  "engines": {
85
- "node": ">=20.0.0"
83
+ "node": ">=22.5.0"
86
84
  },
87
85
  "files": [
88
86
  "dist",
@@ -91,7 +89,6 @@
91
89
  ],
92
90
  "pnpm": {
93
91
  "onlyBuiltDependencies": [
94
- "better-sqlite3",
95
92
  "esbuild",
96
93
  "msw"
97
94
  ]