Skip to content

Commit 4de1526

Browse files
akhrarovsaidelliott-w
authored andcommitted
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 b9cf3c9 commit 4de1526

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",
@@ -195,9 +199,5 @@
195199
"react-dom": "$react-dom",
196200
"typescript": "$typescript"
197201
}
198-
},
199-
"workspaces:": [
200-
"packages/*",
201-
"test/*"
202-
]
202+
}
203203
}

0 commit comments

Comments
 (0)