Skip to content

Commit

Permalink
2.3.1 (#232)
Browse files Browse the repository at this point in the history
  • Loading branch information
lucacasonato authored Sep 24, 2020
1 parent c3af013 commit 069e761
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Releases.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Releases of the extension can be downloaded from [Visual Studio Marketplace](https://marketplace.visualstudio.com/items?itemName=denoland.vscode-deno).

### [v2.3.1](https://github.com/denoland/vscode_deno/compare/v2.3.0...v2.3.1) / 2020.09.24

- fix: enable recursive mode for mkdir of cache path (#232)

### [v2.3.0](https://github.com/denoland/vscode_deno/compare/v2.2.3...v2.3.0) / 2020.09.24

- feat: generic import intellisense (#219)
Expand Down
2 changes: 1 addition & 1 deletion core/diskcache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class DiskCache {

constructor(namespace: string, private defaultTTL: number) {
this.path = path.join(getVSCodeDenoDir(), namespace);
fsp.mkdir(this.path).catch(() => undefined);
fsp.mkdir(this.path, { recursive: true }).catch(() => undefined);
}

private hash(key: string): string {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vscode-deno",
"displayName": "Deno",
"description": "Deno support for VSCode",
"version": "2.3.0",
"version": "2.3.1",
"publisher": "denoland",
"icon": "deno.png",
"galleryBanner": {
Expand Down

0 comments on commit 069e761

Please sign in to comment.