Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-01-23 | update readmes (#3765) | Ryan Dahl | |
2020-01-22 | refactor: snapshotting (#3753) | Bartek Iwańczuk | |
2020-01-22 | Reland "Create an old program to be used in snapshot." (#3747) | Bartek Iwańczuk | |
* read CLI assets from disk during snapshotting | |||
2020-01-21 | Revert "Create an old program to be used in snapshot. (#3644)" | Ry Dahl | |
Ref #3712. This change allowed the deno_typescript crate to reference cli/js/lib.deno_runtime.d.ts which breaks "cargo package". We intend to reintroduce a revised version of this patch later once "cargo package" is working and tested. This reverts commit 737ab94ea1bdf65eeef323ea37e84bcf430fb92c. | |||
2020-01-21 | change copyrights from 2019 to 2020 (#3733) | Takashi Idobe | |
2020-01-21 | refactor: Rename JS entry functions (#3732) | Bartek Iwańczuk | |
2020-01-21 | Implemented alternative open mode in files (#3119) | Michał Sabiniarz | |
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | |||
2020-01-21 | refactor: split worker and worker host logic (#3722) | Bartek Iwańczuk | |
* split ops/worker.rs into ops/worker_host.rs and ops/web_worker.rs * refactor js/workers.ts and factor out js/worker_main.ts - entry point for WebWorker runtime * BREAKING CHANGE: remove support for blob: URL in Worker * BREAKING CHANGE: remove Deno namespace support and noDenoNamespace option in Worker constructor * introduce WebWorker struct which is a stripped down version of cli::Worker | |||
2020-01-20 | refactor: reduce number of ErrorKind variants (#3662) | Bartek Iwańczuk | |
2020-01-20 | Use globalThis to reference global scope (#3719) | Kitson Kelly | |
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | |||
2020-01-18 | stabilize net Addr (#3709) | Bartek Iwańczuk | |
Co-authored-by: xiaoxintang <15707971810@163.com> | |||
2020-01-18 | rename dial to connect and dialTLS to connectTLS (#3710) | Bartek Iwańczuk | |
2020-01-17 | Mark various APIs in window.Deno as unstable (#3701) | Ry Dahl | |
2020-01-17 | workers: minimal error handling and async module loading (#3665) | Bartek Iwańczuk | |
2020-01-17 | Fix compile and bundle api types (#3703) | Klaus Hvam | |
2020-01-17 | feat: support individual async handler for each op (#3690) | Andy Finch | |
2020-01-16 | Add Deno.symbols and move internal fields for test (#3693) | Kevin (Kun) "Kassimo" Qian | |
2020-01-16 | feat(fs): add more unix-only fields to FileInfo (#3680) | Kevin (Kun) "Kassimo" Qian | |
2020-01-12 | Create an old program to be used in snapshot. (#3644) | Kitson Kelly | |
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 | feat: Deno.create (#3629) | Luca Casonato | |
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 | Replace libdeno with rusty_v8 (#3556) | Ry Dahl | |
2020-01-04 | perf: TextEncoder.encode improvement (#3596) | Luca Casonato | |
2020-01-02 | Add missing year ranges to copyright notices (#3582) | Waldir Pimenta | |
2020-01-02 | Happy new year! (#3578) | Ry Dahl | |
2019-12-30 | upgrade: Tokio 0.2 (#3418) | Bartek Iwańczuk | |
2019-12-30 | net: expose shutdown TS def (#3560) | Kevin (Kun) "Kassimo" Qian | |
2019-12-29 | net: expose shutdown() and ShutdownMode (#3558) | Kevin (Kun) "Kassimo" Qian | |
2019-12-28 | Fix: allow reading into a 0-length array (#3329) | Alexandre Szymocha | |
2019-12-24 | Drop unnecessary Object.assign from createResolvable() (#3548) | Kevin (Kun) "Kassimo" Qian | |
2019-12-21 | feat: Add Deno.dir("executable") (#3526) | Nayeem Rahman | |
2019-12-21 | fix: Use sync ops when clearing the console (#3533) | Nayeem Rahman | |
2019-12-20 | feat: Return null on error in Deno.dir() (#3531) | Nayeem Rahman | |
2019-12-18 | Reduce all directory functions to Deno.dir() (#3518) | Ry Dahl | |
2019-12-15 | Feat: Add more dir APIs for Deno (#3491) | Axetroy | |
2019-12-14 | fetch support URL instance as input (#3496) | Axetroy | |
2019-12-10 | timer: due/now Math.max instead of min (#3477) | Kevin (Kun) "Kassimo" Qian | |
2019-12-05 | feat: first pass at native plugins (#3372) | Andy Finch | |
2019-12-03 | Timer/microtask ordering fix (#3439) | Kevin (Kun) "Kassimo" Qian | |
2019-12-01 | fix realpath behavior in windows (#3425) | 木杉 | |
2019-11-26 | Add Deno.realpath (#3404) | Kevin (Kun) "Kassimo" Qian | |
2019-11-25 | better error message for missing module (#3402) | Bartek Iwańczuk | |
2019-11-24 | Make private namespaces in lib.deno_runtime.d.ts more private (#3400) | Kitson Kelly | |
2019-11-20 | feat: Support named exports on bundles. (#3352) | Kitson Kelly | |
2019-11-14 | Turn on TS strict mode for deno_typescript (#3330) | Ry Dahl | |
2019-11-14 | Loader: support .wasm imports (#3328) | Kevin (Kun) "Kassimo" Qian | |
* loader: support .wasm imports * http_server: true * Support named exports * Clippy | |||
2019-11-13 | Update 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-13 | Make 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. |