Skip to content

Commit e502c0b

Browse files
committed
Merge remote-tracking branch 'origin/main' into feat/bundler-config
2 parents fd695d1 + 067ffd9 commit e502c0b

File tree

4 files changed

+25
-4
lines changed

4 files changed

+25
-4
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## [8.9.3](https://github.com/NativeScript/nativescript-cli/compare/v8.9.2...v8.9.3) (2025-07-16)
2+
3+
4+
### Bug Fixes
5+
6+
* **bundler:** include process.env first ([4df139d](https://github.com/NativeScript/nativescript-cli/commit/4df139dc83456ac98dc4cdae765b72a47a945f91))
7+
* pass down process environment to webpack process ([#5844](https://github.com/NativeScript/nativescript-cli/issues/5844)) ([1e8b93f](https://github.com/NativeScript/nativescript-cli/commit/1e8b93fb0b8c5ac3080fdb5eecec5b7326859c81))
8+
9+
10+
11+
## [8.9.2](https://github.com/NativeScript/nativescript-cli/compare/v8.9.1...v8.9.2) (2025-03-25)
12+
13+
14+
### Bug Fixes
15+
16+
* icon generator color type error ([#5838](https://github.com/NativeScript/nativescript-cli/issues/5838)) ([af81491](https://github.com/NativeScript/nativescript-cli/commit/af8149113844a7aebcd6bf66eeae73154ac7927b))
17+
* remove --legacy-peer-deps flag on install ([#5839](https://github.com/NativeScript/nativescript-cli/issues/5839)) ([ca6fb68](https://github.com/NativeScript/nativescript-cli/commit/ca6fb68a96cbf4006885c878527c0743b3dae248))
18+
19+
20+
121
## [8.9.1](https://github.com/NativeScript/nativescript-cli/compare/v8.9.0...v8.9.1) (2025-03-05)
222

323

lib/services/bundler/bundler-compiler-service.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export class BundlerCompilerService
6868
private $mobileHelper: Mobile.IMobileHelper,
6969
private $cleanupService: ICleanupService,
7070
private $packageManager: IPackageManager,
71-
private $packageInstallationManager: IPackageInstallationManager,
71+
private $packageInstallationManager: IPackageInstallationManager, // private $sharedEventBus: ISharedEventBus
7272
private $projectConfigService: IProjectConfigService,
7373
) {
7474
super();
@@ -398,6 +398,7 @@ export class BundlerCompilerService
398398
stdio,
399399
};
400400
options.env = {
401+
...process.env,
401402
NATIVESCRIPT_WEBPACK_ENV: JSON.stringify(envData),
402403
NATIVESCRIPT_BUNDLER_ENV: JSON.stringify(envData),
403404
};

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "nativescript",
33
"main": "./lib/nativescript-cli-lib.js",
4-
"version": "8.9.2",
4+
"version": "8.9.4",
55
"author": "NativeScript <[email protected]>",
66
"description": "Command-line interface for building NativeScript projects",
77
"bin": {

0 commit comments

Comments
 (0)