Skip to content

Commit e5c16cb

Browse files
authored
Merge pull request #465 from iclanton/update-rush
Update Rush and replace record-versions with Rush plugin
2 parents fab6217 + c37b07a commit e5c16cb

18 files changed

Lines changed: 751 additions & 849 deletions

File tree

api-demo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
},
1212
"devDependencies": {
1313
"tsdoc-build-rig": "workspace:*",
14-
"@rushstack/heft": "1.2.5",
14+
"@rushstack/heft": "1.2.7",
1515
"eslint": "~9.25.1"
1616
},
1717
"scripts": {
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"name": "plugins",
3+
"version": "1.0.0",
4+
"private": true,
5+
"dependencies": {
6+
"@rushstack/rush-published-versions-json-plugin": "0.1.0"
7+
}
8+
}

common/autoinstallers/plugins/pnpm-lock.yaml

Lines changed: 316 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/rush-plugin-manifest.schema.json",
3+
"plugins": [
4+
{
5+
"pluginName": "rush-published-versions-json-plugin",
6+
"description": "A Rush plugin for generating a JSON file containing the versions of all published packages in the monorepo.",
7+
"entryPoint": "./lib-commonjs/index.js",
8+
"associatedCommands": ["record-published-versions"],
9+
"commandLineJsonFilePath": "./command-line.json"
10+
}
11+
]
12+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"$schema": "https://developer.microsoft.com/json-schemas/rush/v5/command-line.schema.json",
3+
"commands": [
4+
{
5+
"commandKind": "globalPlugin",
6+
"name": "record-published-versions",
7+
"summary": "Generates a JSON file recording the version numbers of all published packages.",
8+
"safeForSimultaneousRushProcesses": true
9+
}
10+
],
11+
"parameters": [
12+
{
13+
"parameterKind": "string",
14+
"longName": "--output-path",
15+
"shortName": "-o",
16+
"argumentName": "FILE_PATH",
17+
"description": "The path to the output JSON file. Relative paths are resolved from the repo root.",
18+
"associatedCommands": ["record-published-versions"],
19+
"required": true
20+
}
21+
]
22+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"changes": [
3+
{
4+
"comment": "",
5+
"type": "none",
6+
"packageName": "@microsoft/tsdoc-config"
7+
}
8+
],
9+
"packageName": "@microsoft/tsdoc-config",
10+
"email": "iclanton@users.noreply.github.com"
11+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"changes": [
3+
{
4+
"comment": "",
5+
"type": "none",
6+
"packageName": "@microsoft/tsdoc"
7+
}
8+
],
9+
"packageName": "@microsoft/tsdoc",
10+
"email": "iclanton@users.noreply.github.com"
11+
}

0 commit comments

Comments
 (0)