Skip to content

Commit fb6f015

Browse files
committed
Disable minimize in webpack
1 parent 4205858 commit fb6f015

File tree

7 files changed

+718
-1274
lines changed

7 files changed

+718
-1274
lines changed

CHANGELOG.md

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,47 @@
11
# Changelog
22

3+
## [0.3.2] - 2020-10-04
4+
5+
- Fix automatic server update
6+
37
## [0.3.1] - 2020-04-05
4-
- Fix client crashing when open file without workspace
8+
9+
- Fix client crashing when opening file without workspace
510

611
## [0.3.0] - 2020-01-26
12+
713
- Added automatic updates of language server
814
- Added `entarch` snipped for Entity + Architecture
915

1016
## [0.2.0] - 2019-12-30
17+
1118
- Embedded `vhdl_ls` updated to version 0.12.0.
1219
- Standard and IEEE packages are now integrated by the `vhdl_ls` language server.
1320
**NOTE**: These libraries should be removed from any global `vhdl_ls.toml` files.
1421

1522
## [0.1.0] - 2019-12-21
23+
1624
- Standard and IEEE packages are now installed to extension global directory.
1725
- Updated language server
1826
- Goto defintion.
1927
- Find references.
20-
- `vhdl_ls.toml` now redifines library files instead of appending them.
28+
- `vhdl_ls.toml` now redifines library files instead of appending them.
2129

2230
## [0.0.4] - 2019-12-05
31+
2332
- Added standard and IEEE libraries.
2433
- If no `.vhdl_ls.toml` is found in HOME, a standard configuration with std and IEEE is created.
2534

2635
## [0.0.3] - 2019-12-03
36+
2737
- VHDL files are now opened with `ISO 8859-1` encoding.
2838

2939
## [0.0.2] - 2019-12-03
40+
3041
- Added `vhdlls.restart` command to restart the language server.
3142

3243
## [0.0.1] - 2019-12-02
44+
3345
Embedded Language Server version: [4206fee8c4322542b386299c557fbd7d610a5cb6](https://github.com/kraigher/rust_hdl)
3446

3547
First release.

CONTRIBUTING.md

Lines changed: 15 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,28 @@
1-
# Project setup
1+
# Contributing
2+
3+
## Project setup
4+
25
1. Install `npm`
36
2. Install `vsce` via `npm install -g vsce`
47
3. Run `npm install` at the project root to install dependencies.
5-
4. Compile the language server according to https://github.com/kraigher/rust_hdl.
8+
4. Compile the language server according to [Rust HDL](https://github.com/kraigher/rust_hdl).
9+
610
To debug the language server with `"vhdlls.languageServer = embedded"` the `vhdl_ls` binary must be placed in the ./server directory of the extension project.
711

8-
# Client
12+
## Client
13+
914
The source for the client is located at ./client/src/extension.ts.
1015
Snippets are defined in ./snippets
1116
Syntaxes are defined in ./syntaxes
1217

13-
# Debugging
18+
## Debugging
19+
1420
Press `F5` to start debugging.
1521

16-
# Packaging a VSIX
17-
A VSIX file is a local package of the extension which can be installed into VSCode. To generate a `VSIX` package, run `vsce package` at the project root. The VSIX `vhdl-ls-*.vsix` is generated at the project root.
22+
## Packaging a VSIX
23+
24+
A VSIX file is a local package of the extension which can be installed into VSCode. To generate a `VSIX` package, run `vsce package` at the project root. The VSIX `vhdl-ls-<version>.vsix` is generated at the project root.
1825
The VSIX can be installed by:
19-
- Command line: `code --install-extension vhdl-ls-*.vsix`
20-
- Via GUI: https://code.visualstudio.com/docs/editor/extension-gallery#_install-from-a-vsix
2126

27+
- Command line: `code --install-extension vhdl-ls-<version>.vsix`
28+
- [Via GUI](https://code.visualstudio.com/docs/editor/extension-gallery#_install-from-a-vsix)

client/package-lock.json

Lines changed: 47 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

client/package.json

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,27 @@
11
{
2-
"name": "vhdl-ls-client",
3-
"description": "VHDL LS Client",
4-
"author": "Henrik Bohlin",
5-
"license": "SEE LICENSE IN LICENCE",
6-
"version": "0.3.0",
7-
"repository": {
8-
"type": "git",
9-
"url": "https://github.com/Bochlin/rust_hdl_vscode"
10-
},
11-
"engines": {
12-
"vscode": "^1.44.1"
13-
},
14-
"dependencies": {
15-
"vscode-languageclient": "^6.1.3",
16-
"@octokit/rest": "16.36.0",
17-
"@types/node-fetch": "2.5.4",
18-
"extract-zip": "1.6.2",
19-
"@types/semver": "6.2.0",
20-
"proper-lockfile": "4.1.1",
21-
"fs-extra": "8.1.0",
22-
"abort-controller": "3.0.0"
23-
},
24-
"devDependencies": {
25-
"@types/vscode": "^1.44.1"
26-
}
2+
"name": "vhdl-ls-client",
3+
"description": "VHDL LS Client",
4+
"author": "Henrik Bohlin",
5+
"license": "SEE LICENSE IN LICENCE",
6+
"version": "0.3.2",
7+
"repository": {
8+
"type": "git",
9+
"url": "https://github.com/Bochlin/rust_hdl_vscode"
10+
},
11+
"engines": {
12+
"vscode": "^1.44.1"
13+
},
14+
"dependencies": {
15+
"vscode-languageclient": "^6.1.3",
16+
"@octokit/rest": "16.36.0",
17+
"@types/node-fetch": "2.5.7",
18+
"extract-zip": "1.6.2",
19+
"@types/semver": "6.2.0",
20+
"proper-lockfile": "4.1.1",
21+
"fs-extra": "8.1.0",
22+
"abort-controller": "3.0.0"
23+
},
24+
"devDependencies": {
25+
"@types/vscode": "^1.44.1"
26+
}
2727
}

0 commit comments

Comments
 (0)