mirror of
https://github.com/denoland/deno.git
synced 2024-10-30 09:08:00 -04:00
2f90225c89
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:
|
||
---|---|---|
.. | ||
basename_test.ts | ||
constants.ts | ||
dirname_test.ts | ||
extname_test.ts | ||
interface.ts | ||
isabsolute_test.ts | ||
join_test.ts | ||
mod.ts | ||
parse_format_test.ts | ||
posix.ts | ||
README.md | ||
relative_test.ts | ||
resolve_test.ts | ||
test.ts | ||
utils.ts | ||
win32.ts | ||
zero_length_strings_test.ts |
Deno Path Manipulation Libraries
Usage:
import * as path from "https://deno.land/std/fs/path.ts";