- 21 Aug, 2015 2 commits
-
-
Be explicit about which runtime versions travis should test
Michael Mifsud authored -
xzyfer authored
-
- 20 Aug, 2015 7 commits
-
-
Marcin Cieslak authored
-
Use new libsass GitHub link
Marcin Cieślak authored -
Chaoyi Zha authored
-
In case of exception occuring during construction of a Sass type instance just return Undefined value, as the delayed JS exception will pop up later. The following code: var sass = require('./'); sass.render({ data: 'div { color: foo(); }', functions: { 'foo()': function() { return sass.types.Color(2,3); } } }); now results in an libsass error Constructor should be invoked with either 0, 1, 3 or 4 arguments instead of V8 abort FATAL ERROR: v8::ToLocalChecked Empty MaybeLocalMarcin Cieslak authored -
Marcin Cieslak authored
-
Marcin Cieslak authored
-
Marcin Cieslak authored
-
- 19 Aug, 2015 9 commits
-
-
Instrument spec.js for test coverage measurement.
Marcin Cieslak authored -
Additional tests for SassTypes::Color
Michael Mifsud authored -
Update bindings for io.js 3.0.0
Michael Mifsud authored -
Use TypeError whenever argument count or type do not match and RangeError if the index is out of bounds.
Marcin Cieslak authored -
Marcin Cieslak authored
-
Marcin Cieslak authored
-
Marcin Cieslak authored
-
Marcin Cieslak authored
-
Marcin Cieslak authored
-
- 18 Aug, 2015 6 commits
-
-
The value is not returned, it is passed on to another funcion.
Marcin Cieslak authored -
Marcin Cieslak authored
-
nan 2.0.1 required due to introduction of Nan::NewInstance(v8::Local<v8::Function)>, int, v8::Local<v8::Value>) constructor: https://github.com/nodejs/nan/commit/29450ed1670051613ffea9dd3f980f8685feceb4Marcin Cieslak authored -
Master
Marcin Cieślak authored -
Geoffrey Papin authored
-
Geoffrey Papin authored
-
- 17 Aug, 2015 4 commits
-
-
Added note to indentedSyntax in read.me
Marcin Cieślak authored -
Added note to indentedSyntax in read.me to clarify that node-sass can compile mixed libraries even with this set to false.
David Kebler authored -
The watcher should watch indented syntax files too
Michael Mifsud authored -
This fixes a bug that prevented the watcher from triggering file compilations on changes to .sass file. Fixes #1075
xzyfer authored
-
- 16 Aug, 2015 1 commit
-
-
Locate pangyp via module API
Michael Mifsud authored
-
- 12 Aug, 2015 1 commit
-
-
Use Nan::To<Type> instead of ->ToType() to convert caller supplied objects in renderXXX functions. Verify that provided options, options.result and options.result.stats are all valid objects provided by the caller. Throw TypeException otherwise. Introduce low-level tests that invoke C++ function directly, without additional JavaScript wrappers.
Marcin Cieslak authored
-
- 11 Aug, 2015 2 commits
-
-
Marcin Cieslak authored
-
TROUBLESHOOTING.md: Windows: Use "npm install -ddd"
Michael Mifsud authored
-
- 10 Aug, 2015 2 commits
-
-
- Use "npm install -ddd" - Capture logfiles - Provide known-good reference logfiles for comparison
Marcin Cieslak authored -
Marcin Cieslak authored
-
- 09 Aug, 2015 4 commits
-
-
Marcin Cieslak authored
-
Marcin Cieslak authored
-
No need to have EscapableHandleScope, since local handle is not returned by the method - only assigned to an objects supplied by the caller.
Marcin Cieslak authored -
For bool, double, [u]int32_t there is no need to wrap a returned value in Nan::New() https://github.com/nodejs/nan/blob/master/doc/methods.md#api_nan_return_value
Marcin Cieslak authored
-
- 08 Aug, 2015 2 commits
-
-
The code has been updated to meet the requirements of the updated V8 engine as provided by io.js. In some cases additional EscapableHandleScope has been provided. SassValueWrapper<T>::New has been changed: in case of instance construction via the function call "sass.types.Color(0,0,0)" instead of "new sass.types.Color(0,0,0)" the "new" part is no longer executed by falling through. This should not be necessary because the constructor is called by the NewInstance call anyway. This fixes the following error: FATAL ERROR: v8::Object::SetAlignedPointerInInternalField() Internal field out of bounds
Marcin Cieslak authored -
If there is no coverage at all we get an empty global variable and the lcov empty file may cause coveralls failure. Use mkdirp() to create lib-cov
Marcin Cieslak authored
-