This PR removes the `@nrwl/*` packages. Also cleans up references to the legacy packages. NOTE: The rescope page is now under `/deprecated/rescope`. There is still >1000K monthly traffic to it, which might be due to older Nx users. <!-- If this is a particularly complex change or feature addition, you can request a dedicated Nx release for this pull request branch. Mention someone from the Nx team or the `@nrwl/nx-pipelines-reviewers` and they will confirm if the PR warrants its own release for testing purposes, and generate it for you if appropriate. --> ## Current Behavior <!-- This is the behavior we have today --> ## Expected Behavior <!-- This is the behavior we should expect with the changes in this PR --> ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #
50 lines
1.2 KiB
JSON
50 lines
1.2 KiB
JSON
{
|
|
"name": "react-native",
|
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
"sourceRoot": "packages/react-native/src",
|
|
"projectType": "library",
|
|
"targets": {
|
|
"build-base": {
|
|
"executor": "@nx/js:tsc",
|
|
"options": {
|
|
"assets": [
|
|
"packages/react-native/*.md",
|
|
{
|
|
"input": "packages/react-native",
|
|
"glob": "**/files/**/.babelrc.template",
|
|
"output": "/"
|
|
},
|
|
{
|
|
"input": "packages/react-native/src",
|
|
"glob": "**/!(*.ts)",
|
|
"output": "/src"
|
|
},
|
|
{
|
|
"input": "packages/react-native",
|
|
"glob": "**/*.json",
|
|
"ignore": ["**/tsconfig*.json"],
|
|
"output": "/"
|
|
},
|
|
{
|
|
"input": "packages/react-native",
|
|
"glob": "**/*.d.ts",
|
|
"output": "/"
|
|
},
|
|
{
|
|
"input": "",
|
|
"glob": "LICENSE",
|
|
"output": "/"
|
|
}
|
|
]
|
|
}
|
|
},
|
|
"build": {
|
|
"executor": "nx:run-commands",
|
|
"outputs": ["{workspaceRoot}/build/packages/react-native"],
|
|
"options": {
|
|
"command": "node ./scripts/copy-readme.js react-native"
|
|
}
|
|
}
|
|
}
|
|
}
|