epiphany/node_modules/hamljs/Gruntfile.js
2023-12-09 22:19:03 -08:00

19 lines
303 B
JavaScript

"use strict";
module.exports = function(grunt) {
grunt.initConfig({
urequire: {
dist: {
path: "lib",
main: "haml",
dstPath: ".",
template: "AMD"
}
}
});
grunt.loadNpmTasks("grunt-urequire");
grunt.registerTask("default", ["urequire"]);
};