mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 13:53:35 +00:00
77 lines
2.0 KiB
JSON
77 lines
2.0 KiB
JSON
{
|
|
"name": "mobile-e2e",
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "apps/mobile-e2e/src",
|
|
"projectType": "application",
|
|
"targets": {
|
|
"build-ios": {
|
|
"executor": "@nx/detox:build",
|
|
"options": {
|
|
"detoxConfiguration": "ios.sim.local"
|
|
},
|
|
"configurations": {
|
|
"bare": {
|
|
"detoxConfiguration": "ios.sim.debug"
|
|
},
|
|
"production": {
|
|
"detoxConfiguration": "ios.sim.release"
|
|
}
|
|
}
|
|
},
|
|
"test-ios": {
|
|
"executor": "@nx/detox:test",
|
|
"options": {
|
|
"detoxConfiguration": "ios.sim.local",
|
|
"buildTarget": "mobile-e2e:build-ios"
|
|
},
|
|
"configurations": {
|
|
"bare": {
|
|
"detoxConfiguration": "ios.sim.debug",
|
|
"buildTarget": "mobile-e2e:build-ios:bare"
|
|
},
|
|
"production": {
|
|
"detoxConfiguration": "ios.sim.release",
|
|
"buildTarget": "mobile-e2e:build-ios:production"
|
|
}
|
|
}
|
|
},
|
|
"build-android": {
|
|
"executor": "@nx/detox:build",
|
|
"options": {
|
|
"detoxConfiguration": "android.emu.local"
|
|
},
|
|
"configurations": {
|
|
"bare": {
|
|
"detoxConfiguration": "android.emu.debug"
|
|
},
|
|
"production": {
|
|
"detoxConfiguration": "android.emu.release"
|
|
}
|
|
}
|
|
},
|
|
"test-android": {
|
|
"executor": "@nx/detox:test",
|
|
"options": {
|
|
"detoxConfiguration": "android.emu.local",
|
|
"buildTarget": "mobile-e2e:build-android"
|
|
},
|
|
"configurations": {
|
|
"bare": {
|
|
"detoxConfiguration": "android.emu.debug",
|
|
"buildTarget": "mobile-e2e:build-android:bare"
|
|
},
|
|
"production": {
|
|
"detoxConfiguration": "android.emu.release",
|
|
"buildTarget": "mobile-e2e:build-android:production"
|
|
}
|
|
}
|
|
},
|
|
"lint": {
|
|
"executor": "@nx/eslint:lint",
|
|
"outputs": ["{options.outputFile}"]
|
|
}
|
|
},
|
|
"tags": [],
|
|
"implicitDependencies": ["mobile"]
|
|
}
|