Skip to content

Commit 1ce6401

Browse files
committed
release: 4.0.2
1 parent 1b6c0cd commit 1ce6401

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## [4.0.2](https://github.com/NativeScript/nx/compare/4.0.1...4.0.2) (2022-08-24)
2+
3+
4+
### Bug Fixes
5+
6+
* executor with target configurations ([1b6c0cd](https://github.com/NativeScript/nx/commit/1b6c0cde65806034a723bcbd39da0a129e988e1e))
7+
8+
9+
110
## [4.0.1](https://github.com/NativeScript/nx/compare/4.0.0...4.0.1) (2022-06-22)
211

312

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nativescript-nx-plugins",
3-
"version": "4.0.1",
3+
"version": "4.0.2",
44
"license": "MIT",
55
"scripts": {
66
"nx": "nx",

packages/nx/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nativescript/nx",
3-
"version": "4.0.1",
3+
"version": "4.0.2",
44
"description": "NativeScript Plugin for Nx",
55
"repository": {
66
"type": "git",

packages/nx/src/utils/executors.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ export function commonExecutor(options: BuildExecutorSchema | TestExecutorSchema
8181

8282

8383
let configOptions;
84-
if (activeTarget.configurations) {
84+
if (activeTarget && activeTarget.configurations) {
8585
configOptions = activeTarget.configurations[targetConfigName];
8686
// console.log('configOptions:', configOptions)
8787

0 commit comments

Comments
 (0)