-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
33 lines (30 loc) · 1.18 KB
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
module.exports = function (grunt) {
grunt.initConfig({
requirejs: {
compile: {
// Available options can be found here
// https://github.com/jrburke/r.js/blob/master/build/example.build.js
options: {
baseUrl: "./",
paths: {},
optimize: "none",
generateSourceMaps: false,
logLevel: 3,
preserveLicenseComments: false,
onBuildRead: function (moduleName, path, contents) {
var wrappedContents = "define(function (require, exports, module) {\n" + contents + "});\n";
return moduleName === "node_modules/almond/almond" || moduleName === "lib/ui/polyfill" ? contents : wrappedContents;
},
name: "node_modules/almond/almond",
include: ["./lib/start"],
insertRequire: ["./lib/start"],
out: "public/js/weatherapp.js",
wrap: true
}
}
}
});
grunt.loadNpmTasks("grunt-contrib-requirejs");
grunt.registerTask("build", ["requirejs"]);
grunt.registerTask("default", ["build"]);
}