@nx/expo 19.0.0-beta.2 → 19.0.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/expo",
3
- "version": "19.0.0-beta.2",
3
+ "version": "19.0.0-beta.3",
4
4
  "private": false,
5
5
  "description": "The Expo Plugin for Nx contains executors and generators for managing and developing an expo application within your workspace. For example, you can directly build for different target platforms as well as generate projects and publish your code.",
6
6
  "keywords": [
@@ -26,7 +26,7 @@
26
26
  "main": "./index.js",
27
27
  "types": "index.d.ts",
28
28
  "dependencies": {
29
- "@nx/devkit": "19.0.0-beta.2",
29
+ "@nx/devkit": "19.0.0-beta.3",
30
30
  "chalk": "^4.1.0",
31
31
  "enhanced-resolve": "^5.8.3",
32
32
  "fs-extra": "^11.1.0",
@@ -36,13 +36,13 @@
36
36
  "tslib": "^2.3.0",
37
37
  "tsconfig-paths": "^4.1.2",
38
38
  "tsconfig-paths-webpack-plugin": "^4.0.0",
39
- "@nx/jest": "19.0.0-beta.2",
40
- "@nx/js": "19.0.0-beta.2",
41
- "@nx/eslint": "19.0.0-beta.2",
42
- "@nx/react": "19.0.0-beta.2",
43
- "@nx/web": "19.0.0-beta.2",
44
- "@nx/webpack": "19.0.0-beta.2",
45
- "@nrwl/expo": "19.0.0-beta.2"
39
+ "@nx/jest": "19.0.0-beta.3",
40
+ "@nx/js": "19.0.0-beta.3",
41
+ "@nx/eslint": "19.0.0-beta.3",
42
+ "@nx/react": "19.0.0-beta.3",
43
+ "@nx/web": "19.0.0-beta.3",
44
+ "@nx/webpack": "19.0.0-beta.3",
45
+ "@nrwl/expo": "19.0.0-beta.3"
46
46
  },
47
47
  "executors": "./executors.json",
48
48
  "ng-update": {
@@ -15,7 +15,7 @@ export interface Schema {
15
15
  js: boolean; // default is false
16
16
  linter: Linter; // default is eslint
17
17
  setParserOptionsProject?: boolean; // default is false
18
- e2eTestRunner: 'cypress' | 'playwright' | 'detox' | 'none'; // default is cypress
18
+ e2eTestRunner: 'cypress' | 'playwright' | 'detox' | 'none'; // default is playwright
19
19
  standaloneConfig?: boolean;
20
20
  skipPackageJson?: boolean; // default is false
21
21
  addPlugin?: boolean;
@@ -75,8 +75,8 @@
75
75
  "e2eTestRunner": {
76
76
  "description": "Adds the specified e2e test runner",
77
77
  "type": "string",
78
- "enum": ["cypress", "playwright", "detox", "none"],
79
- "default": "cypress"
78
+ "enum": ["playwright", "cypress", "detox", "none"],
79
+ "default": "playwright"
80
80
  },
81
81
  "standaloneConfig": {
82
82
  "description": "Split the project configuration into `<projectRoot>/project.json` rather than including it inside `workspace.json`.",