summaryrefslogtreecommitdiff
path: root/BUILD.gn
AgeCommit message (Collapse)Author
2018-09-16Improve integration of dom_typesKitson Kelly
2018-09-14Rename fetch_types.d.ts to dom_types.d.tsParsa Ghadimi
2018-09-14Implement BlobParsa Ghadimi
2018-09-12feat: add deno.makeTempDirYoshiya Hinosawa
2018-09-12build: rebuild bundle when npm packages are added/removed/updatedBert Belder
2018-09-12Dedup js source list in BUILD.gnRyan Dahl
2018-09-12Implement deno.rename() (#731)Mani Maghsoudlou
2018-09-12Add remove(), removeAll().Kevin (Kun) "Kassimo" Qian
and removeSync(), removeAllSync().
2018-09-11Implement deno.stat() and deno.lstat()Sajjad Hashemian
2018-09-10Implement deno.mkdir()Sajjad Hashemian
2018-09-10Implement deno.readFile()Ryan Dahl
As an example of how to implement ops that have both sync and async versions.
2018-09-10fbs_util.ts -> dispatch.tsRyan Dahl
And send() -> sendSync()
2018-09-09Add missing ts files to BUILD.gnRyan Dahl
2018-09-03Format.Ryan Dahl
2018-09-01Remove lib.globals.d.tsKitson Kelly
2018-09-01Bundle most types into globals.d.ts (#642)Kitson Kelly
2018-08-30Support https imports.Ryan Dahl
Adds hyper-rustls to the build. Use ring for sha1 instead of "ssh1" crate. Fixes #528.
2018-08-30Downgrading tokio to registry version.Ryan Dahl
Prep for rustls.
2018-08-29Implement makeTempDirSync()Bert Belder
2018-08-29build: work around sccache false positives due to asm .incbin usageBert Belder
2018-08-26build: fix typescript dirs not correctly rebasedBert Belder
2018-08-26build: do not bake absolute paths into deno_nsBert Belder
2018-08-25Build: make it possible to use ccache/sccache on windowsBert Belder
Also auto-detect the availability of sccache in setup.py.
2018-08-22runtime.ts refactor into compiler.ts (#564)Ryan Dahl
Adds compiler_test.ts
2018-08-20First pass at fetch()Ryan Dahl
With help from Thomas Ghysels <info@thomasg.be>
2018-08-20Add hyper dependenciesThomas Ghysels
2018-08-19chore: move libdeno files to //libdeno/Yoshiya Hinosawa
2018-08-18Rename :all target to :defaultRyan Dahl
2018-08-16Remove dead code: src/flatbuffer_builder.ccRyan Dahl
2018-08-16Implement deno_handle_msg_from_js in RustRyan Dahl
Fixes #419, #414.
2018-08-13fix: change :test_cc to v8_executableYoshiya Hinosawa
2018-08-13Fix transitive rust deps.Ryan Dahl
Use a single out_dir for all rust crates.
2018-08-11Rename mock_runtime_test to libdeno_testRyan Dahl
Fixes #465
2018-08-10Fix stacktraces in deno_nsKitson Kelly
2018-08-09Add TextEncoder/TextDecoder support.Ryan Dahl
Fixes #470 This commit increases size: out/release/gen/bundle/main.js 7.3M -> 7.9M out/release/gen/bundle/main.js.map 11M -> 12M out/release/gen/snapshot_deno.bin 34M -> 37M out/release/deno 49M -> 53M Note the amount in the JS code added is quite small: 4.0K node_modules/text-encoding/index.js 4.0K node_modules/@types/text-encoding/index.d.ts 4.0K js/text_encoding.ts Unclear to me what is causing the jump in snapshot size.
2018-08-09First pass at setTimeout with Tokio (#434)Ryan Dahl
2018-08-08Use sourcemapFile to reroot sourcemap sourcesKitson Kelly
2018-08-09Fix test_cc build dependenciesBert Belder
2018-08-09Make 'tokio' build on windows, add windows depsBert Belder
2018-08-09Add 'tokio' and dependenciesRobby Madruga
Use tokio from git.
2018-08-08Generate declarationsKitson Kelly
2018-08-08Rename lib.deno.d.ts to lib.globals.d.tsKitson Kelly
2018-08-02Source map support (#429)Ryan Dahl
This change increases size: out/debug/obj/libdeno/from_snapshot.o 19M -> 34M out/release/deno 32M -> 47M
2018-08-02Fix snapshot build dependencies.Ryan Dahl
2018-08-02Remove dispatch.ts and move assignCmdId to util.tsRyan Dahl
2018-08-01Optimize compile time by using asm.Ryan Dahl
Switches to using asm incbin to embed the V8 snapshot instead of outputing C code and then compiling it. Compile time for from_snapshot.o goes from 44s to 1s.
2018-07-31Upgrade TypeScript (3.0.1)Kitson Kelly
Update runtime to use lib.deno.d.ts Add proper console declaration Upgrade prettier (There was an issue formatting lib.deno.d.ts)
2018-07-29Add winapi crate, make 'rand' and 'tempfile' workBert Belder
2018-07-29Add sha1 and tempfile crates.Ryan Dahl
2018-07-29Add from_c() to get a Deno object from ptr.Ryan Dahl
This is a utility function for CodeCache and other handlers.