@currentjs/gen 0.5.1 → 0.5.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/CHANGELOG.md +9 -0
- package/README.md +374 -996
- package/dist/cli.js +28 -10
- package/dist/commands/createModel.d.ts +1 -0
- package/dist/commands/createModel.js +764 -0
- package/dist/commands/createModule.js +13 -0
- package/dist/commands/generateAll.d.ts +1 -0
- package/dist/commands/generateAll.js +1 -1
- package/dist/commands/init.d.ts +1 -0
- package/dist/commands/{createApp.js → init.js} +2 -2
- package/dist/commands/migrateCommit.js +33 -68
- package/dist/generators/domainLayerGenerator.js +34 -1
- package/dist/generators/templateGenerator.d.ts +1 -0
- package/dist/generators/templateGenerator.js +8 -2
- package/dist/generators/templates/data/cursorRulesTemplate +11 -755
- package/dist/types/configTypes.d.ts +5 -0
- package/dist/utils/migrationUtils.d.ts +9 -19
- package/dist/utils/migrationUtils.js +80 -110
- package/dist/utils/promptUtils.d.ts +37 -0
- package/dist/utils/promptUtils.js +149 -0
- package/package.json +1 -1
- package/dist/commands/createApp.d.ts +0 -1
- package/howto.md +0 -667
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.5.2] - 2026-03-21
|
|
4
|
+
|
|
5
|
+
- skip templates on generation; introduced a flag to regenerate templates
|
|
6
|
+
- rename command create app to init
|
|
7
|
+
- adjusted output for create module command
|
|
8
|
+
- create model command
|
|
9
|
+
- migrate commit fix
|
|
10
|
+
- rework documentation
|
|
11
|
+
|
|
3
12
|
## [0.5.1] - 2026-02-28
|
|
4
13
|
|
|
5
14
|
- fixes pack:
|