20 lines
303 B
JavaScript
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"]);
|
||
|
|
||
|
};
|