@nx/detox 23.3.0-beta.2 → 23.3.0-beta.3

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.
@@ -45,10 +45,16 @@ async function detoxInitGeneratorInternal(host, schema) {
45
45
  }
46
46
  function updateDependencies(host, schema) {
47
47
  // The user explicitly asked for detox, and its postinstall builds the
48
- // framework cache it needs to run at all, so enable it — npm and yarn run
49
- // it unconditionally. Transitive deps stay denied.
48
+ // framework cache it needs to run at all, so enable it. npm and yarn run it
49
+ // unconditionally. Transitive deps stay denied: dtrace-provider (via
50
+ // bunyan) falls back to a no-op when its build fails, and jest-resolve (via
51
+ // @nx/detox's @nx/jest dependency) brings unrs-resolver and, from jest
52
+ // 30.5.0, a jest-haste-map that depends on @parcel/watcher.
50
53
  (0, internal_1.acknowledgeBuildScripts)(host, (0, devkit_1.detectPackageManager)(host.root), {
51
54
  detox: true,
55
+ 'dtrace-provider': false,
56
+ '@parcel/watcher': false,
57
+ 'unrs-resolver': false,
52
58
  });
53
59
  return (0, devkit_1.addDependenciesToPackageJson)(host, {}, {
54
60
  '@nx/detox': versions_1.nxVersion,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/detox",
3
- "version": "23.3.0-beta.2",
3
+ "version": "23.3.0-beta.3",
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.3.0-beta.2",
41
- "@nx/jest": "23.3.0-beta.2",
42
- "@nx/js": "23.3.0-beta.2",
43
- "@nx/eslint": "23.3.0-beta.2",
44
- "@nx/react": "23.3.0-beta.2"
40
+ "@nx/devkit": "23.3.0-beta.3",
41
+ "@nx/jest": "23.3.0-beta.3",
42
+ "@nx/js": "23.3.0-beta.3",
43
+ "@nx/eslint": "23.3.0-beta.3",
44
+ "@nx/react": "23.3.0-beta.3"
45
45
  },
46
46
  "devDependencies": {
47
- "nx": "23.3.0-beta.2"
47
+ "nx": "23.3.0-beta.3"
48
48
  },
49
49
  "peerDependencies": {
50
50
  "detox": "^20.0.0"