Permalink
Please sign in to comment.
Browse files
Allow user to specify a local node_modules path. Continues #585
- Loading branch information...
Showing
with
85 additions
and 21 deletions.
- +10 −0 README.md
- +2 −2 lib/helpers.js
- +11 −4 lib/main.js
- +8 −4 lib/worker-helpers.js
- +2 −1 lib/worker.js
- +6 −0 package.json
- +2 −0 spec/fixtures/indirect-local-eslint/testing/eslint/.gitignore
- +1 −0 spec/fixtures/indirect-local-eslint/testing/eslint/lib/foo.js
- 0 spec/fixtures/indirect-local-eslint/testing/eslint/lib/node_modules/.gitkeep
- 0 spec/fixtures/indirect-local-eslint/testing/eslint/lib/package.json
- 0 spec/fixtures/indirect-local-eslint/testing/eslint/node_modules/eslint/bin/eslint.js
- +1 −0 spec/fixtures/indirect-local-eslint/testing/eslint/node_modules/eslint/lib/cli.js
- 0 spec/fixtures/indirect-local-eslint/testing/eslint/package.json
- +21 −0 spec/worker-helpers-spec.js
- +11 −4 src/main.js
- +8 −4 src/worker-helpers.js
- +2 −2 src/worker.js
15
lib/main.js
| @@ -0,0 +1,2 @@ | ||
| +# Keep node_modules test fixtures | ||
| +!node_modules |
| @@ -0,0 +1 @@ | ||
| +var foo = 42; |
No changes.
| @@ -0,0 +1 @@ | ||
| +module.exports = "located" |
15
src/main.js
0 comments on commit
fb7436c