Skip to content

Commit bdb398b

Browse files
committed
add lerna and separate language server package
1 parent 94c1942 commit bdb398b

Some content is hidden

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

43 files changed

+73977
-36519
lines changed

.gitignore

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
node_modules
2-
dist
3-
*.vsix
2+
/*.vsix

.vscode/launch.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
"request": "launch",
88
"name": "Launch Client",
99
"runtimeExecutable": "${execPath}",
10-
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
10+
"args": ["--extensionDevelopmentPath=${workspaceRoot}/packages/vscode-tailwindcss"],
1111
"stopOnEntry": false,
1212
"sourceMaps": true,
13-
"outFiles": ["${workspaceRoot}/dist/extension/**/*.js"],
13+
"outFiles": ["${workspaceRoot}/packages/vscode-tailwindcss/dist/**/*.js"]
1414
// "preLaunchTask": "npm: dev"
1515
},
1616
{
@@ -21,7 +21,7 @@
2121
"protocol": "inspector",
2222
"port": 6011,
2323
"sourceMaps": true,
24-
"outFiles": ["${workspaceRoot}/dist/server/**/*.js"]
24+
"outFiles": ["${workspaceRoot}/packages/vscode-tailwindcss/dist/**/*.js"]
2525
},
2626
{
2727
"type": "node",
@@ -31,7 +31,7 @@
3131
"protocol": "inspector",
3232
"port": 6012,
3333
"sourceMaps": true,
34-
"outFiles": ["${workspaceRoot}/dist/server/**/*.js"]
34+
"outFiles": ["${workspaceRoot}/packages/vscode-tailwindcss/dist/**/*.js"]
3535
}
3636
]
3737
}

README.md

-125
This file was deleted.

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
./packages/vscode-tailwindcss/README.md

lerna.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"version": "independent",
3+
"packages": ["packages/*"]
4+
}

0 commit comments

Comments
 (0)