Skip to content

Commit

Permalink
3.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsonk committed Sep 14, 2021
1 parent ceab262 commit 4ef5c50
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 11 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@
Releases of the extension can be downloaded from
[Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=denoland.vscode-deno).

### [3.9.0](https://github.com/denoland/vscode_deno/compare/3.8.1...3.9.0) / 2021.09.15

- feat: support deno.json(c) files (#521)

As of 1.14 Deno supports an expanded set of configuration options in the
configuration file above the supported TypeScript `"compilerOptions"` options.

The extension supports validating these configuration files, as well as
recommends naming them `deno.json` or `deno.jsonc`.

- fix: debug config provider (#513)
- fix: better suppression of built in diagnostics (#514)
- chore: bundle extension (#506)

This decreases download/install size of the extension as well as speeds up
load time of the extension.

- chore: fix packaging of extension (#507)
- chore: update vscode typings (#519)

### [3.8.1](https://github.com/denoland/vscode_deno/compare/3.8.0...3.8.1) / 2021.08.25

- fix: properly parse config for test code lens (#502)
Expand Down
4 changes: 2 additions & 2 deletions client/package-lock.json

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

2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"author": "Deno Land Inc.",
"license": "MIT",
"private": true,
"version": "3.8.1",
"version": "3.9.0",
"publisher": "deno-land",
"repository": {
"type": "git",
Expand Down
6 changes: 3 additions & 3 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "A language server client for Deno.",
"author": "Deno Land Inc.",
"license": "MIT",
"version": "3.8.1",
"version": "3.9.0",
"icon": "deno.png",
"galleryBanner": {
"color": "#3B3738",
Expand Down Expand Up @@ -434,7 +434,7 @@
]
},
"scripts": {
"vscode:prepublish": "npm i && npm run esbuild-plugin && npm run esbuild-base",
"vscode:prepublish": "npm i && npm run esbuild-plugin && npm i && npm run esbuild-base",
"esbuild-base": "esbuild ./client/src/extension.ts --bundle --outfile=client/dist/main.js --external:vscode --format=cjs --platform=node",
"esbuild-plugin": "esbuild ./typescript-deno-plugin/src/index.ts --bundle --outfile=typescript-deno-plugin/dist/index.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-plugin -- --sourcemap && npm run esbuild-base -- --sourcemap",
Expand Down
4 changes: 2 additions & 2 deletions typescript-deno-plugin/package-lock.json

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

2 changes: 1 addition & 1 deletion typescript-deno-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"author": "Deno Land Inc.",
"license": "MIT",
"private": true,
"version": "3.8.1",
"version": "3.9.0",
"publisher": "deno-land",
"main": "./dist/index",
"files": [
Expand Down

0 comments on commit 4ef5c50

Please sign in to comment.