@nx/detox 16.6.0-beta.6 → 16.6.0-beta.7
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/migrations.json +13 -0
- package/package.json +8 -8
- package/src/utils/versions.d.ts +2 -2
- package/src/utils/versions.js +2 -2
package/migrations.json
CHANGED
|
@@ -250,6 +250,19 @@
|
|
|
250
250
|
"alwaysAddToPackageJson": false
|
|
251
251
|
}
|
|
252
252
|
}
|
|
253
|
+
},
|
|
254
|
+
"16.6.0": {
|
|
255
|
+
"version": "16.6.0-beta.6",
|
|
256
|
+
"packages": {
|
|
257
|
+
"detox": {
|
|
258
|
+
"version": "^20.11.1",
|
|
259
|
+
"alwaysAddToPackageJson": false
|
|
260
|
+
},
|
|
261
|
+
"@config-plugins/detox": {
|
|
262
|
+
"version": "~6.0.0",
|
|
263
|
+
"alwaysAddToPackageJson": false
|
|
264
|
+
}
|
|
265
|
+
}
|
|
253
266
|
}
|
|
254
267
|
}
|
|
255
268
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/detox",
|
|
3
|
-
"version": "16.6.0-beta.
|
|
3
|
+
"version": "16.6.0-beta.7",
|
|
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.6.0-beta.
|
|
29
|
-
"@nx/devkit": "16.6.0-beta.
|
|
30
|
-
"@nx/jest": "16.6.0-beta.
|
|
31
|
-
"@nx/js": "16.6.0-beta.
|
|
32
|
-
"@nx/linter": "16.6.0-beta.
|
|
33
|
-
"@nx/react": "16.6.0-beta.
|
|
28
|
+
"@nrwl/detox": "16.6.0-beta.7",
|
|
29
|
+
"@nx/devkit": "16.6.0-beta.7",
|
|
30
|
+
"@nx/jest": "16.6.0-beta.7",
|
|
31
|
+
"@nx/js": "16.6.0-beta.7",
|
|
32
|
+
"@nx/linter": "16.6.0-beta.7",
|
|
33
|
+
"@nx/react": "16.6.0-beta.7",
|
|
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": "6afe0a7c20059d6cdc8e455758a17886f933a0dc"
|
|
49
49
|
}
|
package/src/utils/versions.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export declare const nxVersion: any;
|
|
2
|
-
export declare const detoxVersion = "^20.
|
|
2
|
+
export declare const detoxVersion = "^20.11.1";
|
|
3
3
|
export declare const testingLibraryJestDom = "5.16.5";
|
|
4
|
-
export declare const configPluginsDetoxVersion = "~
|
|
4
|
+
export declare const configPluginsDetoxVersion = "~6.0.0";
|
package/src/utils/versions.js
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.configPluginsDetoxVersion = exports.testingLibraryJestDom = exports.detoxVersion = exports.nxVersion = void 0;
|
|
4
4
|
exports.nxVersion = require('../../package.json').version;
|
|
5
|
-
exports.detoxVersion = '^20.
|
|
5
|
+
exports.detoxVersion = '^20.11.1';
|
|
6
6
|
exports.testingLibraryJestDom = '5.16.5';
|
|
7
|
-
exports.configPluginsDetoxVersion = '~
|
|
7
|
+
exports.configPluginsDetoxVersion = '~6.0.0'; // only required for expo
|