Age | Commit message (Collapse) | Author |
|
|
|
Original: https://github.com/denoland/deno_std/commit/3be908facd092e91b4ec1433effd710f5c9532b5
|
|
|
|
Original: https://github.com/denoland/deno_std/commit/ddafcc6572b6574eb0566d650e5f9ca9f049a8d6
|
|
|
|
|
|
|
|
|
|
Original: https://github.com/denoland/deno_std/commit/8569f15207bdc12c2c8ca81e9d020955be54918b
|
|
|
|
|
|
|
|
To make it clearer how people should indicate that are contributing to Deno.
|
|
This is to have access to this fix:
https://bugs.chromium.org/p/v8/issues/detail?id=8838
necessary for v8_postmortem_support.
|
|
Operating systems have defined directories for cache files.
That allows them to do smart things such as leaving them out when doing a backup,
or deleting them when disk space gets low.
Also a %home%\.deno folder on windows made no sense whatsoever.
Fixes #481
|
|
|
|
|
|
|
|
Explained here:
https://github.com/denoland/deno/issues/1559#issuecomment-462811554
Original: https://github.com/denoland/deno_std/commit/34ca60376bb1ee8ba50bf150ecf77a05a393ef4b
|
|
Original: https://github.com/denoland/deno_std/commit/19cccd2ebc5ef6c49f8fc941805a8d9bb2633796
|
|
|
|
Fixes #472
|
|
tools/format.ts is making CI flaky and it's difficult to run right now.
Reverting to tools/format.py
This reverts commit f19622e7681b7753788137706e535f72c3ebb38e.
|
|
|
|
Original: https://github.com/denoland/deno_std/commit/0a160c392521f643237cb4890ff64dac6e5e3a6b
|
|
Resolves #1705
This PR adds the Deno APIs as a global namespace named `Deno`. For backwards
compatibility, the ability to `import * from "deno"` is preserved. I have tried
to convert every test and internal code the references the module to use the
namespace instead, but because I didn't break compatibility I am not sure.
On the REPL, `deno` no longer exists, replaced only with `Deno` to align with
the regular runtime.
The runtime type library includes both the namespace and module. This means it
duplicates the whole type information. When we remove the functionality from the
runtime, it will be a one line change to the library generator to remove the
module definition from the type library.
I marked a `TODO` in a couple places where to remove the `"deno"` module, but
there are additional places I know I didn't mark.
|
|
|
|
|
|
|
|
|
|
Original: https://github.com/denoland/deno_std/commit/d895c60a51e7cdbf517fee226ffb0274904979f8
|
|
|
|
Original: https://github.com/denoland/deno_std/commit/fda9c98d055091fa886fa444ebd1adcd2ecd21bc
|
|
(denoland/deno_std#178)
Original: https://github.com/denoland/deno_std/commit/88ddd5677dec9a8281c4d86ba27b0c9047189740
|
|
|
|
|
|
Original: https://github.com/denoland/deno_std/commit/a81d2ae1f962c3e0c845e63bf06da01e4b7cfcc2
|
|
|
|
Original: https://github.com/denoland/deno_std/commit/1abdc2efc0fbe7a7b0978fed0c37acede58a9700
|
|
|
|
|
|
|
|
- Add deps to --info output (#1720)
- Add --allow-read (#1689)
- Add deno.isTTY() (#1622)
- Add emojis to permission prompts (#1684)
- Add basic WebAssembly support (#1677)
- Add `NO_COLOR` support https://no-color.org/ (#1716)
- Add color exceptions (#1698)
- Fix: do not load cache files when recompile flag is set (#1695)
- Upgrade V8 to 7.4.98 (#1640)
|
|
* makes `libdeno.shared` a `SharedArrayBuffer` instead of a regular `ArrayBuffer`.
* fixes `libdeno.shared` becoming undefined after accessing it once.
|
|
This makes it possible to use cfg_if! conveniently.
|
|
This allows rustfmt to automatically pick it up.
It's right there with similar files such as .prettierrc.
|
|
|
|
|
|
Move module stuff into its own file.
|
|
Co-authored-by: Greg Altman <g.s.altman@gmail.com>
|