nx/packages/angular/project.json
Jack Hsu f221a41dbd
feat(misc): remove @nrwl/ scoped packages (#27858)
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 #
2024-09-27 17:19:01 -04:00

72 lines
1.9 KiB
JSON

{
"name": "angular",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "packages/angular",
"projectType": "library",
"targets": {
"build-ng": {
"dependsOn": ["build-base"],
"executor": "@nx/angular:package",
"options": {
"project": "packages/angular/ng-package.json",
"tsConfig": "packages/angular/tsconfig.lib.runtime.json"
},
"outputs": ["{workspaceRoot}/build/packages/angular"]
},
"build-base": {
"executor": "@nx/js:tsc",
"options": {
"assets": [
{
"input": "packages/angular",
"glob": "**/files/**",
"output": "/"
},
{
"input": "packages/angular",
"glob": "**/creator-files/**",
"output": "/"
},
{
"input": "packages/angular",
"glob": "**/files/**/.gitkeep",
"output": "/"
},
{
"input": "packages/angular",
"glob": "**/*.json",
"ignore": ["**/tsconfig*.json", "project.json", ".eslintrc.json"],
"output": "/"
},
{
"input": "packages/angular",
"glob": "**/*.js",
"ignore": ["**/jest.config.js"],
"output": "/"
},
{
"input": "packages/angular",
"glob": "**/*.d.ts",
"output": "/"
},
{
"input": "",
"glob": "LICENSE",
"output": "/"
}
]
}
},
"build": {
"executor": "nx:run-commands",
"outputs": ["{workspaceRoot}/build/packages/angular"],
"dependsOn": ["build-ng", "build-base", "^build"],
"options": {
"command": "node ./scripts/copy-readme.js angular",
"parallel": false
}
}
},
"implicitDependencies": []
}