-
-
Notifications
You must be signed in to change notification settings - Fork 135
/
.yarnrc.yml
37 lines (31 loc) · 1.14 KB
/
.yarnrc.yml
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
# We want to adjust this to pnp at some point to enforce strict dependency checks,
# currently this would break everything as the dependencies are incomplete in most packages.
nodeLinker: node-modules
plugins:
- path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs
spec: "@yarnpkg/plugin-interactive-tools"
- path: .yarn/plugins/@yarnpkg/plugin-workspace-tools.cjs
spec: "@yarnpkg/plugin-workspace-tools"
- path: .yarn/plugins/@yarnpkg/plugin-version.cjs
spec: "@yarnpkg/plugin-version"
- path: .yarn/plugins/@yarnpkg/plugin-typescript.cjs
spec: "@yarnpkg/plugin-typescript"
- ./legacyDependencies.js
yarnPath: .yarn/releases/yarn-3.2.0.cjs
# in combination with isemail-npm-3.2.0-browserified.patch
# https://github.com/neos/neos-ui/pull/3200#issuecomment-1284419262
packageExtensions:
dependencies:
"buffer": "^5.0.0"
# Needed for the yarn version comparison
changesetBaseRefs:
- origin/8.2
- composer/8.2
# fixes https://github.com/yarnpkg/berry/issues/5109
changesetIgnorePatterns:
- ".yarn/**/*"
# NPM publish config
npmAlwaysAuth: false
npmAuthToken: "${NPM_TOKEN-}"
npmPublishAccess: "public"