summaryrefslogtreecommitdiff
path: root/cli/js
AgeCommit message (Collapse)Author
2020-01-17feat: support individual async handler for each op (#3690)Andy Finch
2020-01-16Add Deno.symbols and move internal fields for test (#3693)Kevin (Kun) "Kassimo" Qian
2020-01-16feat(fs): add more unix-only fields to FileInfo (#3680)Kevin (Kun) "Kassimo" Qian
2020-01-12Create an old program to be used in snapshot. (#3644)Kitson Kelly
2020-01-09feat: 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-08feat: Deno.create (#3629)Luca Casonato
2020-01-08Runtime 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-07fix: Deno.mkdir should conform to style guide (#3617)Ry Dahl
2020-01-05Replace libdeno with rusty_v8 (#3556)Ry Dahl
2020-01-04perf: TextEncoder.encode improvement (#3596)Luca Casonato
2020-01-02Add missing year ranges to copyright notices (#3582)Waldir Pimenta
2020-01-02Happy new year! (#3578)Ry Dahl
2019-12-30upgrade: Tokio 0.2 (#3418)Bartek Iwańczuk
2019-12-30net: expose shutdown TS def (#3560)Kevin (Kun) "Kassimo" Qian
2019-12-29net: expose shutdown() and ShutdownMode (#3558)Kevin (Kun) "Kassimo" Qian
2019-12-28Fix: allow reading into a 0-length array (#3329)Alexandre Szymocha
2019-12-24Drop unnecessary Object.assign from createResolvable() (#3548)Kevin (Kun) "Kassimo" Qian
2019-12-21feat: Add Deno.dir("executable") (#3526)Nayeem Rahman
2019-12-21fix: Use sync ops when clearing the console (#3533)Nayeem Rahman
2019-12-20feat: Return null on error in Deno.dir() (#3531)Nayeem Rahman
2019-12-18Reduce all directory functions to Deno.dir() (#3518)Ry Dahl
2019-12-15Feat: Add more dir APIs for Deno (#3491)Axetroy
2019-12-14fetch support URL instance as input (#3496)Axetroy
2019-12-10timer: due/now Math.max instead of min (#3477)Kevin (Kun) "Kassimo" Qian
2019-12-05feat: first pass at native plugins (#3372)Andy Finch
2019-12-03Timer/microtask ordering fix (#3439)Kevin (Kun) "Kassimo" Qian
2019-12-01fix realpath behavior in windows (#3425)木杉
2019-11-26Add Deno.realpath (#3404)Kevin (Kun) "Kassimo" Qian
2019-11-25better error message for missing module (#3402)Bartek Iwańczuk
2019-11-24Make private namespaces in lib.deno_runtime.d.ts more private (#3400)Kitson Kelly
2019-11-20feat: Support named exports on bundles. (#3352)Kitson Kelly
2019-11-14Turn on TS strict mode for deno_typescript (#3330)Ry Dahl
2019-11-14Loader: support .wasm imports (#3328)Kevin (Kun) "Kassimo" Qian
* loader: support .wasm imports * http_server: true * Support named exports * Clippy
2019-11-13Update to TypeScript 3.7 (#3275)Kitson Kelly
and update to prettier 1.19 Also, update `assert()` and remove not null assertions where possibly in `cli`. Closes #3273
2019-11-13Make bundles fully standalone (#3325)Kitson Kelly
- Bundles are fully standalone. They now include the shared loader with `deno_typescript`. - Refactor of the loader in `deno_typescript` to perform module instantiation in a more - Change of behaviour when an output file is not specified on the CLI. Previously a default name was determined and the bundle written to that file, now the bundle will be sent to `stdout`. - Refactors in the TypeScript compiler to be able to support the concept of a request type. This provides a cleaner abstraction and makes it easier to support things like single module transpiles to the userland. - Remove a "dangerous" circular dependency between `os.ts` and `deno.ts`, and define `pid` and `noColor` in a better way. - Don't bind early to `console` in `repl.ts`. - Add an integration test for generating a bundle.
2019-11-12fix url parse bug (#3316)木杉
2019-11-11Add permissions.request (#3296)Yoshiya Hinosawa
2019-11-09refactor: worker is no longer a resource (#3290)Bartek Iwańczuk
2019-11-09net: Check for closing status when iterating Listener (#3309)Nayeem Rahman
std/http/server.ts: Use listener.next() instead of listener.accept()
2019-11-04Revert "reduce redundancies in the fetch code (#3249)" (#3264)Ry Dahl
Max latency benchmark went to zero for deno_proxy. This reverts commit 65e91796720ea68d69ac7f925a8f239aee8fb19e
2019-11-04Refactor Worker and ThreadSafeState (#3242)Bartek Iwańczuk
* Split ThreadSafeState into State and GlobalState. State is a "local" state belonging to "Worker" while "GlobalState" is state shared by whole program. * Update "Worker" and ops to use "GlobalState" where applicable * Move and refactor "WorkerChannels" resource
2019-11-02reduce redundancies in the fetch code (#3249)Nick Stott
2019-10-31Upgrade node_modules, change tagline, clean up root directory (#3247)Ry Dahl
* Upgrade node_modules * Simplify tagline * Move gclient_config.py out of root * Move package.json to tools * Remove yarn.lock * Remove CONTRIBUTING.md
2019-10-31cli: replace timer map with red-black tree (#3218)Kevin (Kun) Kassimo Qian
This avoids a crash when the Deno process has been running for 2**32 ms (about 50 days). Additionaly, time complexity of finding which timer is due to fire next is reduced from from O(n) to O(log n).
2019-10-31Adds custom inspect method for URL (#3241)Sven Nicolai Viig
2019-10-31Make EOF unique symbol (#3244)Yoshiya Hinosawa
2019-10-29Remove TTY tests - dead code (#3229)Ry Dahl
2019-10-29Use top-level await in jsdoc examples (#3239)Andy Hayden
2019-10-28Prevent customInspect error from crashing console (#3226)Kevin (Kun) "Kassimo" Qian
2019-10-28Re-enable basic stream support for fetch bodies (#3192)Nick Stott
* Add sd-streams from https://github.com/stardazed/sd-streams/blob/master/packages/streams/src/ * change the interfaces in dom_types to match what sd-streams expects