@bem-react/pack: Add dev and production build
Open
improvement
scope: pack
- Dominant language
- TypeScript
- Stars
- 450
- Forks
- 69
- PR merge metrics
- No merged PRs in 30d
Description
## Info
Tool should replace `__DEV__` flags in production mode to `false`
## Example
**dev mode**
```ts
if (__DEV__) {
invariant(false, 'Some message')
}
otherLogic()
```
**prod mode**
```ts
otherLogic()
```
Contributor guide
Assessment
This issue has not been assessed yet.