summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-09-18Add includeDirs to WalkOptions (denoland/deno_std#601)Nayeem Rahman
Original: https://github.com/denoland/deno_std/commit/de8d0ab4a100707b57f12cff5db635356221f324
2019-09-11bump prettier to 1.18.2 (denoland/deno_std#592)Axetroy
Original: https://github.com/denoland/deno_std/commit/06958a4ada960665a48ac34f919423e0d8d16951
2019-09-11Make uuid v4 rfc4122 compliant (denoland/deno_std#580)Nimalan
Original: https://github.com/denoland/deno_std/commit/ba69f1ea143a3a90e146e71c12c3ae65341373c3
2019-09-11Add xeval (denoland/deno_std#581)Nayeem Rahman
Co-authored-by: Nayeem Rahman <muhammed.9939@gmail.com> Original: https://github.com/denoland/deno_std/commit/a2cae360e8b68c93ef52d6baba5ee63a4b6609f0
2019-09-10feat: Add types to prettier (denoland/deno_std#591)Bartek Iwańczuk
Original: https://github.com/denoland/deno_std/commit/73fe36f9da0ac2221726ad03faf89185a49431fc
2019-09-09fix: replace Deno.platform usages (denoland/deno_std#590)Yoshiya Hinosawa
Original: https://github.com/denoland/deno_std/commit/0e6f163ac6a5a03f45a90960a6f1193ee2718fe3
2019-09-08reenable test getMatchingUrlsLocal (denoland/deno_std#589)Bartek Iwańczuk
Original: https://github.com/denoland/deno_std/commit/cfb0eb55ab83767532b818db4cabab03d157d18e
2019-09-08flags: Parse builtin properties (denoland/deno_std#579)迷渡
Original: https://github.com/denoland/deno_std/commit/03304cd2d3c1d1567f72f05708cf516795cc67af
2019-09-04bump ci to v0.17.0 (denoland/deno_std#585)Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/539338db330e630d006f0898921635c4e10ae671
2019-09-04ws: use crypto getRandomValues (denoland/deno_std#584)Nimalan
Original: https://github.com/denoland/deno_std/commit/bc7dd3904bede90b9e7ae96674446ab6e9d4ccfc
2019-09-04Refactoring using padEnd and padStart (denoland/deno_std#583)迷渡
Original: https://github.com/denoland/deno_std/commit/4e21ace634b635ef540adc7727cd3d8eb9df99bd
2019-09-04Fix boolean regexp (denoland/deno_std#582)迷渡
Original: https://github.com/denoland/deno_std/commit/0b9e28f9185d1d237be025502894fa06682240f0
2019-09-03Avoid prototype builtin `hasOwnProperty` (denoland/deno_std#577)迷渡
Original: https://github.com/denoland/deno_std/commit/d36bff3fbe22a3585d23213e3f4c9f58756c032b
2019-09-03remove `console.log` in tests (denoland/deno_std#578)迷渡
Original: https://github.com/denoland/deno_std/commit/f7f96e9baac8e2a38ed91b7a835fac5acda15dbb
2019-08-30fix: better paths handling in test runner (denoland/deno_std#574)Bartek Iwańczuk
Original: https://github.com/denoland/deno_std/commit/5ef42ece7dfc314dbc5f4ecd30bdecdec4ee4336
2019-08-30link colors to fmt/colors.ts (denoland/deno_std#575)迷渡
Original: https://github.com/denoland/deno_std/commit/d3ad15a6c068a2b07b89b6ed9364ae1318b6aa91
2019-08-26ci: bump to version v0.16.0 (denoland/deno_std#573)Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/59bdbe3272524de66139437f394b4a69ccecec86
2019-08-24Move colors to fmt (denoland/deno_std#571)Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/28e77389ff409814c9da81d767458b36534f095a
2019-08-22print out the failed tests after the summary (denoland/deno_std#554)Eugen Cazacu
Original: https://github.com/denoland/deno_std/commit/ed1b9e0563e0f22eb6415b248d6218e75e500783
2019-08-22use relative paths in test imports (denoland/deno_std#572)Bartek Iwańczuk
Original: https://github.com/denoland/deno_std/commit/d7a837d599ca7d5c489d6c74b7bd42d22a3314eb
2019-08-22test all text functions in colors module (denoland/deno_std#553)Eugen Cazacu
Original: https://github.com/denoland/deno_std/commit/f1c4c1a1626f4d794f05cb033eddfa43a3502e5c
2019-08-21fix: add global test registry (denoland/deno_std#568)Bartek Iwańczuk
After adding deno test command a new problem appeared. If you try running deno test inside this repo test runner will find 80 test files but won't run any tests! This is caused by fact that deno test uses tagged version of standard library which causes test function available inside to repo to be different function that test available in standard lib used by deno test. Original: https://github.com/denoland/deno_std/commit/4531fa81597c346fd291c1d1a2063789369fb84d
2019-08-17Fix typo in examples/README.md (denoland/deno_std#567)Xuhao
Original: https://github.com/denoland/deno_std/commit/b5ded6ccbf03c93155dd6aae85a8408b6b315d7a
2019-08-15Accept absolute root directories in the file server (denoland/deno_std#558)Nayeem Rahman
Original: https://github.com/denoland/deno_std/commit/262d9572ab4078b8d886a21474a5a246cacb5def
2019-08-15Add fmt modules (printf implementation) (denoland/deno_std#566)a2800276
Original: https://github.com/denoland/deno_std/commit/f7b511611ca5bc3801d6f210d82bddce9b0a61e4
2019-08-15add file:// prefix for imports in test runner (denoland/deno_std#564)Bartek Iwańczuk
Original: https://github.com/denoland/deno_std/commit/15afc61356afe0bbf36c78cc3da8d9182d0e5b75
2019-08-14feat: test runner (denoland/deno_std#516)Bartek Iwańczuk
Original: https://github.com/denoland/deno_std/commit/c44e5367bfd08d7a69adfa3434c00991509c4a67
2019-08-14feat: add overloaded form of unit test declaration (denoland/deno_std#563)Bartek Iwańczuk
Original: https://github.com/denoland/deno_std/commit/bd146e0188dbd2c4a802e0af6e6b0705675c4abb
2019-08-14refactor 'assertEquals' (denoland/deno_std#560)Bartek Iwańczuk
* merge 'testing/pretty.ts' into 'testing/asserts.ts' * throw AssertionError in assertEquals * update misc tests use AssertionError Original: https://github.com/denoland/deno_std/commit/ff2d7f24dbc955650a11fc8db2f35c0aa38dcdb1
2019-08-13ci: bump to v0.15.0 (denoland/deno_std#556)Bartek Iwańczuk
Original: https://github.com/denoland/deno_std/commit/f3ddb4f26b81b4fbed86f4b54db7b3e7e3b7fe4e
2019-08-06Revert "http: delete conn parameter in readRequest" (denoland/deno_std#550)Bartek Iwańczuk
This reverts commit 209183e24812095a40e48e60484f80a5a254b1c3. Fixes: denoland/deno_std#441 Original: https://github.com/denoland/deno_std/commit/3e17815c7e61cfd2e4c46a12649811543509d563
2019-08-05Fix URLs in examples/README (denoland/deno_std#551)Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/6d78eec41306b98943847a5d1ec3bcaf389698fd
2019-07-30enable test of aborted conn on windows (denoland/deno_std#549)Yoshiya Hinosawa
Original: https://github.com/denoland/deno_std/commit/28ae08b4244cda59379e25b523c3490edbaa7ce2
2019-07-29refactor: use Deno.execPath where possible (denoland/deno_std#548)Yoshiya Hinosawa
Original: https://github.com/denoland/deno_std/commit/287b0a9cd259952387739405152e031e9abcdb63
2019-07-28Ignore error of writing responses to aborted requests (denoland/deno_std#546)Yoshiya Hinosawa
Original: https://github.com/denoland/deno_std/commit/826deb1012d3595c3f6de19659e13564a15ceda1
2019-07-28Make shebangs Linux compatible (denoland/deno_std#545)Nayeem Rahman
Original: https://github.com/denoland/deno_std/commit/5e77e8adc70f9fffc88a86e18608283b0e10848e
2019-07-17Bump CI to v0.12.0 (denoland/deno_std#541)Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/86675d263441f405af0981c661e838f1ec192004
2019-07-11add link to uuid in README (denoland/deno_std#536)Lucas Caro
Original: https://github.com/denoland/deno_std/commit/14fefcba1593fbcb053c9445534f8ba942f9ff9d
2019-07-11Rename catjson.ts to catj.ts (denoland/deno_std#533)Bartek Iwańczuk
Original: https://github.com/denoland/deno_std/commit/2f4846fc3e163ed1d82845140f5d3cc8adbde26e
2019-07-08fix emptydir on windows (denoland/deno_std#531)Vincent LE GOFF
Original: https://github.com/denoland/deno_std/commit/67641b8ea5ba869854ca042e11b200b90da5fc4b
2019-07-07Remove os.userHomeDir in favor of Deno.homeDir (denoland/deno_std#523)Evgeniy Karagodin
Original: https://github.com/denoland/deno_std/commit/88b48945799322c0bc2f34134eed538759de4174
2019-07-07Upgrade to v0.11.0 (update Reader interface) (denoland/deno_std#527)Yoshiya Hinosawa
Original: https://github.com/denoland/deno_std/commit/3ea90d54f6dad4bcc3d32e63601096a6c0ff3ce4
2019-07-03add UUID module (denoland/deno_std#479)Lucas Caro
Original: https://github.com/denoland/deno_std/commit/f52b3ec002ac38aa9146695283aa491bc2d115b6
2019-06-30prettier: support reading code from stdin (denoland/deno_std#498)Axetroy
Original: https://github.com/denoland/deno_std/commit/85db520b60053db5dc9b56972bfb6bee506dc158
2019-06-29Update instructions to install file server (denoland/deno_std#526)Phil Rukin
Original: https://github.com/denoland/deno_std/commit/9e5473a5020d3769a5bcdda497815321690e06ca
2019-06-26ci: bump deno to v0.10.0Ryan Dahl
Original: https://github.com/denoland/deno_std/commit/53949c1eb6aedb68af6a9301cd49d28db204b885
2019-06-24Add userHomeDir (denoland/deno_std#521)Evgeniy Karagodin
Original: https://github.com/denoland/deno_std/commit/ff7fb5a5d696256b232f8435c53087d5b12848ab
2019-06-24typoRong Sen Ng
Original: https://github.com/denoland/deno_std/commit/ba4210cdb92e7f3d3e9471bf055231221b8be085
2019-06-22file server should order filenames (denoland/deno_std#511)Axetroy
Original: https://github.com/denoland/deno_std/commit/1365d287bc97815b07f7ad298704756cb6877784
2019-06-22feat: add catjson example (denoland/deno_std#517)Bartek Iwańczuk
Original: https://github.com/denoland/deno_std/commit/d99c15448dc6615bea372cc64453de3428c6ba23