Skip to content

Commit fca70ea

Browse files
fix(compiler): add apps directory to compiler workspaces
The 'start' and 'next' scripts reference 'yarn workspace playground' but the playground app in apps/playground was not included in the workspaces configuration. This caused these commands to fail. Added 'apps/*' to the workspaces.packages array to properly register the playground workspace.
1 parent 408b38e commit fca70ea

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

compiler/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
"private": true,
33
"workspaces": {
44
"packages": [
5-
"packages/*"
5+
"packages/*",
6+
"apps/*"
67
]
78
},
89
"repository": {

0 commit comments

Comments
 (0)