repomind 0.2.3 → 0.2.5
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/dist/index.js +2 -2
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#!/usr/bin/env
|
|
1
|
+
#!/usr/bin/env bun
|
|
2
2
|
var __create = Object.create;
|
|
3
3
|
var __defProp = Object.defineProperty;
|
|
4
4
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -40903,7 +40903,7 @@ function SplitApp({
|
|
|
40903
40903
|
return;
|
|
40904
40904
|
}
|
|
40905
40905
|
if (authToken) {
|
|
40906
|
-
deps.apiPost("/split/confirm", { group }, authToken).catch((err) => {
|
|
40906
|
+
await deps.apiPost("/split/confirm", { group }, authToken).catch((err) => {
|
|
40907
40907
|
console.error("[split-confirm] failed:", err.message ?? err);
|
|
40908
40908
|
});
|
|
40909
40909
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "repomind",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.5",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "AI-powered git commit messages and repository insights",
|
|
6
6
|
"keywords": ["git", "ai", "commit", "cli"],
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
},
|
|
16
16
|
"files": ["dist"],
|
|
17
17
|
"scripts": {
|
|
18
|
-
"build": "esbuild src/index.ts --bundle --platform=node --target=node22 --format=esm --outfile=dist/index.js --alias:react-devtools-core=./src/stubs/react-devtools-core.js --banner:js='#!/usr/bin/env
|
|
18
|
+
"build": "esbuild src/index.ts --bundle --platform=node --target=node22 --format=esm --outfile=dist/index.js --alias:react-devtools-core=./src/stubs/react-devtools-core.js --banner:js='#!/usr/bin/env bun' --define:process.env.REPOMIND_API_URL=undefined --define:process.env.REPOMIND_WEB_BASE_URL=undefined",
|
|
19
19
|
"dev": "bun --env-file=.env.local run src/index.ts",
|
|
20
20
|
"test": "bun test --coverage --pass-with-no-tests",
|
|
21
21
|
"typecheck": "tsc --noEmit"
|