-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gruntfile.js
101 lines (93 loc) · 2.87 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
module.exports = function (grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON("package.json"),
jshint: {
before_concat: [
"src/util.js",
"src/memory-storage.js",
"src/document.js",
"src/cursor.js",
"src/collection.js",
"src/monguito-db.js",
],
after_concat: [
"build/<%= pkg.buildName %>.js",
],
options: {
jshintrc: ".jshintrc"
}
},
qunit: {
before_concat: [
"test/util.html",
"test/memory-storage.html"
],
after_concat: [
"test/monguito-db.html"
]
},
concat: {
options: {
separator: "\n\n",
banner: "/*! <%= pkg.name %> v<%= pkg.version %> | " +
"<%= grunt.template.today() %> | " +
"(c) <%= pkg.author.name %> | " +
"<%= pkg.license %> license */\n" +
"(function (exports) {\n\n",
footer: "\n\n})(window);"
},
dist: {
src: [
"src/util.js",
"src/memory-storage.js",
"src/document.js",
"src/cursor.js",
"src/collection.js",
"src/monguito-db.js",
],
dest: "build/<%= pkg.buildName %>.js"
}
},
jsdoc : {
dist : {
src: [
"src/document.js",
"src/cursor.js",
"src/collection.js",
"src/monguito-db.js"
],
options: {
destination: "doc",
private: false
}
}
},
uglify: {
options: {
banner: "/*! <%= pkg.name %> v<%= pkg.version %> | " +
"<%= grunt.template.today() %> | " +
"(c) <%= pkg.author.name %> | " +
"<%= pkg.license %> license */\n"
},
dist: {
files: {
"build/<%= pkg.buildName %>.min.js": ["<%= concat.dist.dest %>"]
}
}
}
});
grunt.loadNpmTasks("grunt-contrib-jshint");
grunt.loadNpmTasks("grunt-contrib-qunit");
grunt.loadNpmTasks("grunt-contrib-concat");
grunt.loadNpmTasks("grunt-jsdoc");
grunt.loadNpmTasks("grunt-contrib-uglify");
grunt.registerTask("default", [
"jshint:before_concat",
"qunit:before_concat",
"concat",
"jshint:after_concat",
"uglify",
"qunit:after_concat",
"jsdoc"
]);
};