1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-23 23:49:46 -05:00
Commit graph

9 commits

Author SHA1 Message Date
Ryan Dahl
151ce0266e
Move everything into std subdir 2019-10-09 17:10:09 -04:00
Nayeem Rahman
2f90225c89 Implement expandGlob() and expandGlobSync() (denoland/deno_std#617)
fs/glob.ts:
- Improve prototypes for expandGlob() and expandGlobSync() from denoland/deno_std#604.
- Rename glob() to globToRegExp().
- Add normalizeGlob() and joinGlobs().
- Extract GlobToRegExpOptions from GlobOptions, remove the strict
  and filepath options.

fs/globrex.ts:
- Add GlobrexOptions.

fs/path/constants.ts:
- Add SEP_PATTERN.

fs/walk.ts:
- Add WalkOptions::includeFiles
- Default WalkOptions::includeDirs to true.
- Don't traverse directories matching a skip pattern.
- Remove walkSync()'s default root value.

prettier:
- Refactor to use expandGlob().

testing:
- Make findTestModules() an async generator.
Original: 8c90bd9d0b
2019-10-02 13:59:27 -04:00
Sam Reghenzi
926594c53c fix wrong field name in example code (denoland/deno_std#490)
Original: 3ec3a8b4f1
2019-06-14 07:57:30 -07:00
Axetroy
f7dd691cfb feat(fs): add copy/copySync (denoland/deno_std#278)
Original: ab5b0887cc
2019-05-16 12:19:17 -04:00
Alvaro
2f14376f60 docs(fs): fix async iterator (denoland/deno_std#366)
Original: aa94463902
2019-05-01 17:45:30 -04:00
Axetroy
f1469380ab feat: add ensureSymlink/ensureSymlinkSync for fs modules (denoland/deno_std#268)
Original: 8d1b01cfcf
2019-04-21 15:23:44 -04:00
Axetroy
7336800658 add writeFileStr and update documentation (denoland/deno_std#340)
Original: 191e53a78b
2019-04-14 16:14:57 -04:00
Vincent LE GOFF
d2d5b6ac8e Fix eslint warnings and small clean ups (denoland/deno_std#339)
Original: 95ab4e2a3c
2019-04-14 10:53:19 -04:00
Vincent LE GOFF
fcb8e67626 doc: Add missing documentation (denoland/deno_std#336)
Original: 4d25cc1e35
2019-04-13 15:30:56 -04:00