Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

windows: wrong paths for require #42

Closed
blond opened this issue May 7, 2015 · 0 comments · Fixed by #43
Closed

windows: wrong paths for require #42

blond opened this issue May 7, 2015 · 0 comments · Fixed by #43
Assignees
Labels
Milestone

Comments

@blond
Copy link
Member

blond commented May 7, 2015

The technology bh-server uses the wrong paths for require.

Actual

/* ... */
dropRequireCache(require, require.resolve("..\node_modules\bh\lib\bh.js"));
var BH = require("..\node_modules\bh\lib\bh.js");
/* ... */

Expected

/* ... */
dropRequireCache(require, require.resolve("../node_modules/bh/lib/bh.js"));
var BH = require("../node_modules/bh/lib/bh.js");
/* ... */
@blond blond added the bug label May 7, 2015
@blond blond closed this as completed in #43 May 8, 2015
@blond blond modified the milestone: 0.5 May 8, 2015
@blond blond self-assigned this May 11, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant