Skip to content

Commit a8e7e4c

Browse files
committed
browser/virtual fs
1 parent c75c9d3 commit a8e7e4c

File tree

3 files changed

+16
-10
lines changed

3 files changed

+16
-10
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,11 @@ All notable changes to the "prettier-vscode" extension will be documented in thi
44

55
<!-- Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. -->
66

7+
## [9.0.0]
8+
9+
- Support for browser VS Code
10+
- Support for virtual file systems
11+
712
## [8.2.0]
813

914
- Updated Prettier to 2.4.1

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "prettier-vscode",
33
"displayName": "Prettier - Code formatter",
44
"description": "Code formatter using prettier",
5-
"version": "8.2.0",
5+
"version": "9.0.0",
66
"publisher": "esbenp",
77
"author": "Prettier <@prettiercode>",
88
"galleryBanner": {
@@ -99,7 +99,7 @@
9999
"@typescript-eslint/eslint-plugin": "^4.31.1",
100100
"@typescript-eslint/parser": "^4.31.1",
101101
"@vscode/test-electron": "^1.6.2",
102-
"@vscode/test-web": "^0.0.11",
102+
"@vscode/test-web": "^0.0.12",
103103
"eslint": "^7.32.0",
104104
"eslint-config-prettier": "^8.1.0",
105105
"fs-extra": "^10.0.0",
@@ -127,6 +127,7 @@
127127
"vscode-nls": "^5.0.0"
128128
},
129129
"capabilities": {
130+
"virtualWorkspaces": true,
130131
"untrustedWorkspaces": {
131132
"supported": "limited",
132133
"description": "%ext.capabilities.untrustedWorkspaces.description%",

yarn.lock

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-1.2.0.tgz#87de7af9c231826fdd68ac7258f77c429e0e5fcf"
6565
integrity sha512-wdppn25U8z/2yiaT6YGquE6X8sSv7hNMWSXYSSU1jGv/yd6XqjXgTDJ8KP4NgjTXfJ3GbRjeeb8RTV7a/VpM+w==
6666

67-
"@koa/router@^10.0.0":
67+
"@koa/router@^10.1.1":
6868
version "10.1.1"
6969
resolved "https://registry.yarnpkg.com/@koa/router/-/router-10.1.1.tgz#8e5a85c9b243e0bc776802c0de564561e57a5f78"
7070
integrity sha512-ORNjq5z4EmQPriKbR0ER3k4Gh7YGNhWDL7JBW+8wXDrHLbWYKYSJaOJ9aN06npF5tbTxe2JBOsurpJDAvjiXKw==
@@ -323,12 +323,12 @@
323323
rimraf "^3.0.2"
324324
unzipper "^0.10.11"
325325

326-
"@vscode/test-web@^0.0.11":
327-
version "0.0.11"
328-
resolved "https://registry.yarnpkg.com/@vscode/test-web/-/test-web-0.0.11.tgz#62e05bd9115d5f4ddfc45d32842c49de327b57f8"
329-
integrity sha512-us0DtOqzqBZwE6UfBvFwEWcOPg2cX20nJsD8ZkeJ6ozn2KyJ8pewtt5D8ybtAsVKtds/nQ/wegq/SdMmjTBaWQ==
326+
"@vscode/test-web@^0.0.12":
327+
version "0.0.12"
328+
resolved "https://registry.yarnpkg.com/@vscode/test-web/-/test-web-0.0.12.tgz#0d2eda3c2740bf4c59997e7e8658f0794af2f042"
329+
integrity sha512-PtmyN0SUI3iQbPgcTAQ23IFCrbSvdahY0I2KL5TlBplY3vpFOc3To497GXYuVNYG6YIA7KKDPAADLB/HIXPOPA==
330330
dependencies:
331-
"@koa/router" "^10.0.0"
331+
"@koa/router" "^10.1.1"
332332
decompress "^4.2.1"
333333
decompress-targz "^4.1.1"
334334
http-proxy-agent "^4.0.1"
@@ -338,7 +338,7 @@
338338
koa-mount "^4.0.0"
339339
koa-static "^5.0.0"
340340
minimist "^1.2.5"
341-
playwright "^1.12.2"
341+
playwright "^1.14.1"
342342
vscode-uri "^3.0.2"
343343

344344
"@webassemblyjs/[email protected]":
@@ -3064,7 +3064,7 @@ pkg-dir@^4.2.0:
30643064
dependencies:
30653065
find-up "^4.0.0"
30663066

3067-
playwright@^1.12.2:
3067+
playwright@^1.14.1:
30683068
version "1.14.1"
30693069
resolved "https://registry.yarnpkg.com/playwright/-/playwright-1.14.1.tgz#73913d3044a85a58edf13148245279231072532e"
30703070
integrity sha512-JYNjhwWcfsBkg0FMGLbFO9e58FVdmICE4k97/glIQV7cBULL7oxNjRQC7Ffe+Y70XVNnP0HSJLaA0W5SukyftQ==

0 commit comments

Comments
 (0)