@bem-react/pack: Add watch mode for rebuild
Open
improvement
scope: pack
- Dominant language
- TypeScript
- Stars
- 450
- Forks
- 69
- PR merge metrics
- No merged PRs in 30d
Description
## Info
Need add watch flag for rebuild project after change files.
## Example
**cli usage**
```sh
pack build -w
```
**selective configuration**
```ts
module.exports = {
plugins: [
useTypeScriptPlugin({
watch: true,
}),
useAssetsPlugin({
watch: false,
}),
],
}
```
For watching can be used `chokidar` library
Contributor guide
Assessment
This issue has not been assessed yet.