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`
This commit is contained in:
Said Akhrarov
2025-06-10 19:03:59 -04:00
committed by GitHub
parent cb3f9bb3e9
commit 08d5b2b79d

View File

@@ -3,6 +3,10 @@
"version": "3.42.0",
"private": true,
"type": "module",
"workspaces": [
"packages/*",
"test/*"
],
"scripts": {
"bf": "pnpm run build:force",
"build": "pnpm run build:core",
@@ -194,9 +198,5 @@
"react-dom": "$react-dom",
"typescript": "$typescript"
}
},
"workspaces:": [
"packages/*",
"test/*"
]
}
}