Age | Commit message (Collapse) | Author |
|
|
|
This reverts commit 382a978859a7a7a4351542be818bb2e59523429c.
|
|
Fixes #13526
|
|
|
|
|
|
|
|
files (#13530)
|
|
|
|
|
|
|
|
This commit makes the errors produced from the resource sanitizer much
more human readable. It does this by using real words rather than our
"resource names" when referring to resources, and by giving helpful
hints on how to clean up each of the resources.
|
|
|
|
|
|
sources on each publish (#13483)
|
|
|
|
|
|
|
|
|
|
|
|
Fixes #13437
|
|
|
|
|
|
|
|
|
|
|
|
start of paragraph (#13429)
|
|
|
|
Fixes: #13383
Fixes: denoland/vscode_deno#609
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
This commit fixes an error when user deletes "window" global JS
variable. Instead of relying on "window" or "globalThis" to dispatch
"load" and "unload" events, we are default to global scope of the
worker.
|
|
|
|
|
|
|
|
V8 has supported `Intl.ListFormat` since version 7.2, but TypeScript doesn't
have typings for it yet. This PR manually adds those typings, copying them from
microsoft/TypeScript#47254.
|
|
Deno's module loader currently strips a shebang if a module file
starts with one. However, this is no longer necessary, since there is
a stage-3 TC39 that adds support for shebangs (or "hashbangs") to the
language (https://github.com/tc39/proposal-hashbang), and V8, `tsc`
and `swc` all support it.
Furthermore, stripping shebangs causes a correctness bug with JSON
modules, since a JSON file with a shebang should not parse as a JSON
module, yet it does with this stripping. This change fixes this.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|