Skip to content

Commit db34eb8

Browse files
authored
ENG-724 - Refactor workspace group by apps/package folders (#332)
* Refactor workspace configuration to simplify folder structure by consolidating apps and packages into single entries. * rm comments * subfolder .code-workspace files not actually needed * .
1 parent 448b7d7 commit db34eb8

3 files changed

Lines changed: 38 additions & 18 deletions

File tree

apps/.vscode/settings.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"files.exclude": {
3+
"**/node_modules": true,
4+
"**/dist": true,
5+
"**/.turbo": true,
6+
"**/.next": true,
7+
"**/.vercel": true,
8+
"**/.vscode": true,
9+
"**/next-env.d.ts": true
10+
},
11+
"files.watcherExclude": {
12+
"**/target": true,
13+
"**/dist": true,
14+
"**/.turbo": true,
15+
"**/.next": true,
16+
"**/.vercel": true
17+
}
18+
}

discourse-graph.code-workspace

Lines changed: 3 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,8 @@
11
{
22
"folders": [
3-
{
4-
"path": ".",
5-
},
6-
{
7-
"path": "./apps/obsidian",
8-
},
9-
{
10-
"path": "./apps/roam",
11-
},
12-
{
13-
"path": "./apps/website",
14-
},
15-
{
16-
"path": "./packages/database",
17-
},
18-
{
19-
"path": "./packages/ui",
20-
},
3+
{ "path": "." },
4+
{ "path": "./apps", "name": "Apps" },
5+
{ "path": "./packages", "name": "Packages" },
216
],
227
"settings": {
238
"files.watcherExclude": {

packages/.vscode/settings.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"files.exclude": {
3+
"**/node_modules": true,
4+
"**/dist": true,
5+
"**/.turbo": true,
6+
"**/.next": true,
7+
"**/.vercel": true,
8+
"**/.vscode": true
9+
},
10+
"files.watcherExclude": {
11+
"**/target": true,
12+
"**/dist": true,
13+
"**/.turbo": true,
14+
"**/.next": true,
15+
"**/.vercel": true
16+
}
17+
}

0 commit comments

Comments
 (0)