Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
Docs: Adds gotcha for VS2015 task runner.
Browse files Browse the repository at this point in the history
Updates troubleshooting guide.
  • Loading branch information
am11 committed Jul 11, 2015
1 parent 9f53ee8 commit 705f01e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions TROUBLESHOOTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ This document covers some common node-sass issues and how to resolve them. You s
- [Debugging installation issues.](#debugging-installation-issues)
- [Windows](#windows)
- [Linux/OSX](#linuxosx)
- [Using node-sass with Visual Studio 2015 Task Runner.](#using-node-sass-with-visual-studio-2015-task-runner)

## Installation problems

Expand Down Expand Up @@ -194,3 +195,9 @@ node -p "console.log(require('node-sass').info)"
```

If this still produces an error please open an issue with the output from these steps.

### Using node-sass with Visual Studio 2015 Task Runner.

If you are using node-sass with VS2015 Task Runner Explorer, you need to make sure that the version of node.js (or io.js) is same as the one you installed node-sass with. This is because for each node.js runtime modules version (`node -p process.versions.modules`), we have a separate build of native binary. See [#532](https://github.com/sass/node-sass/issues/532).

Alternatively, if you prefer using system-installed node.js (supposedly higher version than one bundles with VS2015), you may want to point Visual Studio 2015 to use it for task runner jobs by following the guidelines available at: http://blogs.msdn.com/b/webdev/archive/2015/03/19/customize-external-web-tools-in-visual-studio-2015.aspx.

0 comments on commit 705f01e

Please sign in to comment.