summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2021-05-15docs(lint): update available rules (#10638)Yusuke Tanaka
2021-05-15docs(runtime): add WebStorage API (#10593)crowlKats
2021-05-11docs: fix issue in manual regarding how to reference types in JavaScript ↵Kitson Kelly
(#10573) Fixes: #10561
2021-05-10feat: support workspace folders configuration (#10488)Kitson Kelly
Ref #8643
2021-05-06docs(runtime): fix HTTP server example (#10497)vwkd
2021-05-05docs(examples): improve cat example (#10498)vwkd
2021-05-02docs: remove wasm and wasi as prerequisites (#10465)Casper Beyer
ref: #7512
2021-05-01fix(core): fix typo in error message of print function (#10456)Aditya Pandit
2021-04-29docs: update configuration to include noUncheckedIndexedAccess (#10324)Zeshan Aslam
Fixes: #10305 Co-authored-by: Kitson Kelly <me@kitsonkelly.com>
2021-04-28docs: edit wording for consistency/grammar (#10375)dev-nicolaos
2021-04-27remove --unstable flag from CLI features (#10190)Bartek Iwańczuk
2021-04-27docs: remove --lite command line flag (#10386)Ryan Dahl
2021-04-26refactor(cli): rename Deno.emit() bundle options to "module" and "classic" ↵Nayeem Rahman
(#10332)
2021-04-22docs: document Deno's HTTP Server API (#10280)Kitson Kelly
Co-authored-by: Satya Rohith <me@satyarohith.com>
2021-04-21docs: Deno.emit supports bundling as IIFE (#10242)Zeno Zeng
Co-authored-by: Luca Casonato <lucacasonato@yahoo.com>
2021-04-21docs(manual/wasm): add more example code. (#10250)grian
2021-04-21docs: mention docker support (#9618)Christopher Dieringer
2021-04-20docs: Incorrect tsconfig option name (#10140)caucik
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com>
2021-04-09docs: fix typo in fetch example (#10057)Tobias Nießen
2021-04-07docs: list globs used by `deno test` (#9976)yw662
2021-04-06docs(workers): fix permissions examples (#9965)Mason Medeiros
2021-04-05docs: add documentation about Atom Editor LSP client (#10016)ayame113
Co-authored-by: ayame113 <ayame113@users.noreply.github.com>
2021-04-04docs: update Deno.metrics() table data (#9999)Divy Srivastava
2021-04-04docs: update kakoune LSP example configuration (#9989)louix
Fixes #9988
2021-04-01docs: copyedit introduction for clarity (#9805)Peter Shank
Co-authored-by: Kitson Kelly <me@kitsonkelly.com>
2021-04-01Fix typo in faqs.md (#9948)John Spurlock
Co-authored-by: Kitson Kelly <me@kitsonkelly.com>
2021-04-01docs: add the Nix pkg manager to Installation options (#9921)Attila Gulyas
2021-04-01docs: fix typo (#9946)Chandan Kumar
2021-03-30docs: clarify jetbrains setup (#9930)crowlKats
Co-authored-by: Kitson Kelly <me@kitsonkelly.com>
2021-03-26docs: Add help community section (#9882)Yasser A.Idrissi
2021-03-26docs(profiling): Actualization & add flamegraph info (#9594)Inteon
2021-03-23Update setup_your_environment.md (#9876)IWANABETHATGUY
unlike other system config file, in windows `$profile` file is a common config file of powershell , just use `>` will override the user config file , which is terrible. This change use append instead of override which is more reasonable
2021-03-22docs(import_maps): Fix example for project-relative absolute specifiers (#9856)Nayeem Rahman
2021-03-22typoIkko Ashimine
2021-03-19TypoTyler Butler
2021-03-16fix(doc): update example for sub processes (#9798)Makuza Mugabo Verite
2021-03-15docs(testing): Add custom test example (#9791)Yasser A.Idrissi
2021-03-15docs: match install section with website (#9665)Kid
Co-authored-by: Luca Casonato <lucacasonato@yahoo.com>
2021-03-10fix(fmt): Correctly format hard breaks in markdown (#9742)David Sherret
2021-03-06chore: remove unstable from permission (#9701)crowlKats
2021-03-05chore: Update release schedule (#9697)Ryan Dahl
2021-03-05chore: update zipped exec size (#9678)crowlKats
2021-03-02docs(testing): add assertExists example (#9613)Yasser A.Idrissi
2021-03-02docs(testing): add assertObjectMatch example (#9645)Yasser A.Idrissi
2021-03-01feat(cli): represent type dependencies in info (#9630)Kitson Kelly
Fixes #7927
2021-03-01feat: stabilise import maps (#9526)Bartek Iwańczuk
This commit stabilises import maps by removing requirement on "--unstable" flag when "--import-map" flag is used.
2021-02-24feat: add "deno coverage" subcommand (#8664)Casper Beyer
This commit adds a new subcommand called "coverage" which can generate code coverage reports to stdout in multiple formats from code coverage profiles collected to disk. Currently this supports outputting a pretty printed diff and the lcov format for interoperability with third-party services and tools. Code coverage is still collected via other subcommands that run and collect code coverage such as "deno test --coverage=<directory>" but that command no longer prints a pretty printed report at the end of a test run with coverage collection enabled. The restrictions on which files that can be reported on has also been relaxed and are fully controllable with the include and exclude regular expression flags on the coverage subcommand. Co-authored-by: Luca Casonato <lucacasonato@yahoo.com>
2021-02-24feat: add exit sanitizer to Deno.test (#9529)Casper Beyer
This adds an exit sanitizer to ensure that code being tested or dependencies of that code can't accidentally call "Deno.exit" leading to partial test runs and false results.
2021-02-22docs: update getting started for coc (#9571)Heyward Fann
2021-02-19chore: rename default branch to main (#9503)Luca Casonato