Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-11-20 | feat: Support named exports on bundles. (#3352) | Kitson Kelly | |
2019-11-19 | fix: use AF_INET6 in ./tools/http_server.py (#3374) | Bartek Iwańczuk | |
2019-11-16 | Use futures 0.3 API (#3358) | Bartek Iwańczuk | |
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 | Revert "tests: share http server between tests (#3336)" | Ryan Dahl | |
This reverts commit dbf861f8a02f4a90ef68a4e2741b973becc53438. | |||
2019-11-13 | tests: share http server between tests (#3336) | Bartek Iwańczuk | |
Re-enable flaky tests | |||
2019-11-13 | Disable flaky tests lock_check_ok2 again (#3334) | Ry Dahl | |
Mistakenly re-enabled in #3275. | |||
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 | Disable flaky tests lock_check_ok2 and lock_check_err2 (#3331) | Ry Dahl | |
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. | |||
2019-11-08 | test: re-enable integration test 045 (#3300) | Yoshiya Hinosawa | |
This test was improved in #3185. | |||
2019-11-08 | disable flaky test | Ryan Dahl | |
2019-11-07 | disable flaky test | Ryan Dahl | |
2019-11-05 | Disable flaky tests (#3270) | Ry Dahl | |
2019-11-03 | feat: lockfiles (#3231) | Ry Dahl | |
Use --lock-write=lock.json or --lock-check=lock.json on the command line. | |||
2019-10-29 | Remove TTY tests - dead code (#3229) | Ry Dahl | |
2019-10-27 | feat: top-level-for-await (#3212) | Andy Hayden | |
2019-10-26 | Support named imports/exports for subset of properties in JSON modules (#3210) | Kevin (Kun) "Kassimo" Qian | |
2019-10-22 | remove --no-prompt flag, fail on missing permissions (#3183) | Yoshiya Hinosawa | |
2019-10-22 | test: improve http_proxy test (#3185) | Yoshiya Hinosawa | |
2019-10-16 | fix: remote jsx/tsx files were compiled as js/ts (#3125) | Yusuke Sakurai | |
2019-10-04 | Merge deno_cli_snapshots into deno_cli (#3064) | Ryan Dahl | |
2019-10-04 | Use xeval from deno_std (#3058) | Nayeem Rahman | |
2019-10-02 | feat: JSX Support (#3038) | Yusuke Sakurai | |
2019-09-30 | Support top-level-await in TypeScript (#3024) | Ryan Dahl | |
2019-09-25 | Handle uncaught worker errors without panicking (#3019) | Kitson Kelly | |
2019-09-24 | test: add HTTP_PROXY tests (#2977) | Bartek Iwańczuk | |
2019-09-24 | Upgrade V8 for top-level-await (#3015) | Ryan Dahl | |
2019-09-24 | fix: run missing integration tests (#2997) | Bartek Iwańczuk | |
2019-09-19 | Remove test.py, use cargo test as test frontend (#2967) | Ryan Dahl | |
Fixes #2933 | |||
2019-09-16 | Move integration tests to //cli/tests/ (#2964) | Ryan Dahl | |
This ensures the deno executable is properly created before running the integration tests. Also allows deno_cli to be used as a lib. Docs are now properly generated: https://docs.rs/deno_cli/0.18.4/deno_cli/ Towards #2933 Prep for #2955 |