@funkai/cli 0.1.0 → 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 -16
- package/CHANGELOG.md +15 -0
- package/README.md +1 -1
- package/dist/index.mjs +5018 -298
- package/dist/index.mjs.map +1 -1
- package/package.json +5 -5
- package/src/commands/generate.ts +4 -62
- package/src/commands/prompts/generate.ts +75 -48
- package/src/commands/prompts/lint.ts +62 -44
- package/src/commands/prompts/setup.ts +2 -7
- package/src/commands/validate.ts +4 -27
- package/src/index.ts +6 -1
- package/src/lib/prompts/codegen.ts +12 -16
- package/src/lib/prompts/flatten.ts +2 -7
- package/src/lib/prompts/frontmatter.ts +28 -33
- package/src/lib/prompts/lint.ts +8 -8
- package/src/lib/prompts/paths.ts +5 -5
- package/src/lib/prompts/pipeline.ts +6 -7
- package/.turbo/turbo-test$colon$coverage.log +0 -36
- package/.turbo/turbo-test.log +0 -26
- package/.turbo/turbo-typecheck.log +0 -4
- package/coverage/lcov-report/base.css +0 -224
- package/coverage/lcov-report/block-navigation.js +0 -87
- package/coverage/lcov-report/commands/create.ts.html +0 -208
- package/coverage/lcov-report/commands/generate.ts.html +0 -388
- package/coverage/lcov-report/commands/index.html +0 -161
- package/coverage/lcov-report/commands/lint.ts.html +0 -331
- package/coverage/lcov-report/commands/setup.ts.html +0 -493
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/index.html +0 -131
- package/coverage/lcov-report/lib/codegen.ts.html +0 -805
- package/coverage/lcov-report/lib/extract-variables.ts.html +0 -181
- package/coverage/lcov-report/lib/flatten.ts.html +0 -385
- package/coverage/lcov-report/lib/frontmatter.ts.html +0 -487
- package/coverage/lcov-report/lib/index.html +0 -191
- package/coverage/lcov-report/lib/lint.ts.html +0 -307
- package/coverage/lcov-report/lib/paths.ts.html +0 -487
- package/coverage/lcov-report/prettify.css +0 -1
- package/coverage/lcov-report/prettify.js +0 -2
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +0 -210
- package/coverage/lcov.info +0 -749
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,16 +1,15 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
>
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
[
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
[90m├───────────────────────────╯[39m
|
|
1
|
+
|
|
2
|
+
> @funkai/cli@0.1.2 build /home/runner/work/funkai/funkai/packages/cli
|
|
3
|
+
> kidd build
|
|
4
|
+
|
|
5
|
+
[?25l│
|
|
6
|
+
â—’ Bundling with tsdown...
|
|
7
|
+
[1G[Jâ—‡ Build complete
|
|
8
|
+
[?25h│
|
|
9
|
+
◇ Bundle ──────────────────╮
|
|
10
|
+
│ │
|
|
11
|
+
│ entry dist/index.mjs │
|
|
12
|
+
│ output dist │
|
|
13
|
+
│ version 0.1.2 │
|
|
14
|
+
│ │
|
|
15
|
+
├───────────────────────────╯
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @funkai/cli
|
|
2
2
|
|
|
3
|
+
## 0.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [153c393]
|
|
8
|
+
- @funkai/prompts@0.1.2
|
|
9
|
+
|
|
10
|
+
## 0.1.1
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 1beb2d2: Update package README documentation
|
|
15
|
+
- Updated dependencies [1beb2d2]
|
|
16
|
+
- @funkai/prompts@0.1.1
|
|
17
|
+
|
|
3
18
|
## 0.1.0
|
|
4
19
|
|
|
5
20
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
## Features
|
|
11
11
|
|
|
12
12
|
- :gear: **Code generation** — Generate typed TypeScript modules from `.prompt` files.
|
|
13
|
-
- :mag: **
|
|
13
|
+
- :mag: **Validation** — Validate prompt files for undefined and unused variables.
|
|
14
14
|
- :sparkles: **Scaffolding** — Create new `.prompt` files and partials with a single command.
|
|
15
15
|
- :wrench: **Project setup** — Configure VSCode, `.gitignore`, and `tsconfig.json` interactively.
|
|
16
16
|
|