@akylas/nativescript-cli 8.8.4 → 8.8.5
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.
|
@@ -200,9 +200,9 @@ class WebpackCompilerService extends events_1.EventEmitter {
|
|
|
200
200
|
cwd: projectData.projectDir,
|
|
201
201
|
stdio,
|
|
202
202
|
};
|
|
203
|
-
options.env = {
|
|
203
|
+
options.env = Object.assign(process.env, {
|
|
204
204
|
NATIVESCRIPT_WEBPACK_ENV: JSON.stringify(envData)
|
|
205
|
-
};
|
|
205
|
+
});
|
|
206
206
|
if (this.$options.hostProjectPath) {
|
|
207
207
|
Object.assign(options.env, {
|
|
208
208
|
USER_PROJECT_PLATFORMS_ANDROID: this.$options.hostProjectPath,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@akylas/nativescript-cli",
|
|
3
3
|
"main": "./lib/nativescript-cli-lib.js",
|
|
4
|
-
"version": "8.8.
|
|
4
|
+
"version": "8.8.5",
|
|
5
5
|
"author": "NativeScript <support@nativescript.org>",
|
|
6
6
|
"description": "Command-line interface for building NativeScript projects",
|
|
7
7
|
"bin": {
|
|
@@ -1047,6 +1047,7 @@ tasks.configureEach { DefaultTask currentTask ->
|
|
|
1047
1047
|
}
|
|
1048
1048
|
if (
|
|
1049
1049
|
currentTask =~ /generate.*UnitTestLintModel/ ||
|
|
1050
|
+
currentTask =~ /sentryCollectSourcesRelease/ ||
|
|
1050
1051
|
currentTask =~ /compile.*ArtProfile/
|
|
1051
1052
|
) {
|
|
1052
1053
|
currentTask.mustRunAfter(buildMetadata)
|