Skip to content

Commit 151ba24

Browse files
committed
Merge pull request #141 from jasonsanjose/jasonsanjose/2.0.3
Update to 2.0.3 - Fix missing binaries broken by 2.0.2
2 parents 618d6b2 + fcb4d85 commit 151ba24

File tree

2,822 files changed

+8
-5
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,822 files changed

+8
-5
lines changed

Compiler.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ define(function (require, exports, module) {
3838
ProjectManager = brackets.getModule("project/ProjectManager");
3939

4040
// Boilerplate to load NodeDomain
41-
var _domainPath = ExtensionUtils.getModulePath(module, "node/2.0.2/SASSDomain"),
42-
_nodeDomain = new NodeDomain("sass-v2.0.2", _domainPath);
41+
var _domainPath = ExtensionUtils.getModulePath(module, "node/2.0.3/SASSDomain"),
42+
_nodeDomain = new NodeDomain("sass-v2.0.3", _domainPath);
4343

4444
// Initialize temp folder on windows only
4545
// This is to normalize windows paths instead of using Node's os.tmpdir()

node/2.0.2/README.md renamed to node/2.0.3/README.md

+3

node/2.0.2/SASSDomain.js renamed to node/2.0.3/SASSDomain.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ var cp = require("child_process"),
3434
os = require("os"),
3535
path = require("path");
3636

37-
var DOMAIN = "sass-v2.0.2",
37+
var DOMAIN = "sass-v2.0.3",
3838
RE_NODE_SASS_WIN_DRIVE = /([a-z]:\\([a-z]:\\))/i;
3939

4040
var _domainManager,
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)