oklas / react-app-alias

:label: Alias and multiple src directory for craco or rewired create-react-app
MIT License
173 stars 18 forks source link

BREAKING CHANGE: rename `alias()` to `aliasWebpack()` #60

Closed oklas closed 2 years ago

oklas commented 2 years ago

Rewire interface is typically uses two alias functions:

module.exports = alias(aliasMap)
module.exports.jest = aliasJest(aliasMap)

Switch to another name of library is a good time to increase readability of rewire API, and make more correct to understand, so:

- module.exports = alias(aliasMap)
+ module.exports = aliasWebpack(aliasMap)
  module.exports.jest = aliasJest(aliasMap)
oklas commented 2 years ago

Closed in #61