@currentjs/gen 0.2.0 → 0.2.1

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 CHANGED
@@ -3,19 +3,39 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
5
 
6
+
7
+ ## [0.2.1] - 2025-09-18
8
+
9
+ Improve generated package.json
10
+
6
11
  ## [0.2.0] - 2025-09-18
7
12
 
8
13
  implement multi-model generation (controllers, services); fix service-controller interaction; update documentation: more clear & reflect important things
9
14
 
15
+
16
+ ## [0.2.1] - 2025-09-18
17
+
18
+ Improve generated package.json
19
+
10
20
  ## [0.1.2] - 2025-09-18
11
21
 
12
22
  fix: failed to generate with empty permissions actions
13
23
 
14
24
 
25
+
26
+ ## [0.2.1] - 2025-09-18
27
+
28
+ Improve generated package.json
29
+
15
30
  ## [0.2.0] - 2025-09-18
16
31
 
17
32
  implement multi-model generation (controllers, services); fix service-controller interaction; update documentation: more clear & reflect important things
18
33
 
34
+
35
+ ## [0.2.1] - 2025-09-18
36
+
37
+ Improve generated package.json
38
+
19
39
  ## [0.1.1] - 2025-09-17
20
40
 
21
41
  Initial release
@@ -46,15 +46,18 @@ const packageJsonTemplate = (appName) => JSON.stringify({
46
46
  start: 'node build/app.js',
47
47
  clean: 'rm -rf build',
48
48
  dev: 'ts-node src/app.ts',
49
- devstand: 'npm i && npm link @currentjs/router @currentjs/templating @currentjs/provider-mysql && npm run build'
49
+ // uncomment this if you want to use the devstand script
50
+ // devstand: 'npm i && npm link @currentjs/router @currentjs/templating @currentjs/provider-mysql && npm run build'
51
+ },
52
+ dependencies: {
53
+ '@currentjs/router': 'latest',
54
+ '@currentjs/templating': 'latest',
55
+ '@currentjs/provider-mysql': 'latest',
50
56
  },
51
- dependencies: {},
52
57
  devDependencies: {
53
58
  typescript: '^5.6.3',
54
59
  '@types/node': '^22.7.4',
55
60
  '@koz1024/path-fixer': '^0.2.1',
56
- // '@currentjs/router': '^0.1.0',
57
- // '@currentjs/templating': '^0.1.0'
58
61
  },
59
62
  type: 'module'
60
63
  }, null, 2);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@currentjs/gen",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "CLI code generator",
5
5
  "license": "LGPL-3.0",
6
6
  "author": "Konstantin Zavalny",