bem / bem-react

A set of tools for developing user interfaces using the BEM methodology in React
http://bem.github.io/bem-react
Other
440 stars 64 forks source link

@bem-react/pack: Add dev and production build #571

Open yarastqt opened 4 years ago

yarastqt commented 4 years ago

Info

Tool should replace __DEV__ flags in production mode to false

Example

dev mode

if (__DEV__) {
  invariant(false, 'Some message')
}
otherLogic()

prod mode

otherLogic()