@auto-engineer/server-generator-nestjs 1.110.6 → 1.110.7
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 +14 -0
- package/package.json +3 -3
- package/src/commands/generate-server.ts +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @auto-engineer/server-generator-nestjs
|
|
2
2
|
|
|
3
|
+
## 1.110.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`6a15824`](https://github.com/BeOnAuto/auto-engineer/commit/6a1582475305b998959a28c9fed730d52bc8941f) Thanks [@SamHatoum](https://github.com/SamHatoum)! - - Fixed an npm install issue
|
|
8
|
+
|
|
9
|
+
- [`35a054d`](https://github.com/BeOnAuto/auto-engineer/commit/35a054dce282d69e97ab29cd08098d62f2dfc13d) Thanks [@github-actions[bot]](https://github.com/github-actions%5Bbot%5D)! - - **typical**: add lodash-es dependency for improved functionality
|
|
10
|
+
- **global**: version packages
|
|
11
|
+
|
|
12
|
+
- [`55f4848`](https://github.com/BeOnAuto/auto-engineer/commit/55f48484122daaacbdf312720745c48a49a988ec) Thanks [@SamHatoum](https://github.com/SamHatoum)! - - Updated biome command configuration for improved linting
|
|
13
|
+
- Added dependency pre-warming check to optimize build performance
|
|
14
|
+
- Updated dependencies [[`6a15824`](https://github.com/BeOnAuto/auto-engineer/commit/6a1582475305b998959a28c9fed730d52bc8941f), [`35a054d`](https://github.com/BeOnAuto/auto-engineer/commit/35a054dce282d69e97ab29cd08098d62f2dfc13d), [`55f4848`](https://github.com/BeOnAuto/auto-engineer/commit/55f48484122daaacbdf312720745c48a49a988ec)]:
|
|
15
|
+
- @auto-engineer/narrative@1.110.7
|
|
16
|
+
|
|
3
17
|
## 1.110.6
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"ts-node": "^10.9.2",
|
|
41
41
|
"type-fest": "^4.41.0",
|
|
42
42
|
"uuid": "^11.0.0",
|
|
43
|
-
"@auto-engineer/narrative": "1.110.
|
|
43
|
+
"@auto-engineer/narrative": "1.110.7"
|
|
44
44
|
},
|
|
45
45
|
"publishConfig": {
|
|
46
46
|
"access": "public"
|
|
@@ -52,9 +52,9 @@
|
|
|
52
52
|
"tsx": "^4.19.2",
|
|
53
53
|
"typescript": "^5.8.3",
|
|
54
54
|
"vitest": "^3.2.4",
|
|
55
|
-
"@auto-engineer/cli": "1.110.
|
|
55
|
+
"@auto-engineer/cli": "1.110.7"
|
|
56
56
|
},
|
|
57
|
-
"version": "1.110.
|
|
57
|
+
"version": "1.110.7",
|
|
58
58
|
"scripts": {
|
|
59
59
|
"generate:server": "tsx src/cli/index.ts",
|
|
60
60
|
"-DISABLE-build": "tsc && tsx ../../scripts/fix-esm-imports.ts && rm -rf dist/src/codegen/templates && mkdir -p dist/src/codegen && cp -r src/codegen/templates dist/src/codegen/templates && cp -r src/shared dist/src",
|
|
@@ -492,6 +492,10 @@ temp
|
|
|
492
492
|
}
|
|
493
493
|
|
|
494
494
|
async function installDependencies(serverDir: string): Promise<void> {
|
|
495
|
+
if (process.env.DEPS_PRE_WARMED === 'true') {
|
|
496
|
+
debugDeps('Skipping pnpm install (DEPS_PRE_WARMED)');
|
|
497
|
+
return;
|
|
498
|
+
}
|
|
495
499
|
debugDeps('Installing dependencies...');
|
|
496
500
|
debugDeps('Starting dependency installation in %s', serverDir);
|
|
497
501
|
debugDeps('Hint: You can debug by manually running: cd server && pnpm install');
|