Welcome to mirror list, hosted at ThFree Co, Russian Federation.

my_custom_importer_data_cb.js « extras « fixtures « test « node-sass « node_modules - github.com/austingebauer/devise.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d587304de82c4ebf7d97d4d7a56ca93d77c69cdf (plain)
1
2
3
4
5
module.exports = function(file, prev, done) {
  done({
    contents: 'div {color: yellow;}'
  });
};