Skip to content

Commit a2760f0

Browse files
committed
build: update pnpm to v10.17.0 (#3073)
pnpm v10.17.0 adds support for wildcards in 'minimumReleaseAgeExclude'. This simplifies the configuration by allowing the use of '@angular-devkit/*' and '@angular/*' instead of listing each package individually. PR Close #3073
1 parent ab0b0c0 commit a2760f0

File tree

2 files changed

+5
-32
lines changed

2 files changed

+5
-32
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
"name": "@angular/build-tooling",
33
"version": "0.0.0-{SCM_HEAD_SHA}",
44
"private": true,
5-
"packageManager": "pnpm@10.16.1",
5+
"packageManager": "pnpm@10.17.0",
66
"engines": {
77
"npm": "Please use pnpm instead of NPM to install dependencies",
88
"yarn": "Please use pnpm instead of Yarn to install dependencies",
9-
"pnpm": "10.16.1"
9+
"pnpm": "10.17.0"
1010
},
1111
"scripts": {
1212
"prepare": "husky",

pnpm-workspace.yaml

Lines changed: 3 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -26,36 +26,9 @@ packages:
2626
# The value is in minutes (1440 minutes = 1 day).
2727
minimumReleaseAge: 1440
2828
# List of packages to exclude from the minimum release age check.
29-
# Wildcards are not yet supported: https://github.com/pnpm/pnpm/issues/9983
3029
minimumReleaseAgeExclude:
31-
- '@angular-devkit/architect'
32-
- '@angular-devkit/build-angular'
33-
- '@angular-devkit/build-webpack'
34-
- '@angular-devkit/core'
35-
- '@angular-devkit/schematics-cli'
36-
- '@angular-devkit/schematics'
37-
- '@angular-devkit/architect-cli'
38-
- '@angular-devkit/architect'
39-
- '@angular/animations'
40-
- '@angular/benchpress'
41-
- '@angular/cdk'
42-
- '@angular/ng-dev'
43-
- '@angular/cli'
44-
- '@angular/ssr'
45-
- '@angular/common'
46-
- '@angular/compiler-cli'
47-
- '@angular/compiler'
48-
- '@angular/core'
49-
- '@angular/forms'
50-
- '@angular/language-service'
51-
- '@angular/localize'
52-
- '@angular/material'
53-
- '@angular/material-moment-adapter'
54-
- '@angular/platform-browser-dynamic'
55-
- '@angular/platform-browser'
56-
- '@angular/platform-server'
57-
- '@angular/router'
58-
- '@angular/service-worker'
30+
- '@angular-devkit/*'
31+
- '@angular/*'
5932
- '@ngtools/webpack'
60-
- '@schematics/angular'
33+
- '@schematics/*'
6134
- 'ng-packagr'

0 commit comments

Comments
 (0)