0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
Commit graph

127 commits

Author SHA1 Message Date
Danilo Sampaio
dfd8794da4
docs: add a Powershell autocomplete example (#7329) 2020-09-10 10:13:30 +02:00
Yusuke Tanaka
857f9b32e0
feat(fmt, lint): show number of checked files (#7312) 2020-09-09 16:45:31 +02:00
KrisChambers
1cd2267500
feat(info): Dependency count and sizes (#6786)
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-07 15:59:47 +02:00
crowlKats
849431eb1d
Fix hellish mistake in manual (#7363) 2020-09-05 16:34:20 -04:00
reuixiy
5b100cb874
docs: use the rightwards arrow symbol uniformly (#7331) 2020-09-03 15:14:28 +02:00
YellowBird
5db200b6ab
fix(docs): replace "eslint-ignore-" with "eslint-disable-" (#7319) 2020-09-02 12:03:35 +02:00
Yusuke Tanaka
fa65e49bc6
feat(lint): Add support for reading input from stdin (#7263) 2020-08-31 13:53:42 +02:00
Matt Barnett-Jones
58c83b671b
Typo in zsh env setup steps (#7250) 2020-08-29 10:15:23 -04:00
Yusuke Tanaka
0d11f3504b
fix(lint): use recommended rules set (#7222) 2020-08-29 12:58:20 +02:00
Nayeem Rahman
3d23208019
fix(deno install): Strip "@..." suffixes from inferred names (#7223) 2020-08-27 16:55:58 -04:00
Benjamin Lupton
7583fd0979
docs(build): details on updating rust (#7133) 2020-08-27 10:59:36 +02:00
Rob Waller
765235341b
docs: add fetch and read/write examples (#7186) 2020-08-26 18:45:03 +02:00
Danny Denenberg
2df4a29f49
Typo (#7177) 2020-08-24 12:36:56 -04:00
tokiedokie
679a190fcd
add links in the manual (#7120) 2020-08-20 11:57:15 -04:00
Nayeem Rahman
015fa0bd41
refactor: permissions (#7074) 2020-08-18 16:29:32 -04:00
Yasser A.Idrissi
7f85bb3763
docs(contributing/artchitecture): Add Deno conference youtube link (#6859) 2020-08-18 13:36:12 -04:00
tokiedokie
7766500bf5
remove Table of Contents in docs/contributing/style_guide.md (#7067) 2020-08-18 00:32:52 -04:00
tokiedokie
68e1ba07d3
typos (#7082) 2020-08-17 12:17:57 -04:00
tokiedokie
42ff8ede4c
typo (#7052) 2020-08-15 09:47:14 -04:00
tokiedokie
496c9d73a1
improve docs (#7053) 2020-08-15 09:46:36 -04:00
tokiedokie
b9adfe53d3
typo (#7029) 2020-08-14 13:49:22 -04:00
Connor Peet
fbee85b1ae
docs: update VS Code debugging options for 1.47 (#6767) 2020-08-14 13:22:46 -04:00
Nayeem Rahman
81ce4499e7
fix: Make std work with isolatedModules (#7016) 2020-08-12 12:01:36 +02:00
Prabhanjan
fdb2dab7cd
docs: instructions for loading zsh completions (#6998) 2020-08-09 23:50:29 -04:00
Rob Waller
d7dcbab3ef
docs: Improve examples (#6958) 2020-08-06 11:35:08 -04:00
josephrocca
2cd1fe8edf
Fixed benchmarks url (#6952) 2020-08-04 07:46:07 -04:00
Arseny Kruglikov
bda9f61972
docs: fix some grammar mistakes in permissions.md (#6949) 2020-08-03 22:57:57 -04:00
Chayim Refael Friedman
e9d713c007
typo (#6937) 2020-08-03 10:53:18 -04:00
Ben Stolovitz
39693094f1
Fix grammatical error in Linter documentation (#6939) 2020-08-03 10:52:53 -04:00
Luca Casonato
4afb4b6e46
feat: add $STD_VERSION replacement variable in docs (#6922) 2020-07-31 11:12:20 +02:00
Jordan Cannon
3b7fdd6734
Fix typo (#6872) 2020-07-26 10:41:24 -04:00
Ryan Dahl
ca4dcb36dd
Rename cli/js2 to cli/rt (#6857) 2020-07-23 16:27:26 +02:00
takutoaoi
090455936c
docs: Fix broken links (#6853) 2020-07-23 10:05:36 -04:00
Jason Miller
c587450cd4
typo (#6800) 2020-07-19 12:10:55 -04:00
David Sherret
cde4dbb351
Use dprint for internal formatting (#6682) 2020-07-14 15:24:17 -04:00
Luca Casonato
ac000341db
--no-check docs (#6714) 2020-07-13 00:51:39 -04:00
Ryan Dahl
862bc2ecae
docs: Improve v8-flags docs (#6684) 2020-07-08 11:13:22 +02:00
Sebastien Filion
e8571742eb
docs: Update testing.md (#6680) 2020-07-07 15:58:10 +02:00
Sebastien Filion
4534db656d
feat(test): Add support for regex in filter flag (#6343)
Currently, the documentation makes it sound like the test subcommand's filter
flag could accept some kind of pattern matching value like a glob or a regex,
although the function "createFilterFn" accepts a regex as an argument, there's
no way to pass an actual regex value from the CLI.

This commit makes it possible to pass a string that could be cast as regex 
when string matches "^/.*/$".

With this change, a user can use the filter flag as follow:

deno test --filter "/test-.+/"

Also tested that `\` get escaped properly, on MacOS at least, and this is 
also a valid flag:

deno test --filter "/test-\d+/"
2020-07-07 15:13:38 +02:00
uki00a
74cd91ee56
typo (#6598) 2020-07-02 09:16:07 -04:00
Stanislav
55c234af97
docs: update discord link (#6599) 2020-07-02 09:15:36 -04:00
Haoran Liu
1c12098e4a
docs: update macOS dependencies of building V8 from source (#6538) 2020-06-28 10:19:58 -04:00
Vincent Victoria
6be3487f73
docs: Update import_maps.md to include more examples (#5648) 2020-06-27 13:52:07 +02:00
champ
1fcb71b355
fix typo (#6476) 2020-06-25 12:35:34 -04:00
Chris Knight
c98038a032
doc: add info on installing wasm32-wasi target (#6470) 2020-06-25 06:38:27 -04:00
Colin Harrington
f4397e5ec9
Update contributing.md for consistency (#6452) 2020-06-24 15:14:28 +02:00
Casper Beyer
d2403caa3b
doc: WASM -> WebAssembly (#6426) 2020-06-22 11:27:25 -04:00
Ryan Dahl
3c58767831
Remove logos from introduction -> deno.land/artwork (#6399) 2020-06-20 17:53:55 +02:00
Chris Knight
78a311aa5f
docs: Update standard library and testing manual pages (#6323) 2020-06-18 06:13:56 -04:00
Rob Waller
02ef670deb
Feature testing assertions documentation (#6332) 2020-06-18 05:27:09 -04:00