Releases: azu/rc-config-loader
Releases · azu/rc-config-loader
v4.1.3
What's Changed
Refactoring
- fix: replace require with readFileSync by @iljapostnovs in #26
New Contributors
- @iljapostnovs made their first contribution in #26
Full Changelog: v4.1.2...v4.1.3
v4.1.2
v4.1.1
What's Changed
- chore(deps): cleanup dependencies by @azu in #17
- chore/improve-types: Comb typing system by @ShadyMind in #21
New Contributors
- @ShadyMind made their first contribution in #21
Full Changelog: v4.1.0...v4.1.1
v4.1.0
v4.0.0
3.0.0
BREAKING CHANGES 🔥
- typescript: named export instead of default exports
Named export instead of default exports
You should change import code.
- import rcFile from "rc-config-loader"
+ import { rcFile } from "rc-config-loader"
or
- const rcFile = require("rc-config-loader")
+ const { rcFile } = require("rc-config-loader")
Code Refactoring
- Convert to TypeScript #10
- Complete typing, because it is rewritten by TypeScript
- Reduce file size(remove unneed modules, prefer to use built-in module)
- Remove
object-assign
andobject-keys
- Modern environment suport these by default
- Remove