@nrwl/detox 14.6.0-beta.5 → 14.6.0-beta.8
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/CHANGELOG.md
CHANGED
|
@@ -3,14 +3,6 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
-
# [14.6.0-beta.
|
|
7
|
-
|
|
8
|
-
**Note:** Version bump only for package @nrwl/detox
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
## [14.5.7](https://github.com/nrwl/nx/compare/14.5.6...14.5.7) (2022-08-17)
|
|
6
|
+
# [14.6.0-beta.8](https://github.com/nrwl/nx/compare/14.5.7...14.6.0-beta.8) (2022-08-26)
|
|
15
7
|
|
|
16
8
|
**Note:** Version bump only for package @nrwl/detox
|
package/migrations.json
CHANGED
|
@@ -134,6 +134,28 @@
|
|
|
134
134
|
"alwaysAddToPackageJson": false
|
|
135
135
|
}
|
|
136
136
|
}
|
|
137
|
+
},
|
|
138
|
+
"14.5.7": {
|
|
139
|
+
"version": "14.5.7-beta.0",
|
|
140
|
+
"packages": {
|
|
141
|
+
"detox": {
|
|
142
|
+
"version": "19.9.3",
|
|
143
|
+
"alwaysAddToPackageJson": false
|
|
144
|
+
},
|
|
145
|
+
"@testing-library/jest-dom": {
|
|
146
|
+
"version": "5.16.5",
|
|
147
|
+
"alwaysAddToPackageJson": false
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
"14.6.1": {
|
|
152
|
+
"version": "14.6.1-beta.0",
|
|
153
|
+
"packages": {
|
|
154
|
+
"detox": {
|
|
155
|
+
"version": "19.10.0",
|
|
156
|
+
"alwaysAddToPackageJson": false
|
|
157
|
+
}
|
|
158
|
+
}
|
|
137
159
|
}
|
|
138
160
|
}
|
|
139
161
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nrwl/detox",
|
|
3
|
-
"version": "14.6.0-beta.
|
|
3
|
+
"version": "14.6.0-beta.8",
|
|
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,15 +24,15 @@
|
|
|
24
24
|
"main": "index.js",
|
|
25
25
|
"types": "index.d.ts",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@nrwl/devkit": "14.6.0-beta.
|
|
28
|
-
"@nrwl/jest": "14.6.0-beta.
|
|
29
|
-
"@nrwl/linter": "14.6.0-beta.
|
|
30
|
-
"@nrwl/react": "14.6.0-beta.
|
|
31
|
-
"@nrwl/workspace": "14.6.0-beta.
|
|
27
|
+
"@nrwl/devkit": "14.6.0-beta.8",
|
|
28
|
+
"@nrwl/jest": "14.6.0-beta.8",
|
|
29
|
+
"@nrwl/linter": "14.6.0-beta.8",
|
|
30
|
+
"@nrwl/react": "14.6.0-beta.8",
|
|
31
|
+
"@nrwl/workspace": "14.6.0-beta.8",
|
|
32
32
|
"chalk": "^4.1.0"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
|
-
"detox": "^19.
|
|
35
|
+
"detox": "^19.9.3"
|
|
36
36
|
},
|
|
37
37
|
"builders": "./executors.json",
|
|
38
38
|
"ng-update": {
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
},
|
|
42
42
|
"schematics": "./generators.json",
|
|
43
43
|
"typings": "./index.d.ts",
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "8b02670a3962710a929ad048d40ab7470a7a94a4"
|
|
45
45
|
}
|
|
@@ -12,7 +12,9 @@
|
|
|
12
12
|
"configPath": {
|
|
13
13
|
"type": "string",
|
|
14
14
|
"description": "Specify Detox config file path. If not supplied, detox searches for `.detoxrc[.js]` or `detox` section in `package.json`.",
|
|
15
|
-
"alias": "cp"
|
|
15
|
+
"alias": "cp",
|
|
16
|
+
"x-completion-type": "file",
|
|
17
|
+
"x-completion-glob": ".detoxrc?(.js)"
|
|
16
18
|
}
|
|
17
19
|
},
|
|
18
20
|
"required": []
|
|
@@ -28,7 +28,9 @@
|
|
|
28
28
|
"configPath": {
|
|
29
29
|
"type": "string",
|
|
30
30
|
"description": "Specify Detox config file path. If not supplied, detox searches for `.detoxrc[.js]` or `detox` section in package.json.",
|
|
31
|
-
"alias": "cp"
|
|
31
|
+
"alias": "cp",
|
|
32
|
+
"x-completion-type": "file",
|
|
33
|
+
"x-completion-glob": ".detoxrc?(.js)"
|
|
32
34
|
},
|
|
33
35
|
"runnerConfig": {
|
|
34
36
|
"type": "string",
|
package/src/utils/versions.d.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export declare const nxVersion: any;
|
|
2
|
-
export declare const detoxVersion = "19.
|
|
3
|
-
export declare const testingLibraryJestDom = "5.16.
|
|
2
|
+
export declare const detoxVersion = "19.10.0";
|
|
3
|
+
export declare const testingLibraryJestDom = "5.16.5";
|
package/src/utils/versions.js
CHANGED
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.testingLibraryJestDom = exports.detoxVersion = exports.nxVersion = void 0;
|
|
4
4
|
exports.nxVersion = require('../../package.json').version;
|
|
5
|
-
exports.detoxVersion = '19.
|
|
6
|
-
exports.testingLibraryJestDom = '5.16.
|
|
5
|
+
exports.detoxVersion = '19.10.0';
|
|
6
|
+
exports.testingLibraryJestDom = '5.16.5';
|
|
7
7
|
//# sourceMappingURL=versions.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"versions.js","sourceRoot":"","sources":["../../../../../packages/detox/src/utils/versions.ts"],"names":[],"mappings":";;;AAAa,QAAA,SAAS,GAAG,OAAO,CAAC,oBAAoB,CAAC,CAAC,OAAO,CAAC;AAElD,QAAA,YAAY,GAAG,
|
|
1
|
+
{"version":3,"file":"versions.js","sourceRoot":"","sources":["../../../../../packages/detox/src/utils/versions.ts"],"names":[],"mappings":";;;AAAa,QAAA,SAAS,GAAG,OAAO,CAAC,oBAAoB,CAAC,CAAC,OAAO,CAAC;AAElD,QAAA,YAAY,GAAG,SAAS,CAAC;AACzB,QAAA,qBAAqB,GAAG,QAAQ,CAAC"}
|