@nrwl/detox 14.0.0-beta.3 → 14.0.0
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 +6 -6
- package/src/utils/versions.d.ts +2 -2
- package/src/utils/versions.js +3 -3
package/migrations.json
CHANGED
|
@@ -103,6 +103,19 @@
|
|
|
103
103
|
"alwaysAddToPackageJson": false
|
|
104
104
|
}
|
|
105
105
|
}
|
|
106
|
+
},
|
|
107
|
+
"13.10.3": {
|
|
108
|
+
"version": "13.10.3-beta.0",
|
|
109
|
+
"packages": {
|
|
110
|
+
"detox": {
|
|
111
|
+
"version": "19.6.5",
|
|
112
|
+
"alwaysAddToPackageJson": false
|
|
113
|
+
},
|
|
114
|
+
"@testing-library/jest-dom": {
|
|
115
|
+
"version": "5.16.4",
|
|
116
|
+
"alwaysAddToPackageJson": false
|
|
117
|
+
}
|
|
118
|
+
}
|
|
106
119
|
}
|
|
107
120
|
}
|
|
108
121
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nrwl/detox",
|
|
3
|
-
"version": "14.0.0
|
|
3
|
+
"version": "14.0.0",
|
|
4
4
|
"description": "The Nx Plugin for Detox that contains executors and generators for allowing your workspace to use the powerful Detox integration testing capabilities.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Monorepo",
|
|
@@ -24,11 +24,11 @@
|
|
|
24
24
|
"main": "index.js",
|
|
25
25
|
"types": "index.d.ts",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@nrwl/devkit": "14.0.0
|
|
28
|
-
"@nrwl/jest": "14.0.0
|
|
29
|
-
"@nrwl/linter": "14.0.0
|
|
30
|
-
"@nrwl/react": "14.0.0
|
|
31
|
-
"@nrwl/workspace": "14.0.0
|
|
27
|
+
"@nrwl/devkit": "14.0.0",
|
|
28
|
+
"@nrwl/jest": "14.0.0",
|
|
29
|
+
"@nrwl/linter": "14.0.0",
|
|
30
|
+
"@nrwl/react": "14.0.0",
|
|
31
|
+
"@nrwl/workspace": "14.0.0",
|
|
32
32
|
"chalk": "^4.1.0"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
package/src/utils/versions.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export declare const nxVersion = "*";
|
|
2
|
-
export declare const detoxVersion = "19.5
|
|
3
|
-
export declare const testingLibraryJestDom = "5.16.
|
|
2
|
+
export declare const detoxVersion = "19.6.5";
|
|
3
|
+
export declare const testingLibraryJestDom = "5.16.4";
|
package/src/utils/versions.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.testingLibraryJestDom = exports.detoxVersion = exports.nxVersion = void 0;
|
|
4
|
-
exports.nxVersion = '14.0.0
|
|
5
|
-
exports.detoxVersion = '19.5
|
|
6
|
-
exports.testingLibraryJestDom = '5.16.
|
|
4
|
+
exports.nxVersion = '14.0.0';
|
|
5
|
+
exports.detoxVersion = '19.6.5';
|
|
6
|
+
exports.testingLibraryJestDom = '5.16.4';
|
|
7
7
|
//# sourceMappingURL=versions.js.map
|