Skip to content

4.0.0

Choose a tag to compare

@thecodrr thecodrr released this 27 Jul 18:28
· 184 commits to master since this release

Breaking Changes:

  1. Due to issues with export default in the Type Definitions, I had to migrate to using named exports. (#37)

So this is now invalid:

import fdir from "fdir";

Instead do this:

ES6:

import { fdir } from "fdir";

CommonJS:

const { fdir } = require("fdir");