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

my_custom_importer_file_and_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: e24f05ed38f348a47f6f1450e1f4bb05482161e0 (plain)
1
2
3
4
5
6
module.exports = function(file, prev, done) {
  done({
    file: '/some/random/path/file.scss',
    contents: 'div {color: yellow;}'
  });
};