NativeScript / nativescript-dev-sass

SASS CSS pre-processor for NativeScript projects
Apache License 2.0
44 stars 17 forks source link

Can a css.map file be generated? #14

Open clocksmith opened 8 years ago

toddanglin commented 8 years ago

Technically, yes. This plugin uses the node-sass library, which does support generating sourceMap files: https://github.com/sass/node-sass#sourcemap

You could always manually enable this option by modifying converter.js in your node_modules > nativescript-dev-sass > lib folder. I'm not sure how best to make this easily configurable via an existing config file.

@NathanWalker Is there any best practice for giving build step plugins configuration options like this? Never tried it myself.