browserify / browserify/static-eval

Doesn't handle var statements with multiple declarations

Open
#10 0 comments 0 reactions 0 assignees View on GitHub
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.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.