Closed marksmccann closed 5 years ago
In addition to render and renderSync, node-sass also exports a few variables. We will need to replicate this in order to truly be a drop-in replacement. We could probably, simply do a pass through?
render
renderSync
node-sass
https://github.com/sass/node-sass/blob/master/lib/index.js#L443
/** * API Info * * @api public */ module.exports.info = sass.getVersionInfo(binding); /** * Expose sass types */ module.exports.types = binding.types; module.exports.TRUE = binding.types.Boolean.TRUE; module.exports.FALSE = binding.types.Boolean.FALSE; module.exports.NULL = binding.types.Null.NULL;
In addition to
render
andrenderSync
,node-sass
also exports a few variables. We will need to replicate this in order to truly be a drop-in replacement. We could probably, simply do a pass through?https://github.com/sass/node-sass/blob/master/lib/index.js#L443