summaryrefslogtreecommitdiff
path: root/js/url.ts
AgeCommit message (Collapse)Author
2019-10-04Merge deno_cli_snapshots into deno_cli (#3064)Ryan Dahl
2019-09-11Default base URL path to '/' (#2921)Nayeem Rahman
2019-09-05Fix basing in URL constructor (#2867)Nayeem Rahman
2019-09-02Refactor 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-06Implement Blob url support for worker (#2729)Kevin (Kun) "Kassimo" Qian
2019-06-10fix bug in URL (#2495)迷渡
2019-06-01Upgrade TypeScript to 3.5.1 (#2437)Kitson Kelly
2019-04-29removes ? from URL when deleting all params (#2217)迷渡
2019-04-21Fix 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-03-09Migrate from tslint to eslint for linting (#1905)Kitson Kelly
2019-01-21chore: update license lines (#1557)Yoshiya Hinosawa
2019-01-21Revert "Use the same parse processing at contractor of URL with setters (#1549)"Ryan Dahl
Right now every instance of URL which has a basePath passed will share the same instance of parts, so a change to one of them will change them all. https://github.com/denoland/deno/pull/1549#issuecomment-455896081 This reverts commit 9e1f5ccb8b06c01c1330ed38aeba83cfc51f5387.
2019-01-20Use the same parse processing at contractor of URL with setters (#1549)Daijiro Wachi
2018-12-17Add URL implementation (#1359)Kitson Kelly