4.0.0
Breaking Changes:
- Due to issues with
export defaultin 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");