-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Bump base VSCode version for Quick Edit & Playground to 1.102.1
#10047
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
Changes from all commits
1a79960
b74a6e8
63f0940
ce19cd9
148697b
399cdf3
020f042
d9e3b8c
55d04df
b7f7752
5c0972d
f6a61d4
9313381
cdeb394
b71a1f6
faaed4e
c441fa0
45df43c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| --- | ||
| "@cloudflare/quick-edit": minor | ||
| --- | ||
|
|
||
| Bump base VSCode version for Quick Edit & Playground to 1.102.1 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -194,16 +194,20 @@ declare module "*.bin" { | |
| } | ||
| } | ||
| } | ||
| await this.writeFile(Uri.parse(`${this.rootFolder}/${path}`), contents, { | ||
| create: true, | ||
| overwrite: true, | ||
| suppressChannelUpdate: true, | ||
| readOnly: files.readOnly, | ||
| }); | ||
| await this.writeFile( | ||
| Uri.parse(`cfs:/${this.rootFolder}/${path}`), | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This was previously missing the |
||
| contents, | ||
| { | ||
| create: true, | ||
| overwrite: true, | ||
| suppressChannelUpdate: true, | ||
| readOnly: files.readOnly, | ||
| } | ||
| ); | ||
| } | ||
| if (this.readRoot !== null) { | ||
| await this.readRoot( | ||
| await this.readDirectory(Uri.parse(`${this.rootFolder}/`)) | ||
| await this.readDirectory(Uri.parse(`cfs:/${this.rootFolder}/`)) | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As above |
||
| ); | ||
| } | ||
| } | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is required by VSCode's build process