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

Commit

Permalink
Bump LibSass to 3.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
xzyfer committed Dec 10, 2016
1 parent 1bb893f commit 6532189
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "node-sass",
"version": "3.13.1",
"libsass": "3.3.6",
"libsass": "3.4.0",
"description": "Wrapper around libsass",
"license": "MIT",
"bugs": "https://github.com/sass/node-sass/issues",
Expand Down Expand Up @@ -79,6 +79,6 @@
"object-merge": "^2.5.1",
"read-yaml": "^1.0.0",
"rimraf": "^2.5.2",
"sass-spec": "^3.3.6-5"
"sass-spec": "^3.4.0"
}
}
2 changes: 1 addition & 1 deletion src/libsass
Submodule libsass updated 74 files
+65 −0 .github/CONTRIBUTING.md
+29 −0 .github/ISSUE_TEMPLATE.md
+8 −3 Makefile
+28 −22 Makefile.conf
+14 −7 Readme.md
+5 −8 configure.ac
+3 −0 docs/api-context-internal.md
+7 −0 docs/api-context.md
+4 −0 docs/api-doc.md
+2 −0 docs/api-importer.md
+55 −0 docs/api-value-example.md
+49 −22 docs/api-value.md
+4 −0 docs/implementations.md
+5 −4 include/sass/base.h
+3 −0 include/sass/context.h
+28 −27 include/sass/values.h
+1 −1 include/sass/version.h
+1 −1 include/sass2scss.h
+3 −3 script/ci-build-libsass
+12 −3 script/ci-install-deps
+321 −212 src/ast.cpp
+273 −165 src/ast.hpp
+4 −5 src/ast_factory.hpp
+8 −7 src/ast_fwd_decl.hpp
+2 −7 src/bind.cpp
+0 −1 src/bind.hpp
+379 −0 src/check_nesting.cpp
+60 −0 src/check_nesting.hpp
+7 −6 src/constants.cpp
+2 −1 src/constants.hpp
+7 −1 src/context.cpp
+1 −1 src/context.hpp
+76 −32 src/cssize.cpp
+7 −8 src/cssize.hpp
+70 −40 src/debugger.hpp
+15 −2 src/error_handling.cpp
+19 −0 src/error_handling.hpp
+107 −161 src/eval.cpp
+12 −8 src/eval.hpp
+81 −74 src/expand.cpp
+13 −12 src/expand.hpp
+149 −142 src/extend.cpp
+10 −3 src/extend.hpp
+2 −1 src/file.cpp
+96 −59 src/functions.cpp
+2 −2 src/functions.hpp
+33 −45 src/inspect.cpp
+7 −7 src/inspect.hpp
+17 −5 src/json.cpp
+3 −3 src/lexer.cpp
+10 −10 src/listize.cpp
+3 −3 src/listize.hpp
+30 −30 src/node.cpp
+13 −13 src/node.hpp
+21 −19 src/operation.hpp
+48 −103 src/output.cpp
+0 −1 src/output.hpp
+161 −133 src/parser.cpp
+10 −7 src/parser.hpp
+6 −6 src/remove_placeholders.cpp
+1 −1 src/remove_placeholders.hpp
+21 −0 src/sass.cpp
+8 −1 src/sass.hpp
+14 −3 src/sass2scss.cpp
+69 −24 src/sass_context.cpp
+3 −0 src/sass_context.hpp
+22 −10 src/source_map.cpp
+2 −2 src/to_value.cpp
+1 −1 src/to_value.hpp
+3 −1 src/units.hpp
+20 −16 src/util.cpp
+2 −1 src/util.hpp
+2 −0 win/libsass.targets
+6 −0 win/libsass.vcxproj.filters
1 change: 1 addition & 0 deletions src/libsass.gyp
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
'libsass/src/base64vlq.cpp',
'libsass/src/bind.cpp',
'libsass/src/cencode.c',
'libsass/src/check_nesting.cpp',
'libsass/src/color_maps.cpp',
'libsass/src/constants.cpp',
'libsass/src/context.cpp',
Expand Down

0 comments on commit 6532189

Please sign in to comment.