glint
Version:
Glint is an asset (css, js, whatever-you-need) management that helps you organize and manage your client side files
12 lines (9 loc) • 473 B
JavaScript
var path = require('path');
var cwd = process.cwd();
var index = {};
index[path.join(cwd, "test/fixtures/assets/template.jade")] = [ "gallery" ];
index[path.join(cwd, "test/fixtures/assets/styles.styl")] = [ "gallery" ];
index[path.join(cwd, "test/fixtures/assets/template.scss")] = [ "gallery" ];
index[path.join(cwd, "test/fixtures/assets/gallery.js")] = [ "gallery" ];
index[path.join(cwd, "test/fixtures/assets/gallery.css")] = [ "gallery" ];
module.exports = index;