@xylabs/ts-scripts-yarn3 7.4.9 → 7.4.10

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 (35) hide show
  1. package/dist/actions/claude-commands.mjs +99 -0
  2. package/dist/actions/claude-commands.mjs.map +1 -0
  3. package/dist/actions/claude-rules.mjs.map +1 -1
  4. package/dist/actions/index.mjs +222 -141
  5. package/dist/actions/index.mjs.map +1 -1
  6. package/dist/bin/xy.mjs +184 -96
  7. package/dist/bin/xy.mjs.map +1 -1
  8. package/dist/index.d.ts +5 -1
  9. package/dist/index.mjs +244 -153
  10. package/dist/index.mjs.map +1 -1
  11. package/dist/lib/claudeMdTemplate.mjs +12 -0
  12. package/dist/lib/claudeMdTemplate.mjs.map +1 -1
  13. package/dist/lib/index.mjs +12 -0
  14. package/dist/lib/index.mjs.map +1 -1
  15. package/dist/xy/index.mjs +184 -96
  16. package/dist/xy/index.mjs.map +1 -1
  17. package/dist/xy/xy.mjs +184 -96
  18. package/dist/xy/xy.mjs.map +1 -1
  19. package/dist/xy/xyCommonCommands.mjs +122 -34
  20. package/dist/xy/xyCommonCommands.mjs.map +1 -1
  21. package/package.json +2 -2
  22. package/templates/commands/xylabs-build.md +5 -0
  23. package/templates/commands/xylabs-clean.md +5 -0
  24. package/templates/commands/xylabs-compile.md +5 -0
  25. package/templates/commands/xylabs-cycle.md +5 -0
  26. package/templates/commands/xylabs-deplint.md +5 -0
  27. package/templates/commands/xylabs-deploy-major.md +7 -0
  28. package/templates/commands/xylabs-deploy-minor.md +7 -0
  29. package/templates/commands/xylabs-deploy.md +7 -0
  30. package/templates/commands/xylabs-fix.md +5 -0
  31. package/templates/commands/xylabs-knip.md +5 -0
  32. package/templates/commands/xylabs-lint.md +5 -0
  33. package/templates/commands/xylabs-publint.md +5 -0
  34. package/templates/commands/xylabs-rebuild.md +5 -0
  35. package/templates/commands/xylabs-test.md +5 -0
@@ -0,0 +1,5 @@
1
+ Rebuild the current project from scratch using `yarn xy rebuild`. This cleans build artifacts, then compiles and lints. Review the output for errors and fix any issues found.
2
+
3
+ ```bash
4
+ yarn xy rebuild
5
+ ```
@@ -0,0 +1,5 @@
1
+ Run tests for the current project using `yarn xy test`. Review the output for failures and fix any failing tests.
2
+
3
+ ```bash
4
+ yarn xy test
5
+ ```