@aiready/cli 0.9.26 → 0.9.28
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 +17 -18
- package/dist/cli.js +499 -520
- package/dist/cli.mjs +517 -515
- package/package.json +4 -4
- package/src/cli.ts +51 -1332
- package/src/commands/consistency.ts +192 -0
- package/src/commands/context.ts +192 -0
- package/src/commands/index.ts +9 -0
- package/src/commands/patterns.ts +179 -0
- package/src/commands/scan.ts +455 -0
- package/src/commands/visualize.ts +253 -0
- package/src/utils/helpers.ts +133 -0
- package/tsconfig.json +5 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,18 +1,17 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
>
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
[32mESM[39m ⚡️ Build success in 186ms
|
|
1
|
+
|
|
2
|
+
> @aiready/cli@0.9.26 build /Users/pengcao/projects/aiready/packages/cli
|
|
3
|
+
> tsup src/index.ts src/cli.ts --format cjs,esm
|
|
4
|
+
|
|
5
|
+
CLI Building entry: src/cli.ts, src/index.ts
|
|
6
|
+
CLI Using tsconfig: tsconfig.json
|
|
7
|
+
CLI tsup v8.5.1
|
|
8
|
+
CLI Target: es2020
|
|
9
|
+
CJS Build start
|
|
10
|
+
ESM Build start
|
|
11
|
+
CJS dist/cli.js 57.70 KB
|
|
12
|
+
CJS dist/index.js 4.93 KB
|
|
13
|
+
CJS ⚡️ Build success in 32ms
|
|
14
|
+
ESM dist/cli.mjs 50.05 KB
|
|
15
|
+
ESM dist/index.mjs 138.00 B
|
|
16
|
+
ESM dist/chunk-5GZDRZ3T.mjs 4.17 KB
|
|
17
|
+
ESM ⚡️ Build success in 32ms
|