Skip to content

Commit 283d2c5

Browse files
committed
feat: add starter
1 parent e00a487 commit 283d2c5

File tree

4 files changed

+7
-0
lines changed

4 files changed

+7
-0
lines changed

.vscode/settings.json

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"files.exclude": {
33
"framework": true,
44
"services": true,
5+
"starter": true,
56
"vue": true,
67
"astro": true,
78
"mdx": true,

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Setup:
1111

1212
- https://github.com/volarjs/volar.js
1313
- https://github.com/volarjs/services
14+
- https://github.com/volarjs/starter
1415
- https://github.com/vuejs/language-tools
1516
- https://github.com/withastro/language-tools
1617
- https://github.com/mdx-js/mdx-analyzer

package.json

+2
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
"setup": "(npm run add:framework & npm run add:services & npm run add:vue & npm run add:astro && npm run add:mdx) && pnpm i",
44
"add:framework": "git clone https://github.com/volarjs/volar.js.git framework",
55
"add:services": "git clone https://github.com/volarjs/services.git services",
6+
"add:starter": "git clone https://github.com/volarjs/starter.git starter",
67
"add:vue": "git clone https://github.com/vuejs/language-tools.git vue",
78
"add:astro": "git clone https://github.com/withastro/language-tools.git astro",
89
"add:mdx": "git clone https://github.com/mdx-js/mdx-analyzer.git mdx",
@@ -11,6 +12,7 @@
1112
"clean:tsbuildinfo": "find . -name '*.tsbuildinfo' -type f -prune -exec rm -rf '{}' +",
1213
"watch:framework": "cd framework && npm run watch",
1314
"watch:services": "cd services && npm run watch",
15+
"watch:starter": "cd starter && npm run watch",
1416
"watch:vue": "cd vue && npm run watch:base",
1517
"watch:astro": "cd astro && npm run dev",
1618
"watch:mdx": "cd mdx && npm run test-types -- -w"

volar.code-workspace

+3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
{
1111
"path": "services"
1212
},
13+
{
14+
"path": "starter"
15+
},
1316
{
1417
"path": "vue"
1518
},

0 commit comments

Comments
 (0)