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