Age | Commit message (Collapse) | Author |
|
This commit adds support for process.on("exit") by appending a listener to
the unload event. Luckily, unload works pretty much the same as on("exit")
since it won't schedule any additional work in the even loop either.
This commit also solves an error in the Node implementation, since "process.argv"
didn't contained the main module route as it was supposed to.
|
|
This reverts commit 66e99d349b31f5cd30b868d80ebdab6ba749fd96.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Co-authored-by: Ryan Dahl <ry@tinyclouds.org>
|
|
|
|
Fixes #9206
|
|
|
|
|
|
This commit fixes coverage collection by ignoring
comments when tallying up line counts.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Fixes #9054
|
|
|
|
|
|
This commit adds support for formatting markdown files with "deno fmt".
Additionally "--ext={js|jsx|ts|tsx|md}" flag was added to "deno fmt"
that allows to specify file type when providing contents over stdio.
|
|
|
|
|
|
|
|
|
|
Fixes #9096.
|
|
This commit adds --target and --lite flags to deno compile subcommand.
--target allows to cross-compile binary to different target architectures by
fetching appropriate binary from remote server on first run. All downloaded
binaries are stored in "$DENO_DIR/dl".
--lite allows to use lite version of the runtime (ie. the one that doesn't contain
built-in tooling like formatter or linter).
|
|
|
|
|
|
(#9143)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|