cvc-tui 0.4.1 → 0.4.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.
- package/dist/entry.js +1 -0
- package/package.json +2 -2
package/dist/entry.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env -S node --max-old-space-size=8192 --expose-gc
|
|
2
|
+
import{createRequire as __cvcCreateRequire}from'module';import{fileURLToPath as __cvcFileURLToPath}from'url';import{dirname as __cvcDirname}from'path';const require=__cvcCreateRequire(import.meta.url);const __filename=__cvcFileURLToPath(import.meta.url);const __dirname=__cvcDirname(__filename);
|
|
2
3
|
var __create = Object.create;
|
|
3
4
|
var __defProp = Object.defineProperty;
|
|
4
5
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cvc-tui",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "CVC — Cognitive Version Control terminal UI (Ink + React 19). Sidecar binary embedded in the cvc Python wheel.",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"scripts": {
|
|
39
39
|
"dev": "bun run src/entry.tsx 2>/dev/null || tsx --watch src/entry.tsx",
|
|
40
40
|
"start": "bun run src/entry.tsx 2>/dev/null || tsx src/entry.tsx",
|
|
41
|
-
"build": "rm -rf dist && (bun build src/entry.tsx --target=node --outfile=dist/entry.js 2>/dev/null || esbuild src/entry.tsx --bundle --platform=node --format=esm --target=node20 --packages=bundle --alias:react-devtools-core=./src/lib/react-devtools-stub.ts --outfile=dist/entry.js) && chmod +x dist/entry.js",
|
|
41
|
+
"build": "rm -rf dist && (bun build src/entry.tsx --target=node --outfile=dist/entry.js 2>/dev/null || esbuild src/entry.tsx --bundle --platform=node --format=esm --target=node20 --packages=bundle --alias:react-devtools-core=./src/lib/react-devtools-stub.ts --banner:js=\"import{createRequire as __cvcCreateRequire}from'module';import{fileURLToPath as __cvcFileURLToPath}from'url';import{dirname as __cvcDirname}from'path';const require=__cvcCreateRequire(import.meta.url);const __filename=__cvcFileURLToPath(import.meta.url);const __dirname=__cvcDirname(__filename);\" --outfile=dist/entry.js) && chmod +x dist/entry.js",
|
|
42
42
|
"build:compile": "bun build src/entry.tsx --compile --outfile=dist/cvc-tui",
|
|
43
43
|
"type-check": "tsc --noEmit -p tsconfig.json",
|
|
44
44
|
"test": "vitest run",
|