* 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
62 lines
2.0 KiB
JSON
62 lines
2.0 KiB
JSON
{
|
|
"name": "Nx Expo",
|
|
"version": "0.1",
|
|
"extends": ["@nrwl/workspace"],
|
|
"schematics": {
|
|
"init": {
|
|
"factory": "./src/generators/init/init#expoInitSchematic",
|
|
"schema": "./src/generators/init/schema.json",
|
|
"description": "Initialize the @nrwl/expo plugin",
|
|
"hidden": true
|
|
},
|
|
"application": {
|
|
"factory": "./src/generators/application/application#expoApplicationSchematic",
|
|
"schema": "./src/generators/application/schema.json",
|
|
"aliases": ["app"],
|
|
"x-type": "application",
|
|
"description": "Create an application"
|
|
},
|
|
"library": {
|
|
"factory": "./src/generators/library/library#expoLibrarySchematic",
|
|
"schema": "./src/generators/library/schema.json",
|
|
"aliases": ["lib"],
|
|
"x-type": "library",
|
|
"description": "Create a library"
|
|
},
|
|
"component": {
|
|
"factory": "./src/generators/component/component#expoComponentSchematic",
|
|
"schema": "./src/generators/component/schema.json",
|
|
"description": "Create a component",
|
|
"aliases": ["c"]
|
|
}
|
|
},
|
|
"generators": {
|
|
"init": {
|
|
"factory": "./src/generators/init/init#expoInitGenerator",
|
|
"schema": "./src/generators/init/schema.json",
|
|
"description": "Initialize the @nrwl/expo plugin",
|
|
"hidden": true
|
|
},
|
|
"application": {
|
|
"factory": "./src/generators/application/application#expoApplicationGenerator",
|
|
"schema": "./src/generators/application/schema.json",
|
|
"aliases": ["app"],
|
|
"x-type": "application",
|
|
"description": "Create an application"
|
|
},
|
|
"library": {
|
|
"factory": "./src/generators/library/library#expoLibraryGenerator",
|
|
"schema": "./src/generators/library/schema.json",
|
|
"aliases": ["lib"],
|
|
"x-type": "library",
|
|
"description": "Create a library"
|
|
},
|
|
"component": {
|
|
"factory": "./src/generators/component/component#expoComponentGenerator",
|
|
"schema": "./src/generators/component/schema.json",
|
|
"description": "Create a component",
|
|
"aliases": ["c"]
|
|
}
|
|
}
|
|
}
|