Skip to content

Commit 95076bf

Browse files
authored
Replace nested workspace configuration with top-level configuration (#3094)
This replaces the nested workspace configuration we use for examples with a top-level configuration. It seems that Dependabot doesn't support nested workspaces, resulting in lint errors that need to be manually fixed. Hopefully this change addresses that issue.
1 parent 9b7ff3b commit 95076bf

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
},
99
"files": [],
1010
"workspaces": [
11-
"packages/*"
11+
"packages/*",
12+
"packages/examples/packages/*",
13+
"packages/examples/packages/invoke-snap/packages/*"
1214
],
1315
"scripts": {
1416
"build": "ts-bridge --project tsconfig.build.json --verbose",

packages/examples/package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@
1919
"license": "(MIT-0 OR Apache-2.0)",
2020
"sideEffects": false,
2121
"files": [],
22-
"workspaces": [
23-
"packages/*"
24-
],
2522
"scripts": {
2623
"build": "yarn workspaces foreach --worktree --parallel --verbose --no-private run build",
2724
"build:clean": "yarn clean && yarn build",

packages/examples/packages/invoke-snap/package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,6 @@
1919
"license": "(MIT-0 OR Apache-2.0)",
2020
"sideEffects": false,
2121
"files": [],
22-
"workspaces": [
23-
"packages/*"
24-
],
2522
"scripts": {
2623
"build": "yarn workspaces foreach --worktree --parallel --verbose run build",
2724
"build:clean": "yarn clean && yarn build",

0 commit comments

Comments
 (0)