mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-04-21 00:49:09 +00:00
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"]);
|
||
|
|
||
|
};
|