Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove package.json from client/ #135

Merged
merged 1 commit into from
Apr 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
**/tsconfig.json
contributing.md
.github/**
client/node_modules/@types
client/node_modules/.bin
server/node_modules/.bin
node_modules/.bin
analysis/
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ Thanks for your interest. Below is an informal spec of how the plugin's server c
├── analysis // Native binary powering hover, autocomplete, etc.
│ ├── src
│ └── run.exe // Dev-time analysis binary
├── package.json // The extension manifest.
└── server // Language Server
├── package.json // The extension manifest
└── server // Language Server. Usable standalone
├── src
│ └── server.ts // Language Server entry point
└── analysis_binaries // Prod-time platform-specific analysis binaries
Expand Down
113 changes: 0 additions & 113 deletions client/package-lock.json

This file was deleted.

21 changes: 0 additions & 21 deletions client/package.json

This file was deleted.

91 changes: 90 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -103,14 +103,16 @@
"vscode:prepublish": "npm run clean && npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
"postinstall": "cd server && npm install"
},
"devDependencies": {
"@types/node": "^12.12.0",
"@types/vscode": "1.43.0",
"reanalyze": "^2.15.0",
"typescript": "^3.9.4"
},
"dependencies": {
"chokidar": "^3.4.2"
"chokidar": "^3.4.2",
"vscode-languageclient": "^6.1.3"
}
}