Skip to content

Commit 907cbf1

Browse files
committed
Remove package.json from client/
It can just sit at the top level. We keep the one in `server/` because that folder should act as a standalone language-server.
1 parent d468855 commit 907cbf1

6 files changed

+96
-141
lines changed

.vscodeignore

-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@
55
**/tsconfig.json
66
contributing.md
77
.github/**
8-
client/node_modules/@types
9-
client/node_modules/.bin
108
server/node_modules/.bin
119
node_modules/.bin
1210
analysis/

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ Thanks for your interest. Below is an informal spec of how the plugin's server c
1212
├── analysis // Native binary powering hover, autocomplete, etc.
1313
│ ├── src
1414
│ └── run.exe // Dev-time analysis binary
15-
├── package.json // The extension manifest.
16-
└── server // Language Server
15+
├── package.json // The extension manifest
16+
└── server // Language Server. Usable standalone
1717
├── src
1818
│ └── server.ts // Language Server entry point
1919
└── analysis_binaries // Prod-time platform-specific analysis binaries

client/package-lock.json

-113
This file was deleted.

client/package.json

-21
This file was deleted.

package-lock.json

+90-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+4-2
Original file line numberDiff line numberDiff line change
@@ -103,14 +103,16 @@
103103
"vscode:prepublish": "npm run clean && npm run compile",
104104
"compile": "tsc -b",
105105
"watch": "tsc -b -w",
106-
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
106+
"postinstall": "cd server && npm install"
107107
},
108108
"devDependencies": {
109109
"@types/node": "^12.12.0",
110+
"@types/vscode": "1.43.0",
110111
"reanalyze": "^2.15.0",
111112
"typescript": "^3.9.4"
112113
},
113114
"dependencies": {
114-
"chokidar": "^3.4.2"
115+
"chokidar": "^3.4.2",
116+
"vscode-languageclient": "^6.1.3"
115117
}
116118
}

0 commit comments

Comments
 (0)