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
982d495b
Commit
982d495b
authored
Nov 13, 2013
by
Andrew Nesbitt
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #181 from hongymagic/update-libsass
Update libsass to cc595a8
parents
f243bcd8
99411cf6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
libsass
libsass
+1
-1
cli.js
test/cli.js
+1
-1
test.js
test/test.js
+1
-1
No files found.
libsass
@
cc595a87
Subproject commit
5612dfc0ca3f7850dc3867adad7849876b0ffb4d
Subproject commit
cc595a87175fd53a02bdb776d818a9376bff5afe
test/cli.js
View file @
982d495b
...
@@ -68,7 +68,7 @@ describe('cli', function() {
...
@@ -68,7 +68,7 @@ describe('cli', function() {
]);
]);
emitter
.
on
(
'error'
,
done
);
emitter
.
on
(
'error'
,
done
);
emitter
.
on
(
'write'
,
function
(
err
,
file
,
css
){
emitter
.
on
(
'write'
,
function
(
err
,
file
,
css
){
assert
.
equal
(
css
.
trim
(),
'body {
\
n background: red;
\
n color:
blue
; }'
);
assert
.
equal
(
css
.
trim
(),
'body {
\
n background: red;
\
n color:
#0000FF
; }'
);
fs
.
unlink
(
file
,
done
);
fs
.
unlink
(
file
,
done
);
});
});
});
});
...
...
test/test.js
View file @
982d495b
...
@@ -111,7 +111,7 @@ describe("compile file with include paths", function(){
...
@@ -111,7 +111,7 @@ describe("compile file with include paths", function(){
file
:
path
.
resolve
(
__dirname
,
"include_path.scss"
),
file
:
path
.
resolve
(
__dirname
,
"include_path.scss"
),
includePaths
:
[
path
.
resolve
(
__dirname
,
"lib"
),
path
.
resolve
(
__dirname
,
"functions"
)],
includePaths
:
[
path
.
resolve
(
__dirname
,
"lib"
),
path
.
resolve
(
__dirname
,
"functions"
)],
success
:
function
(
css
)
{
success
:
function
(
css
)
{
done
(
assert
.
equal
(
css
,
"body {
\
n background: red;
\
n color:
blue
; }
\
n"
));
done
(
assert
.
equal
(
css
,
"body {
\
n background: red;
\
n color:
#0000FF
; }
\
n"
));
},
},
error
:
function
(
error
)
{
error
:
function
(
error
)
{
done
(
error
);
done
(
error
);
...
...
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