Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(nx-dev): generate migration detail pages #29580

Open
wants to merge 8 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/external-generated/packages-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
],
"executors": [],
"generators": [],
"migrations": [],
"githubRoot": "https://github.com/nrwl/nx/blob/master",
"name": "powerpack-azure-cache",
"packageName": "@nx/powerpack-azure-cache",
Expand Down Expand Up @@ -70,6 +71,7 @@
"type": "generator"
}
],
"migrations": [],
"githubRoot": "https://github.com/nrwl/nx/blob/master",
"name": "powerpack-conformance",
"packageName": "@nx/powerpack-conformance",
Expand All @@ -91,6 +93,7 @@
"type": "generator"
}
],
"migrations": [],
"githubRoot": "https://github.com/nrwl/nx/blob/master",
"name": "powerpack-enterprise-cloud",
"packageName": "@nx/powerpack-enterprise-cloud",
Expand All @@ -114,6 +117,7 @@
],
"executors": [],
"generators": [],
"migrations": [],
"githubRoot": "https://github.com/nrwl/nx/blob/master",
"name": "powerpack-gcs-cache",
"packageName": "@nx/powerpack-gcs-cache",
Expand All @@ -125,6 +129,7 @@
"documents": [],
"executors": [],
"generators": [],
"migrations": [],
"githubRoot": "https://github.com/nrwl/nx/blob/master",
"name": "powerpack-license",
"packageName": "@nx/powerpack-license",
Expand Down Expand Up @@ -167,6 +172,7 @@
"type": "generator"
}
],
"migrations": [],
"githubRoot": "https://github.com/nrwl/nx/blob/master",
"name": "powerpack-owners",
"packageName": "@nx/powerpack-owners",
Expand All @@ -190,6 +196,7 @@
],
"executors": [],
"generators": [],
"migrations": [],
"githubRoot": "https://github.com/nrwl/nx/blob/master",
"name": "powerpack-s3-cache",
"packageName": "@nx/powerpack-s3-cache",
Expand Down Expand Up @@ -223,6 +230,7 @@
"type": "generator"
}
],
"migrations": [],
"githubRoot": "https://github.com/nrwl/nx/blob/master",
"name": "powerpack-shared-fs-cache",
"packageName": "@nx/powerpack-shared-fs-cache",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
"description": "Compile and bundle one or more Nx Conformance Rules",
"type": "object",
"properties": {
"rulesDirectory": {
"type": "string",
"description": "The directory, relative to the workspace root, containing the rule subdirectories to bundle. Defaults to {projectRoot}/src"
},
"outputPath": {
"type": "string",
"description": "The output path for the bundled rules to be written to"
Expand Down
Loading
Loading