Skip to content

Commit 08d5b2b

Browse files
authored
chore: remove invalid colon from workspaces key in package.json (#12757)
### What? This PR removes an extra colon from the `"workspaces"` key which was likely a typo. ### Why? To use a properly recognized workspaces key without the extra colon. ### How? Deletion of `:` from the workspaces key in `package.json`
1 parent cb3f9bb commit 08d5b2b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
"version": "3.42.0",
44
"private": true,
55
"type": "module",
6+
"workspaces": [
7+
"packages/*",
8+
"test/*"
9+
],
610
"scripts": {
711
"bf": "pnpm run build:force",
812
"build": "pnpm run build:core",
@@ -194,9 +198,5 @@
194198
"react-dom": "$react-dom",
195199
"typescript": "$typescript"
196200
}
197-
},
198-
"workspaces:": [
199-
"packages/*",
200-
"test/*"
201-
]
201+
}
202202
}

0 commit comments

Comments
 (0)