devsite/node_modules/hamljs/Gruntfile.js
2024-07-07 18:49:38 -07:00

20 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"]);
};