glint
Version:
Glint is an asset (css, js, whatever-you-need) management that helps you organize and manage your client side files
36 lines (33 loc) • 865 B
JavaScript
;
var path = require('path');
var cwd = process.cwd();
module.exports = [
{
"name": "core",
"final": false,
"files": [
path.join(cwd, "test/fixtures/assets/file1.js"),
path.join(cwd, "test/fixtures/assets/file2.js")
]
},
{
"name": "gallery",
"final": true,
"require": [
"templates"
],
"files": [
path.join(cwd, "test/fixtures/assets/gallery.js"),
path.join(cwd, "test/fixtures/assets/gallery.css")
]
},
{
"name": "templates",
"final": false,
"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")
]
}
];