Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-11-08 | upgrade: deno_doc, deno_lint, dprint, swc (#8292) | Bartek Iwańczuk | |
2020-11-07 | docs: fix code highlighting in typescript.md (#8277) | Nikita Sobolev | |
2020-11-06 | docs: Update style guide (#8267) | Bartek Iwańczuk | |
2020-11-06 | docs: add Deno security model conference video link (#7724) | Trivikram Kamat | |
2020-11-05 | build: rewrite tools/ scripts to deno (#8247) | Bartek Iwańczuk | |
This commit rewrites scripts in "tools/" directory to use Deno instead of Python. In return it allows to remove huge number of Python packages in "third_party/". | |||
2020-11-03 | build: migrate to dlint (#8176) | Bartek Iwańczuk | |
This commit migrates repository from using "eslint" to "dlint" for linting JavaScript code. | |||
2020-11-02 | docs: Update toc.json (#8208) | tokiedokie | |
2020-11-02 | docs: add missing backtick in subprocess docs (#8204) | tokiedokie | |
2020-10-26 | rename(std/testing): rename assert*Contains to assert*Includes (#7951) | Tim Reichen | |
This commit renames two assertion functions to better align with JS API: - assertStringContains -> assertStringIncludes - assertArrayContains -> assertArrayIncludes | |||
2020-10-26 | Revert "feat(lint): stabilize "deno lint" subcommand (#8075)" (#8128) | Bartek Iwańczuk | |
This reverts commit c5c48f845a4d25f064c4388fcdd4295317edf155. | |||
2020-10-22 | feat(lint): stabilize "deno lint" subcommand (#8075) | Bartek Iwańczuk | |
This commit stabilizes "deno lint" by removing the need to pass --unstable flag. --unstable is still required when using --json flag. | |||
2020-10-22 | docs: fix command examples use outdated default file_server port (#8062) | Max Drosdo.www | |
2020-10-21 | docs(tools/repl): add special variables section (#8057) | Casper Beyer | |
2020-10-20 | chore: Rename --importmap to --import-map (#7032) | Nayeem Rahman | |
--importmap still works as an alias to --import-map but is not visible in CLI help output. | |||
2020-10-20 | docs: Mention how to use a specific shell for Deno.run (#7966) | Josh | |
2020-10-20 | docs(cli): interfaces used as parameters should be exported (#7500) | Carter Snook | |
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | |||
2020-10-19 | docs(getting_started): fix WebAssembly example (#8028) | Casper Beyer | |
2020-10-19 | docs(tools): add repl section (#8011) | Casper Beyer | |
This adds a section on the repl with the keybindings that we support out of the box. | |||
2020-10-13 | docs: fix links to examples (#7919) | sakas | |
2020-10-09 | docs: add Deno internals talk from Paris Deno (#7889) | Trivikram Kamat | |
2020-10-07 | docs: fix deno.land/manual example and clarify linting of code (#7842) | Steven Guerrero | |
Fixes #7841 | |||
2020-10-06 | chore: update contributing.md and PR template (#7820) | Bartek Iwańczuk | |
2020-10-04 | docs: end sentences with a period in markdown (#7813) | Trivikram Kamat | |
2020-10-04 | docs: update location of unit tests folder (#7814) | Trivikram Kamat | |
2020-09-28 | docs: end sentences with a period in docs (#7730) | Trivikram Kamat | |
2020-09-28 | docs: use const assertion for PermissionDescriptor (#7733) | Trivikram Kamat | |
Fixes #7731 | |||
2020-09-28 | docs: update deno bundle output to single line (#7734) | Trivikram Kamat | |
2020-09-27 | fix: Use $deno$test.ts instead of .deno.test.ts (#7717) | Nayeem Rahman | |
2020-09-27 | doc: use APA citation style for listing conference talks (#7721) | Trivikram Kamat | |
2020-09-27 | doc: end sentences with a period in examples (#7722) | Trivikram Kamat | |
2020-09-27 | feat(fmt): Sort named import and export specifiers (#7711) | David Sherret | |
2020-09-27 | docs: update GitHub doc links to use $CLI_VERSION (#7710) | Trivikram Kamat | |
2020-09-27 | docs: use $STD_VERSION in std lib import comment (#7707) | Trivikram Kamat | |
2020-09-27 | docs: update --unstable flag forget message (#7708) | Trivikram Kamat | |
2020-09-27 | docs(cli): Update web assembly example and accepted compiler options in ↵ | Search | |
docs. (#7678) Fixes #7556 Fixes #7634 | |||
2020-09-22 | docs: V8 is a JavaScript engine, not a runtime (#7619) | tokiedokie | |
2020-09-22 | docs: minor documentation improvement (#7603) | michael spengler | |
Closes #7602 | |||
2020-09-21 | docs: titles in examples should be sentence case (#7609) | Rob Waller | |
2020-09-17 | chore: remove readJson/writeJson from manual (#7541) | Luca Casonato | |
2020-09-16 | docs: fix typo assertAsyncThrows -> assertThrowsAsync (#7506) | Sidd Sridharan | |
2020-09-15 | docs(lint): ignore diagnostic in whole file (#7489) | Bartek Iwańczuk | |
2020-09-14 | docs(std/testing) add a description of assertNotMatch(). (#7470) | Piyotaro, Kiiroi (きいろい ぴよ太郎) | |
2020-09-14 | docs(testing): describe coverage blackboxing rules (#7483) | Casper Beyer | |
2020-09-13 | docs: manual updates for 1.4 features and changes (#7440) | Luca Casonato | |
2020-09-12 | doc: improve Examples (#7428) | Chris Knight | |
2020-09-11 | docs: move “Debugger” to “Debugging your code” in “Getting ↵ | tokiedokie | |
started” (#7421) | |||
2020-09-10 | docs: add a Powershell autocomplete example (#7329) | Danilo Sampaio | |
2020-09-09 | feat(fmt, lint): show number of checked files (#7312) | Yusuke Tanaka | |
2020-09-07 | feat(info): Dependency count and sizes (#6786) | KrisChambers | |
This commit changes "deno info" subcommand logic. - Modules are no longer loaded into V8 isolate - analysis is done using ModuleGraph. - Removed deno_core::Deps structure. - Modules are no longer type-checked and transpiled - "compiled" file is shown only if it is already available. - Added number of unique dependencies for root module. - Changed tree output: - file size is shown next to the dependency - repeated dependencies are marked with "*" - used less spaces in prefix to save terminal width | |||
2020-09-05 | Fix hellish mistake in manual (#7363) | crowlKats | |