Skip to content
Merged
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
2 changes: 1 addition & 1 deletion api-demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
},
"devDependencies": {
"tsdoc-build-rig": "workspace:*",
"@rushstack/heft": "1.2.5",
"@rushstack/heft": "1.2.7",
"eslint": "~9.25.1"
},
"scripts": {
Expand Down
8 changes: 8 additions & 0 deletions common/autoinstallers/plugins/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"name": "plugins",
"version": "1.0.0",
"private": true,
"dependencies": {
"@rushstack/rush-published-versions-json-plugin": "0.1.0"
}
}
316 changes: 316 additions & 0 deletions common/autoinstallers/plugins/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/rush-plugin-manifest.schema.json",
"plugins": [
{
"pluginName": "rush-published-versions-json-plugin",
"description": "A Rush plugin for generating a JSON file containing the versions of all published packages in the monorepo.",
"entryPoint": "./lib-commonjs/index.js",
"associatedCommands": ["record-published-versions"],
"commandLineJsonFilePath": "./command-line.json"
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/command-line.schema.json",
"commands": [
{
"commandKind": "globalPlugin",

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That's new

"name": "record-published-versions",
"summary": "Generates a JSON file recording the version numbers of all published packages.",
"safeForSimultaneousRushProcesses": true
}
],
"parameters": [
{
"parameterKind": "string",
"longName": "--output-path",
"shortName": "-o",
"argumentName": "FILE_PATH",
"description": "The path to the output JSON file. Relative paths are resolved from the repo root.",
"associatedCommands": ["record-published-versions"],
"required": true
}
]
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"comment": "",
"type": "none",
"packageName": "@microsoft/tsdoc-config"
}
],
"packageName": "@microsoft/tsdoc-config",
"email": "iclanton@users.noreply.github.com"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"changes": [
{
"comment": "",
"type": "none",
"packageName": "@microsoft/tsdoc"
}
],
"packageName": "@microsoft/tsdoc",
"email": "iclanton@users.noreply.github.com"
}
Loading
Loading