@vortex-ai/cli 0.1.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.
- package/.turbo/turbo-build.log +15 -0
- package/.turbo/turbo-check-types.log +5 -0
- package/.vortex-bm25.json +1 -0
- package/.vortex.db +0 -0
- package/README.md +155 -0
- package/dist/chunk-C6P2IO65.mjs +41 -0
- package/dist/chunk-FC2JQ4EC.mjs +119 -0
- package/dist/chunk-PNFSQC3M.mjs +4792 -0
- package/dist/chunk-PXYQG752.mjs +99 -0
- package/dist/dist-2OLJAZT5.mjs +1244 -0
- package/dist/dist-BPCHQHDN.mjs +5 -0
- package/dist/dist-DAPSACZG.mjs +5 -0
- package/dist/index.js +886 -0
- package/dist/index.mjs +880 -0
- package/dist/multipart-parser-DVTUXEEQ.mjs +371 -0
- package/dist/src-IOKO4UCP.mjs +1408 -0
- package/package.json +43 -0
- package/src/commands/analyze.ts +74 -0
- package/src/commands/cache.ts +33 -0
- package/src/commands/fix-nitbits.ts +63 -0
- package/src/commands/graph.ts +59 -0
- package/src/commands/init.ts +37 -0
- package/src/commands/issue.ts +79 -0
- package/src/commands/review.ts +218 -0
- package/src/commands/search.ts +67 -0
- package/src/commands/solve-issue.ts +69 -0
- package/src/commands/solve.ts +177 -0
- package/src/commands/suggest.ts +54 -0
- package/src/commands/watch.ts +56 -0
- package/src/index.ts +147 -0
- package/tsconfig.json +5 -0
- package/vortex-ai-0.1.0.tgz +0 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
|
|
2
|
+
|
|
3
|
+
> vortex-ai-cli@0.1.0 build /home/divyanshu/OSS/Personal_Projects/vortex/packages/cli
|
|
4
|
+
> tsup src/index.ts --format cjs,esm --external @xenova/transformers
|
|
5
|
+
|
|
6
|
+
CLI Building entry: src/index.ts
|
|
7
|
+
CLI Using tsconfig: tsconfig.json
|
|
8
|
+
CLI tsup v8.5.1
|
|
9
|
+
CLI Target: es2022
|
|
10
|
+
CJS Build start
|
|
11
|
+
ESM Build start
|
|
12
|
+
ESM dist/index.mjs 35.20 KB
|
|
13
|
+
ESM ⚡️ Build success in 50ms
|
|
14
|
+
CJS dist/index.js 36.43 KB
|
|
15
|
+
CJS ⚡️ Build success in 51ms
|