@nx/detox 16.6.0-beta.8 → 16.7.0-beta.1
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/detox",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.7.0-beta.1",
|
|
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": [
|
|
@@ -25,12 +25,12 @@
|
|
|
25
25
|
"main": "./index",
|
|
26
26
|
"types": "index.d.ts",
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@nrwl/detox": "16.
|
|
29
|
-
"@nx/devkit": "16.
|
|
30
|
-
"@nx/jest": "16.
|
|
31
|
-
"@nx/js": "16.
|
|
32
|
-
"@nx/linter": "16.
|
|
33
|
-
"@nx/react": "16.
|
|
28
|
+
"@nrwl/detox": "16.7.0-beta.1",
|
|
29
|
+
"@nx/devkit": "16.7.0-beta.1",
|
|
30
|
+
"@nx/jest": "16.7.0-beta.1",
|
|
31
|
+
"@nx/js": "16.7.0-beta.1",
|
|
32
|
+
"@nx/linter": "16.7.0-beta.1",
|
|
33
|
+
"@nx/react": "16.7.0-beta.1",
|
|
34
34
|
"tslib": "^2.3.0"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"publishConfig": {
|
|
46
46
|
"access": "public"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "50a145bb64edcf76985184a9a83d1449dcd4f3d9"
|
|
49
49
|
}
|
|
@@ -22,8 +22,8 @@ function detoxBuildExecutor(options, context) {
|
|
|
22
22
|
exports.default = detoxBuildExecutor;
|
|
23
23
|
function runCliBuild(workspaceRoot, projectRoot, options) {
|
|
24
24
|
return new Promise((resolve, reject) => {
|
|
25
|
-
childProcess = (0, child_process_1.fork)(
|
|
26
|
-
cwd: (0, path_1.
|
|
25
|
+
childProcess = (0, child_process_1.fork)(require.resolve('detox/local-cli/cli.js'), ['build', ...createDetoxBuildOptions(options)], {
|
|
26
|
+
cwd: (0, path_1.resolve)(workspaceRoot, projectRoot),
|
|
27
27
|
env: process.env,
|
|
28
28
|
});
|
|
29
29
|
// Ensure the child process is killed when the parent exits
|
|
@@ -29,8 +29,8 @@ function detoxTestExecutor(options, context) {
|
|
|
29
29
|
exports.default = detoxTestExecutor;
|
|
30
30
|
function runCliTest(workspaceRoot, projectRoot, options) {
|
|
31
31
|
return new Promise((resolve, reject) => {
|
|
32
|
-
childProcess = (0, child_process_1.fork)(
|
|
33
|
-
cwd: (0, path_1.
|
|
32
|
+
childProcess = (0, child_process_1.fork)(require.resolve('detox/local-cli/cli.js'), ['test', ...createDetoxTestOptions(options)], {
|
|
33
|
+
cwd: (0, path_1.resolve)(workspaceRoot, projectRoot),
|
|
34
34
|
env: process.env,
|
|
35
35
|
});
|
|
36
36
|
// Ensure the child process is killed when the parent exits
|