Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-11-15 | Fix remote .wasm import content type issue (#3351) | Kevin (Kun) "Kassimo" Qian | |
2019-11-14 | Loader: support .wasm imports (#3328) | Kevin (Kun) "Kassimo" Qian | |
* loader: support .wasm imports * http_server: true * Support named exports * Clippy | |||
2019-10-17 | feat: --reload flag to take arg for partial reload (#3109) | Michał Sabiniarz | |
Example: To reload only std modules --reload=https://deno.land/std/ | |||
2019-10-16 | fix: remote jsx/tsx files were compiled as js/ts (#3125) | Yusuke Sakurai | |
2019-10-06 | remove more calls to tokio_util::block_on (#3059) | Bartek Iwańczuk | |
towards #2960 | |||
2019-10-04 | Merge deno_cli_snapshots into deno_cli (#3064) | Ryan Dahl | |
2019-10-02 | feat: JSX Support (#3038) | Yusuke Sakurai | |
2019-09-19 | Remove test.py, use cargo test as test frontend (#2967) | Ryan Dahl | |
Fixes #2933 | |||
2019-09-04 | Run tests after "cargo build" on travis (#2854) | Ryan Dahl | |
2019-08-30 | Use 'reqwest' to implement HTTP client (#2822) | Bartek Iwańczuk | |
Closes #2720 | |||
2019-08-16 | Upgrade to rust 1.37.0 (#2786) | Ryan Dahl | |
2019-08-13 | Propagate Url::to_file_path() errors instead of panicking (#2771) | Bert Belder | |
* Propagate Url::to_file_path() errors instead of panicking | |||
2019-07-31 | Use system rustfmt instead of fixed binary (#2701) | Ryan Dahl | |
2019-07-31 | refactor: cleanup compiler pipeline (#2686) | Bartek Iwańczuk | |
* remove fetch_source_file_and_maybe_compile_async and replace it with State.fetch_compiled_module * remove SourceFile.js_source() * introduce CompiledModule which is basically the same as deno::SourceInfo and represents arbitrary file that has been compiled to JS module * introduce //cli/compilers module containing all compilers * introduce JsCompiler which is a no-op compiler - output is the same as input, no compilation takes place - it is used for MediaType::JavaScript and MediaType::Unknown * introduce JsonCompiler that wraps JSON in default export * support JS-to-JS compilation using checkJs | |||
2019-07-31 | factor out FileFetcher to separate module (#2683) | Bartek Iwańczuk | |
* merge SourceFileFetcher trait and FileFetcher struct * move logic related to source file fetching to //cli/file_fetcher.rs * use Result when creating new ThreadSafeState |