ad7b17df1e1ee71fb88f87133f5712a77f6adefa
[yaffs-website] / extras / my_custom_importer_file.js
1 var path = require('path');
2
3 module.exports = function(file) {
4   return {
5     file: path.resolve(path.join(process.cwd(), 'test/fixtures/include-files/', file + (path.extname(file) ? '' : '.scss')))
6   };
7 };