Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
node-sass
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
楚学文
node-sass
Commits
c290f2f9
Commit
c290f2f9
authored
Jul 21, 2015
by
Michael Mifsud
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1032 from saper/nodeSassConfig
Provide nodeSassConfig hardcoded defaults
parents
310d7818
78ac14fb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
+3
-1
extensions.js
lib/extensions.js
+3
-1
No files found.
lib/extensions.js
View file @
c290f2f9
...
@@ -104,7 +104,9 @@ function getBinaryName() {
...
@@ -104,7 +104,9 @@ function getBinaryName() {
function
getBinaryUrl
()
{
function
getBinaryUrl
()
{
var
site
=
flags
[
'--sass-binary-site'
]
||
var
site
=
flags
[
'--sass-binary-site'
]
||
process
.
env
.
SASS_BINARY_SITE
||
process
.
env
.
SASS_BINARY_SITE
||
pkg
.
nodeSassConfig
.
binarySite
;
(
pkg
.
nodeSassConfig
&&
pkg
.
nodeSassConfig
.
binarySite
)
||
'https://github.com/sass/node-sass/releases/download'
;
return
[
site
,
'v'
+
pkg
.
version
,
sass
.
binaryName
].
join
(
'/'
);
return
[
site
,
'v'
+
pkg
.
version
,
sass
.
binaryName
].
join
(
'/'
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment