forked from angular/angular
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpnpm-workspace.yaml
More file actions
96 lines (89 loc) · 2.83 KB
/
pnpm-workspace.yaml
File metadata and controls
96 lines (89 loc) · 2.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
packages:
- .
- adev
- adev/shared-docs
- adev/shared-docs/pipeline/api-gen
- dev-app/
- devtools/
- modules
- integration
- packages/animations/
- packages/common/
- packages/compiler-cli/
- packages/compiler-cli/linker/babel/test
- packages/compiler/
- packages/core/
- packages/core/test/bundling
- packages/forms/
- packages/language-service/
- packages/platform-browser/
- packages/platform-server/
- packages/platform-browser-dynamic/
- packages/router/
- packages/localize/
- packages/elements/
- packages/benchpress/
- packages/service-worker/
- packages/upgrade/
- packages/zone.js/
- packages/zone.js/test/typings/
- tools/bazel/rules_angular_store/
- vscode-ng-language-service
- vscode-ng-language-service/server
- vscode-ng-language-service/integration/project
allowBuilds:
'@bazel/concatjs': false
'@firebase/util': false
'@google/genai': false
'@parcel/watcher': false
'@vscode/vsce-sign': false
bufferutil: false
cypress: true
esbuild: false
keytar: false
lmdb: false
msgpackr-extract: false
protobufjs: false
re2: false
sleep: false
unrs-resolver: false
utf-8-validate: false
allowedDeprecatedVersions:
angular: '*'
tslint: '*'
gulp-conventional-changelog: '5'
protractor: '7'
# The minimum age of a release to be considered for dependency installation.
# The value is in minutes (1440 minutes = 1 day).
minimumReleaseAge: 1440
# List of packages to exclude from the minimum release age check.
minimumReleaseAgeExclude:
- '@angular-devkit/*'
- '@angular/*'
- '@ngtools/webpack'
- '@schematics/*'
- 'ng-packagr'
- 'zone.js'
# Allow any version of @angular/* packages to satisfy peer dependencies, as these are managed within the monorepo.
peerDependencyRules:
allowAny:
- '@angular/*'
packageExtensions:
grpc-gcp:
peerDependencies:
protobufjs: '*'
engineStrict: false
# Disabling pnpm [hoisting](https://pnpm.io/settings#hoist) by setting `hoist:false` is recommended on
# projects using rules_js so that pnpm outside of Bazel lays out a node_modules tree similar to what
# rules_js lays out under Bazel (without a hidden node_modules/.pnpm/node_modules)
hoist: false
# Avoid pnpm auto-installing peer dependencies. We want to be explicit about our versions used
# for peer dependencies, avoiding potential mismatches. In addition, it ensures we can continue
# to rely on peer dependency placeholders substituted via Bazel.
autoInstallPeers: false
# TODO: Investigate why without minimumReleaseAgeStrict: false it fails with such errors:
# [ERR_PNPM_MISSING_TIME] The metadata of @babel/helper-globals is missing the "time" field
# This error happened while installing the dependencies of @angular-devkit/build-angular@22.0.0-next.7
# at @babel/preset-env@7.29.2
# at @babel/plugin-transform-classes@7.28.6
minimumReleaseAgeStrict: false