* feat(expo): move expo to main repo * feat(expo): add e2e expo tests and fix expo unit tests * feat(expo): add generated docs * feat(expo): update cz-config to add expo to commit message * feat(expo): add @nrwl/expo to e2e test setup * feat(expo): add expo to preset * feat(expo): add detox tests * feat(expo): update docs * feat(expo): fix e2e tests * feat(expo): upgrade expo to 46.0.10 * fix(expo): correct eas-cli build:info parameters names * fix(expo): add cleanupProject to e2e test
35 lines
805 B
JSON
35 lines
805 B
JSON
{
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "e2e/expo",
|
|
"projectType": "application",
|
|
"targets": {
|
|
"e2e": {
|
|
"executor": "nx:run-commands",
|
|
"options": {
|
|
"commands": [
|
|
{
|
|
"command": "yarn e2e-start-local-registry"
|
|
},
|
|
{
|
|
"command": "yarn e2e-build-package-publish"
|
|
},
|
|
{
|
|
"command": "nx run-e2e-tests e2e-expo"
|
|
}
|
|
],
|
|
"parallel": false
|
|
}
|
|
},
|
|
"run-e2e-tests": {
|
|
"executor": "@nrwl/jest:jest",
|
|
"options": {
|
|
"jestConfig": "e2e/expo/jest.config.ts",
|
|
"passWithNoTests": true,
|
|
"runInBand": true
|
|
},
|
|
"outputs": ["coverage/e2e/expo"]
|
|
}
|
|
},
|
|
"implicitDependencies": ["expo"]
|
|
}
|