Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-01-15 | Revert "feat(flags): script arguments come after '--'" (#3681) | Ry Dahl | |
Due to complaints about ergonomics and because it breaks shebang on linux. This reverts commit 2d5457df15d8c4a81362bb2d185b5c6013faa1d8. BREAKING CHANGE | |||
2020-01-15 | feat(std/node): Added node timers builtin (#3634) | Luca Casonato | |
2020-01-15 | fix curl.ts (#3677) | Tomofumi Chiba | |
2020-01-10 | Remove std/multipart (#3647) | Nayeem Rahman | |
since it overlaps with std/mime/multipart | |||
2020-01-09 | feat: Deno.args now does not include script (#3628) | Ry Dahl | |
Previously Deno.args was ["script.js", "arg1", "arg2"] Now it is just ["arg1", "arg2"] BREAKING CHANGE | |||
2020-01-08 | Remove xeval subcommand (#3630) | Ry Dahl | |
2020-01-08 | feat(flags): script arguments come after '--' (#3621) | Ry Dahl | |
2020-01-08 | Runtime Compiler API (#3442) | Kitson Kelly | |
Also restructures the compiler TypeScript files to make them easier to manage and eventually integrate deno_typescript fully. | |||
2020-01-07 | fix: Deno.mkdir should conform to style guide (#3617) | Ry Dahl | |
2020-01-05 | doc: Add glib2.0 as a build prerequisite (#3608) | Nayeem Rahman | |
2020-01-05 | Replace libdeno with rusty_v8 (#3556) | Ry Dahl | |
2020-01-04 | Fix ws handshake with correctly empty search string (#3587) | Dreamacro | |
2020-01-04 | fix(std/encoding/yaml): export parseAll (#3592) | uki00a | |
2020-01-02 | Happy new year! (#3578) | Ry Dahl | |
2020-01-02 | feat(std/http): make req.body a Reader (#3575) | Kevin (Kun) "Kassimo" Qian | |
2019-12-30 | upgrade: Tokio 0.2 (#3418) | Bartek Iwańczuk | |
2019-12-24 | doc: Update and improve build instructions (#3547) | Nayeem Rahman | |
2019-12-23 | std: remove wildcard export in uuid module (#3540) | Axetroy | |
2019-12-21 | fix(std/encoding/yaml): support document separator in parseAll (#3535) | Yoshiya Hinosawa | |
2019-12-20 | feat: Add missing mod.ts files in std (#3509) | Nayeem Rahman | |
std/archive/tar.ts: - Remove FileReader. - Remove FileWriter. std/encoding/csv.ts: - ExtendedParseOptions -> ParseOptions - HeaderOption -> HeaderOptions - ParseOptions -> ReadOptions - readAll() -> readMatrix() std/encoding/yaml.ts: - DumpOptions -> StringifyOptions std/fmt/colors.ts: - getEnabled() -> getColorEnabled() - setEnabled() -> setColorEnabled() std/testing/mod.ts: - Re-export sibling modules. | |||
2019-12-20 | docs(std/encoding/yaml): add usage document (#3529) | Yoshiya Hinosawa | |
2019-12-18 | fix permission errors are swallowed by fs.copy() (#3504) | Axetroy | |
2019-12-18 | fix code example (#3519) | Christian Bromann | |
2019-12-18 | Improve empty test case error messages (#3514) | Yoshiya Hinosawa | |
2019-12-18 | fix permission errors are swallowed by fs.emptyDir (#3501) | Axetroy | |
2019-12-15 | std/node: better error message for read perm in require() (#3502) | Kevin (Kun) "Kassimo" Qian | |
2019-12-14 | Support utf8 in file_server (#3495) | 木杉 | |
2019-12-14 | feat(file_server): add help & switch to flags (#3489) | 木杉 | |
2019-12-13 | fix permission errors are swallowed by fs.exists (#3493) | Axetroy | |
2019-12-12 | file_server: get file and fileInfo concurrently (#3486) | Weijia Wang | |
2019-12-12 | fix: file_server swallowing permission errors (#3467) | 木杉 | |
2019-12-12 | benchmark: align deno_http and node_http response (#3484) | Kevin (Kun) "Kassimo" Qian | |
2019-12-12 | fix v8-flags example to manual (#3470) | dnalborczyk | |
2019-12-12 | fix(std/http): close connection on .respond() error (#3475) | Kevin (Kun) "Kassimo" Qian | |
2019-12-12 | fix: Only swallow NotFound errors in std/fs/expandGlob() (#3479) | Nayeem Rahman | |
2019-12-10 | fix: decoding uri in file_server (#3187) | AleksandrukTad | |
2019-12-08 | fix(installer): installs to the wrong directory on Windows (#3462) | 木杉 | |
Close: #3443 | |||
2019-12-02 | better html for file_server (#3423) | 木杉 | |
2019-11-26 | feat: add ignore parser for std/prettier (#3399) | Axetroy | |
2019-11-26 | refactor: reorganize flags (#3389) | Ry Dahl | |
- Remove ability to specify run arguments like `--allow-net` after the script argument. It's too hacky to make work with clap. - Remove `--v8-options`, instead use `--v8-flags=--help` - Give more descriptive names to unit tests in flags.rs - Assume argv and subcommand into DenoFlags struct so the output of flags module is only DenoFlags rather than the tuple (subcommand, flags, argv). - Improve CLI help text - Make `deno run` specific args like `--allow-net` only show up in 'deno help run' instead of as global flags in `deno help`. - Removes `deno version` to simplify our implementation and be closer to clap defaults. `deno -V` now only shows Deno's version and not V8's nor TypeScript. `Deno.versions` can be used to see that information. - Prevent clap from auto-detecting terminal width and attempting to wrap text. | |||
2019-11-20 | feat: Support named exports on bundles. (#3352) | Kitson Kelly | |
2019-11-19 | std/node: add some Node.js polyfill to require() (#3382) | Kevin (Kun) "Kassimo" Qian | |
2019-11-19 | feat(std/node) add CommonJS require (#3380) | Kevin (Kun) "Kassimo" Qian | |
2019-11-18 | chore: improve examples (#3377) | Ry Dahl | |
2019-11-18 | support load yaml/yml prettier config (#3370) | 罗文 | |
2019-11-18 | feat: std/node/process (#3368) | Rafał Pocztarski | |
2019-11-18 | feat: Add std/encoding/yaml module (#3361) | Lilian Saget-Lethias | |
2019-11-16 | Use futures 0.3 API (#3358) | Bartek Iwańczuk | |
2019-11-16 | fmt: respect prettierrc and prettierignore (#3346) | 罗文 | |
2019-11-16 | fix: std/datetime toIMF bug (#3357) | Leo Chandra | |