@nx/detox 23.2.0-beta.11 → 23.2.0-beta.12
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.
|
@@ -23,6 +23,9 @@ async function convertToInferred(tree, options) {
|
|
|
23
23
|
targetPluginOptionMapper: (targetName) => ({
|
|
24
24
|
buildTargetName: targetName, // We should use "build" instead of "build-ios" or "build-android". We'll handle this later.
|
|
25
25
|
}),
|
|
26
|
+
// Both platform targets map to buildTargetName; the registrations are
|
|
27
|
+
// rewritten to the generic "build" below.
|
|
28
|
+
allowSharedOptionOverwrite: true,
|
|
26
29
|
},
|
|
27
30
|
{
|
|
28
31
|
executors: ['@nx/detox:test'],
|
|
@@ -30,6 +33,9 @@ async function convertToInferred(tree, options) {
|
|
|
30
33
|
targetPluginOptionMapper: (targetName) => ({
|
|
31
34
|
testTargetName: targetName, // We should use "test" instead of "test-ios" or "test-android". We'll handle this later.
|
|
32
35
|
}),
|
|
36
|
+
// Both platform targets map to testTargetName; the registrations are
|
|
37
|
+
// rewritten to the generic "test" below.
|
|
38
|
+
allowSharedOptionOverwrite: true,
|
|
33
39
|
},
|
|
34
40
|
], options.project);
|
|
35
41
|
const nxJson = (0, devkit_1.readNxJson)(tree);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/detox",
|
|
3
|
-
"version": "23.2.0-beta.
|
|
3
|
+
"version": "23.2.0-beta.12",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The Nx Plugin for Detox contains executors and generators for allowing your workspace to use the powerful Detox integration testing capabilities.",
|
|
6
6
|
"keywords": [
|
|
@@ -37,14 +37,14 @@
|
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"semver": "^7.6.3",
|
|
39
39
|
"tslib": "^2.3.0",
|
|
40
|
-
"@nx/devkit": "23.2.0-beta.
|
|
41
|
-
"@nx/jest": "23.2.0-beta.
|
|
42
|
-
"@nx/js": "23.2.0-beta.
|
|
43
|
-
"@nx/eslint": "23.2.0-beta.
|
|
44
|
-
"@nx/react": "23.2.0-beta.
|
|
40
|
+
"@nx/devkit": "23.2.0-beta.12",
|
|
41
|
+
"@nx/jest": "23.2.0-beta.12",
|
|
42
|
+
"@nx/js": "23.2.0-beta.12",
|
|
43
|
+
"@nx/eslint": "23.2.0-beta.12",
|
|
44
|
+
"@nx/react": "23.2.0-beta.12"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"nx": "23.2.0-beta.
|
|
47
|
+
"nx": "23.2.0-beta.12"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"detox": "^20.0.0"
|