Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-10-04 | Merge deno_cli_snapshots into deno_cli (#3064) | Ryan Dahl | |
2019-10-01 | Implement ignoreBOM option of UTF8Decoder in text_encoding (#3040) | Tomohito Nakayama | |
2019-09-07 | Update @typescript-eslint/* to v2.1.0 (#2878) | Yoshiya Hinosawa | |
2019-09-02 | Refactor snapshot build (#2825) | Ryan Dahl | |
Instead of using core/snapshot_creator.rs, instead two crates are introduced which allow building the snapshot during build.rs. Rollup is removed and replaced with our own bundler. This removes the Node build dependency. Modules in //js now use Deno-style imports with file extensions, rather than Node style extensionless imports. This improves incremental build time when changes are made to //js files by about 40 seconds. | |||
2019-08-28 | Internalize base64-js, convert to TypeScript | Ryan Dahl | |
2019-06-21 | add encodeInto to TextEncoder (#2558) | andy finch | |
2019-04-30 | Make `atob` follow the spec (#2242) | 迷渡 | |
2019-04-21 | Fix eslint warnings (#2151) | Ryan Dahl | |
Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> Co-authored-by: LE GOFF Vincent <g_n_s@hotmail.fr> | |||
2019-04-02 | Fix missing return type (#2038) | JaePil Jung | |
2019-04-01 | Improve new TextDecoder().toString() (#2032) | 迷渡 | |
2019-03-15 | Fix TextDecoder for SharedArrayBuffer backed TypedArray (#1940) | Ryan Dahl | |
2019-03-09 | Migrate from tslint to eslint for linting (#1905) | Kitson Kelly | |
2019-01-21 | chore: update license lines (#1557) | Yoshiya Hinosawa | |
2018-12-06 | Add ASCII support to TextDecoder | Kitson Kelly | |
2018-12-06 | Use alternate TextEncoder/TextDecoder implementation (#1281) | Kitson Kelly | |
This is faster and smaller. | |||
2018-10-14 | Align JSDoc to style guide. | Kitson Kelly | |
2018-09-20 | Add atob() and btoa() (#776) | Kevin (Kun) "Kassimo" Qian | |
2018-08-09 | Add 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. |