summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2020-10-26rename(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-26Revert "feat(lint): stabilize "deno lint" subcommand (#8075)" (#8128)Bartek Iwańczuk
This reverts commit c5c48f845a4d25f064c4388fcdd4295317edf155.
2020-10-22feat(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-22docs: fix command examples use outdated default file_server port (#8062)Max Drosdo.www
2020-10-21docs(tools/repl): add special variables section (#8057)Casper Beyer
2020-10-20chore: 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-20docs: Mention how to use a specific shell for Deno.run (#7966)Josh
2020-10-20docs(cli): interfaces used as parameters should be exported (#7500)Carter Snook
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
2020-10-19docs(getting_started): fix WebAssembly example (#8028)Casper Beyer
2020-10-19docs(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-13docs: fix links to examples (#7919)sakas
2020-10-09docs: add Deno internals talk from Paris Deno (#7889)Trivikram Kamat
2020-10-07docs: fix deno.land/manual example and clarify linting of code (#7842)Steven Guerrero
Fixes #7841
2020-10-06chore: update contributing.md and PR template (#7820)Bartek Iwańczuk
2020-10-04docs: end sentences with a period in markdown (#7813)Trivikram Kamat
2020-10-04docs: update location of unit tests folder (#7814)Trivikram Kamat
2020-09-28docs: end sentences with a period in docs (#7730)Trivikram Kamat
2020-09-28docs: use const assertion for PermissionDescriptor (#7733)Trivikram Kamat
Fixes #7731
2020-09-28docs: update deno bundle output to single line (#7734)Trivikram Kamat
2020-09-27fix: Use $deno$test.ts instead of .deno.test.ts (#7717)Nayeem Rahman
2020-09-27doc: use APA citation style for listing conference talks (#7721)Trivikram Kamat
2020-09-27doc: end sentences with a period in examples (#7722)Trivikram Kamat
2020-09-27feat(fmt): Sort named import and export specifiers (#7711)David Sherret
2020-09-27docs: update GitHub doc links to use $CLI_VERSION (#7710)Trivikram Kamat
2020-09-27docs: use $STD_VERSION in std lib import comment (#7707)Trivikram Kamat
2020-09-27docs: update --unstable flag forget message (#7708)Trivikram Kamat
2020-09-27docs(cli): Update web assembly example and accepted compiler options in ↵Search
docs. (#7678) Fixes #7556 Fixes #7634
2020-09-22docs: V8 is a JavaScript engine, not a runtime (#7619)tokiedokie
2020-09-22docs: minor documentation improvement (#7603)michael spengler
Closes #7602
2020-09-21docs: titles in examples should be sentence case (#7609)Rob Waller
2020-09-17chore: remove readJson/writeJson from manual (#7541)Luca Casonato
2020-09-16docs: fix typo assertAsyncThrows -> assertThrowsAsync (#7506)Sidd Sridharan
2020-09-15docs(lint): ignore diagnostic in whole file (#7489)Bartek Iwańczuk
2020-09-14docs(std/testing) add a description of assertNotMatch(). (#7470)Piyotaro, Kiiroi (きいろい ぴよ太郎)
2020-09-14docs(testing): describe coverage blackboxing rules (#7483)Casper Beyer
2020-09-13docs: manual updates for 1.4 features and changes (#7440)Luca Casonato
2020-09-12doc: improve Examples (#7428)Chris Knight
2020-09-11docs: move “Debugger” to “Debugging your code” in “Getting ↵tokiedokie
started” (#7421)
2020-09-10docs: add a Powershell autocomplete example (#7329)Danilo Sampaio
2020-09-09feat(fmt, lint): show number of checked files (#7312)Yusuke Tanaka
2020-09-07feat(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-05Fix hellish mistake in manual (#7363)crowlKats
2020-09-03docs: use the rightwards arrow symbol uniformly (#7331)reuixiy
2020-09-02fix(docs): replace "eslint-ignore-" with "eslint-disable-" (#7319)YellowBird
2020-08-31feat(lint): Add support for reading input from stdin (#7263)Yusuke Tanaka
2020-08-29Typo in zsh env setup steps (#7250)Matt Barnett-Jones
2020-08-29fix(lint): use recommended rules set (#7222)Yusuke Tanaka
2020-08-27fix(deno install): Strip "@..." suffixes from inferred names (#7223)Nayeem Rahman
2020-08-27docs(build): details on updating rust (#7133)Benjamin Lupton
2020-08-26docs: add fetch and read/write examples (#7186)Rob Waller