browserify / browserify/static-eval
Doesn't handle var statements with multiple declarations
Open
- Dominant language
- JavaScript
- Stars
- 177
- Forks
- 27
- PR merge metrics
- No merged PRs in 30d
Description
I can't bulkify code that looks like this because static-eval is throwing:
``` js
var bulk = require('bulk-require')
, _ = require('lodash')
, conditions = bulk(__dirname, ['/*.js'])
```
However, this works:
``` js
var bulk = require('bulk-require')
var _ = require('lodash')
var conditions = bulk(__dirname, ['/*.js'])
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.