@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.
Files changed (42) hide show
  1. package/.turbo/turbo-build.log +15 -16
  2. package/CHANGELOG.md +15 -0
  3. package/README.md +1 -1
  4. package/dist/index.mjs +5018 -298
  5. package/dist/index.mjs.map +1 -1
  6. package/package.json +5 -5
  7. package/src/commands/generate.ts +4 -62
  8. package/src/commands/prompts/generate.ts +75 -48
  9. package/src/commands/prompts/lint.ts +62 -44
  10. package/src/commands/prompts/setup.ts +2 -7
  11. package/src/commands/validate.ts +4 -27
  12. package/src/index.ts +6 -1
  13. package/src/lib/prompts/codegen.ts +12 -16
  14. package/src/lib/prompts/flatten.ts +2 -7
  15. package/src/lib/prompts/frontmatter.ts +28 -33
  16. package/src/lib/prompts/lint.ts +8 -8
  17. package/src/lib/prompts/paths.ts +5 -5
  18. package/src/lib/prompts/pipeline.ts +6 -7
  19. package/.turbo/turbo-test$colon$coverage.log +0 -36
  20. package/.turbo/turbo-test.log +0 -26
  21. package/.turbo/turbo-typecheck.log +0 -4
  22. package/coverage/lcov-report/base.css +0 -224
  23. package/coverage/lcov-report/block-navigation.js +0 -87
  24. package/coverage/lcov-report/commands/create.ts.html +0 -208
  25. package/coverage/lcov-report/commands/generate.ts.html +0 -388
  26. package/coverage/lcov-report/commands/index.html +0 -161
  27. package/coverage/lcov-report/commands/lint.ts.html +0 -331
  28. package/coverage/lcov-report/commands/setup.ts.html +0 -493
  29. package/coverage/lcov-report/favicon.png +0 -0
  30. package/coverage/lcov-report/index.html +0 -131
  31. package/coverage/lcov-report/lib/codegen.ts.html +0 -805
  32. package/coverage/lcov-report/lib/extract-variables.ts.html +0 -181
  33. package/coverage/lcov-report/lib/flatten.ts.html +0 -385
  34. package/coverage/lcov-report/lib/frontmatter.ts.html +0 -487
  35. package/coverage/lcov-report/lib/index.html +0 -191
  36. package/coverage/lcov-report/lib/lint.ts.html +0 -307
  37. package/coverage/lcov-report/lib/paths.ts.html +0 -487
  38. package/coverage/lcov-report/prettify.css +0 -1
  39. package/coverage/lcov-report/prettify.js +0 -2
  40. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  41. package/coverage/lcov-report/sorter.js +0 -210
  42. package/coverage/lcov.info +0 -749
@@ -1,16 +1,15 @@
1
-
2
- 
3
- > @funkai/cli@0.1.0 build /Users/zacrosenbauer/Code/joggr/funkai/packages/cli
4
- > kidd build
5
-
6
- [?25l│
7
-
8
- â—‡ Build complete
9
- [?25h│
10
- ◇ Bundle ──────────────────╮
11
- │ │
12
- │ entry dist/index.mjs │
13
- │ output dist │
14
- │ version 0.1.0 │
15
- │ │
16
- ├───────────────────────────╯
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
+ â—‡ 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: **Linting** — Validate prompt files for undefined and unused variables.
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