Skip to content

Commit

Permalink
Merge pull request #863 from mattselden12/fixwindowsbuild
Browse files Browse the repository at this point in the history
Fixed Windows Build Error
  • Loading branch information
rwjblue authored Nov 7, 2018
2 parents caa28ac + 0c158cc commit 5f978f6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion build/symlink-dependencies/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ module.exports = {
if (isScopedPackage(dep)) { mkdirpScope(dep, modulesPath); }
fs.symlinkSync(
path.join('../../../../', dep),
path.join(modulesPath, dep)
path.join(modulesPath, dep),
'junction'
);
});
}
Expand Down
2 changes: 1 addition & 1 deletion testem.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ let config = {
"disable_watching": true,
"launchers": {
"Node": {
"command": "./bin/run-node-tests.js",
"exe": "node", args: ["./bin/run-node-tests.js"],
"protocol": "tap"
}
},
Expand Down

0 comments on commit 5f978f6

Please sign in to comment.