@lenne.tech/cli 1.11.0 → 1.12.0
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/build/commands/claude/shortcuts.js +5 -0
- package/build/commands/fullstack/init.js +21 -0
- package/build/commands/fullstack/update.js +1 -4
- package/build/commands/git/reset.js +2 -2
- package/build/commands/git/update.js +3 -3
- package/build/commands/server/add-property.js +1 -3
- package/build/commands/server/module.js +1 -1
- package/build/config/vendor-runtime-deps.json +1 -5
- package/build/extensions/api-mode.js +123 -5
- package/build/extensions/frontend-helper.js +59 -32
- package/build/extensions/git.js +4 -5
- package/build/extensions/server.js +80 -42
- package/build/lib/frontend-framework-detection.js +1 -2
- package/build/lib/hoist-workspace-pnpm-config.js +97 -0
- package/build/lib/markdown-table.js +33 -0
- package/docs/LT-ECOSYSTEM-GUIDE.md +378 -379
- package/docs/VENDOR-MODE-WORKFLOW.md +223 -150
- package/docs/commands.md +1 -1
- package/package.json +17 -9
package/docs/commands.md
CHANGED
|
@@ -230,7 +230,7 @@ lt server convert-mode --to <vendor|npm> [options]
|
|
|
230
230
|
|
|
231
231
|
- **npm → vendor:**
|
|
232
232
|
- Clones `@lenne.tech/nest-server` from GitHub at the specified tag (default: currently installed version)
|
|
233
|
-
- Copies `src/core/`, `src/index.ts`, `src/core.module.ts`, `src/test/`, `src/
|
|
233
|
+
- Copies `src/core/`, `src/index.ts`, `src/core.module.ts`, `src/test/`, `src/types/`, and `LICENSE` to `<api-root>/src/core/`; places upstream `src/templates/` at `<api-root>/src/templates/` (outside `core/` so the runtime E-Mail template resolver works)
|
|
234
234
|
- Applies flatten-fix on `index.ts`, `core.module.ts`, `test.helper.ts`, `core-persistence-model.interface.ts`
|
|
235
235
|
- Rewrites all consumer imports from `'@lenne.tech/nest-server'` to relative paths
|
|
236
236
|
- Merges upstream dependencies dynamically into `package.json`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lenne.tech/cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.12.0",
|
|
4
4
|
"description": "lenne.Tech CLI: lt",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lenne.Tech",
|
|
@@ -18,7 +18,11 @@
|
|
|
18
18
|
"lt": "bin/lt"
|
|
19
19
|
},
|
|
20
20
|
"scripts": {
|
|
21
|
-
"
|
|
21
|
+
"c": "npm run check",
|
|
22
|
+
"cf": "npm run check:fix",
|
|
23
|
+
"check": "npm install && npm run format && npm run build && npm run check:start",
|
|
24
|
+
"check:fix": "npm install && npm audit fix && npm run format && npm run lint:fix && npm run build && npm run check:start",
|
|
25
|
+
"check:start": "bash scripts/check-cli-start.sh",
|
|
22
26
|
"postinstall": "node bin/postinstall.js 2>/dev/null || true",
|
|
23
27
|
"build": "npm run lint && npm run test && npm run clean-build && npm run compile && npm run copy-templates",
|
|
24
28
|
"clean-build": "npx rimraf ./build",
|
|
@@ -53,20 +57,19 @@
|
|
|
53
57
|
"bin"
|
|
54
58
|
],
|
|
55
59
|
"dependencies": {
|
|
56
|
-
"@aws-sdk/client-s3": "3.
|
|
60
|
+
"@aws-sdk/client-s3": "3.1032.0",
|
|
57
61
|
"@lenne.tech/cli-plugin-helper": "0.0.14",
|
|
58
62
|
"axios": "1.15.0",
|
|
59
63
|
"bcrypt": "6.0.0",
|
|
60
|
-
"ejs": "5.0.1",
|
|
61
64
|
"glob": "13.0.6",
|
|
62
65
|
"gluegun": "5.2.2",
|
|
63
66
|
"js-sha256": "0.11.1",
|
|
64
67
|
"js-yaml": "4.1.1",
|
|
65
68
|
"lodash": "4.18.1",
|
|
66
69
|
"open": "11.0.0",
|
|
67
|
-
"ts-morph": "
|
|
70
|
+
"ts-morph": "28.0.0",
|
|
68
71
|
"ts-node": "10.9.2",
|
|
69
|
-
"typescript": "6.0.
|
|
72
|
+
"typescript": "6.0.3"
|
|
70
73
|
},
|
|
71
74
|
"devDependencies": {
|
|
72
75
|
"@lenne.tech/eslint-config-ts": "2.1.4",
|
|
@@ -76,23 +79,28 @@
|
|
|
76
79
|
"@types/js-yaml": "4.0.9",
|
|
77
80
|
"@types/lodash": "4.17.24",
|
|
78
81
|
"@types/node": "25.6.0",
|
|
79
|
-
"@typescript-eslint/eslint-plugin": "8.58.
|
|
80
|
-
"@typescript-eslint/parser": "8.58.
|
|
82
|
+
"@typescript-eslint/eslint-plugin": "8.58.2",
|
|
83
|
+
"@typescript-eslint/parser": "8.58.2",
|
|
84
|
+
"ejs": "5.0.2",
|
|
81
85
|
"eslint": "9.39.4",
|
|
82
86
|
"eslint-config-prettier": "10.1.8",
|
|
83
87
|
"husky": "9.1.7",
|
|
84
88
|
"jest": "30.3.0",
|
|
85
|
-
"prettier": "3.8.
|
|
89
|
+
"prettier": "3.8.3",
|
|
86
90
|
"rimraf": "6.1.3",
|
|
87
91
|
"standard-version": "9.5.0",
|
|
88
92
|
"ts-jest": "29.4.9"
|
|
89
93
|
},
|
|
94
|
+
"//overrides": {
|
|
95
|
+
"semver@*": "Force latest semver across all sub-deps; gluegun@5.2.2 pins semver@7.7.0 which is stale - remove once gluegun updates its dep."
|
|
96
|
+
},
|
|
90
97
|
"overrides": {
|
|
91
98
|
"semver@*": "7.7.4"
|
|
92
99
|
},
|
|
93
100
|
"jest": {
|
|
94
101
|
"testEnvironment": "node",
|
|
95
102
|
"rootDir": "__tests__",
|
|
103
|
+
"testTimeout": 60000,
|
|
96
104
|
"transform": {
|
|
97
105
|
"^.+\\.tsx?$": [
|
|
98
106
|
"ts-jest",
|