Commit a6aab247 by xzyfer

Remove call to removed sass_option_push_import_extension

parent f06781d9
......@@ -113,7 +113,6 @@ int ExtractOptions(v8::Local<v8::Object> options, void* cptr, sass_context_wrapp
sass_option_set_precision(sass_options, Nan::To<int32_t>(Nan::Get(options, Nan::New("precision").ToLocalChecked()).ToLocalChecked()).FromJust());
sass_option_set_indent(sass_options, ctx_w->indent);
sass_option_set_linefeed(sass_options, ctx_w->linefeed);
sass_option_push_import_extension(sass_options, ".css");
v8::Local<v8::Value> importer_callback = Nan::Get(options, Nan::New("importer").ToLocalChecked()).ToLocalChecked();
......@@ -303,7 +302,7 @@ NAN_METHOD(render_sync) {
}
sass_free_context_wrapper(ctx_w);
info.GetReturnValue().Set(result == 0);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment