Skip to content

Commit 9b95a83

Browse files
authored
test: move pnpm onlyBuiltDependencies to pnpm-workspace.yaml (#1421)
1 parent 20f7fe7 commit 9b95a83

File tree

4 files changed

+6
-12
lines changed

4 files changed

+6
-12
lines changed

Diff for: examples/basic-pnpm/package.json

-5
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,5 @@
99
"private": true,
1010
"devDependencies": {
1111
"cypress": "14.2.1"
12-
},
13-
"pnpm": {
14-
"onlyBuiltDependencies": [
15-
"cypress"
16-
]
1712
}
1813
}

Diff for: examples/basic-pnpm/pnpm-workspace.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
onlyBuiltDependencies:
2+
- cypress

Diff for: examples/start-and-pnpm-workspaces/package.json

+1-6
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,5 @@
22
"name": "start-and-pnpm-workspaces",
33
"version": "1.0.0",
44
"description": "example using pnpm with workspaces",
5-
"private": true,
6-
"pnpm": {
7-
"onlyBuiltDependencies": [
8-
"cypress"
9-
]
10-
}
5+
"private": true
116
}
+3-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
packages:
2-
- 'packages/*'
2+
- packages/*
3+
onlyBuiltDependencies:
4+
- cypress

0 commit comments

Comments
 (0)