Skip to content

Commit 4c156d1

Browse files
Jackson Deanchriseppstein
Jackson Dean
authored andcommitted
feat: Basic workings of language server and vscode client.
1 parent d73fafb commit 4c156d1

24 files changed

+930
-4
lines changed

css-blocks.code-workspace

+6
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,12 @@
3939
},
4040
{
4141
"path": "packages/@css-blocks/cli"
42+
},
43+
{
44+
"path": "packages/@css-blocks/vscode"
45+
},
46+
{
47+
"path": "packages/@css-blocks/language-server"
4248
}
4349
],
4450
"settings": {
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
out
2+
node_modules
3+
.vscode-test
4+
*.tsbuildinfo
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
.vscode/**
2+
**/*.ts
3+
**/*.map
4+
.gitignore
5+
**/tsconfig.json
6+
**/tsconfig.base.json
7+
contributing.md
8+
.travis.yml
9+
node_modules/**
10+
!node_modules/vscode-jsonrpc/**
11+
!node_modules/vscode-languageclient/**
12+
!node_modules/vscode-languageserver-protocol/**
13+
!node_modules/vscode-languageserver-types/**
14+
!node_modules/semver/**
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "@css-blocks/language-server",
3+
"description": "CSS Blocks Language Server",
4+
"version": "0.0.1",
5+
"author": "LinkedIn Corporation",
6+
"license": "BSD-2-Clause",
7+
"engines": {
8+
"node": "*"
9+
},
10+
"repository": {
11+
"type": "git",
12+
"url": "https://github.com/LinkedIn/css-blocks"
13+
},
14+
"dependencies": {
15+
"@css-blocks/core": "^0.24.0",
16+
"opticss": "^0.6.2",
17+
"vscode-languageserver": "^5.2.1"
18+
},
19+
"scripts": {
20+
"compile": "tsc --build",
21+
"watch": "tsc --build --watch"
22+
}
23+
}

0 commit comments

Comments
 (0)