Skip to content

Commit

Permalink
fix(fslib): export CustomDir (#5371)
Browse files Browse the repository at this point in the history
* Whitespace.

* Export CustomDir class.

To allow compatible implementations of `opendir` to be created by
consumers of this library.
  • Loading branch information
bruce-one authored and merceyz committed Apr 24, 2023
1 parent 5e6d51c commit ab97beb
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 2 deletions.
36 changes: 36 additions & 0 deletions .yarn/versions/fefcfcf9.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
releases:
"@yarnpkg/fslib": patch

declined:
- "@yarnpkg/plugin-compat"
- "@yarnpkg/plugin-constraints"
- "@yarnpkg/plugin-dlx"
- "@yarnpkg/plugin-essentials"
- "@yarnpkg/plugin-exec"
- "@yarnpkg/plugin-file"
- "@yarnpkg/plugin-git"
- "@yarnpkg/plugin-github"
- "@yarnpkg/plugin-init"
- "@yarnpkg/plugin-link"
- "@yarnpkg/plugin-nm"
- "@yarnpkg/plugin-npm"
- "@yarnpkg/plugin-npm-cli"
- "@yarnpkg/plugin-pack"
- "@yarnpkg/plugin-patch"
- "@yarnpkg/plugin-pnp"
- "@yarnpkg/plugin-pnpm"
- "@yarnpkg/plugin-stage"
- "@yarnpkg/plugin-typescript"
- "@yarnpkg/plugin-version"
- "@yarnpkg/plugin-workspace-tools"
- vscode-zipfs
- "@yarnpkg/builder"
- "@yarnpkg/cli"
- "@yarnpkg/core"
- "@yarnpkg/doctor"
- "@yarnpkg/libzip"
- "@yarnpkg/nm"
- "@yarnpkg/pnp"
- "@yarnpkg/pnpify"
- "@yarnpkg/sdks"
- "@yarnpkg/shell"
4 changes: 2 additions & 2 deletions packages/yarnpkg-fslib/sources/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import * as statUtils from './statUtils';

export {constants};

export {LinkStrategy} from './algorithms/copyPromise';
export {opendir} from './algorithms/opendir';
export {LinkStrategy} from './algorithms/copyPromise';
export {opendir, CustomDir} from './algorithms/opendir';

export {statUtils};

Expand Down

0 comments on commit ab97beb

Please sign in to comment.