Skip to content

Commit ac717c5

Browse files
merge: PR #7 from chore/6-move-front-from-the-old-repo-staging
6 - Move front from the old repo
2 parents 67061ac + f79063b commit ac717c5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+3609
-134
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,6 @@
1616

1717
**/node_modules
1818

19-
**/target
19+
**/target
20+
21+
.idea

.prettierrc.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"semi": true,
3+
"trailingComma": "all",
4+
"singleQuote": true,
5+
"printWidth": 120,
6+
"tabWidth": 2,
7+
"bracketSpacing": true,
8+
"parser": "typescript",
9+
"endOfLine": "auto"
10+
}

.vscode/settings.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,5 @@
1010
},
1111
// Turn off tsc task auto detection since we have the necessary tasks as npm scripts
1212
"typescript.tsc.autoDetect": "off",
13-
"npm.packageManager": "pnpm",
14-
"rust-analyzer.linkedProjects": [
15-
".\\libs\\code-actions\\Cargo.toml"
16-
]
13+
"npm.packageManager": "pnpm"
1714
}

package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@
44
"workspaces": [
55
"libs/*",
66
"servers/*",
7-
"vscode"
7+
"vscode",
8+
"sidebar"
89
],
910
"devDependencies": {
1011
"turbo": "^1.12.4"
1112
},
1213
"scripts": {
13-
"build": "turbo build && node ./scripts/copy-servers.js",
14-
"build:extension": "turbo build:extension && node ./scripts/copy-servers.js",
14+
"build": "turbo build && node ./scripts/copy-servers.js && node ./scripts/copy-front.js",
15+
"build:extension": "turbo build:extension && node ./scripts/copy-servers.js && node ./scripts/copy-front.js",
1516
"publish": "turbo publish",
1617
"publish:check": "turbo publish:check",
1718
"publish:extension": "turbo publish:extension",

0 commit comments

Comments
 (0)