-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
94 lines (89 loc) · 2.7 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
module.exports = function(grunt) {
var pkg = grunt.file.readJSON("package.json");
// Project configuration.
grunt.initConfig({
// Metadata.
pkg: pkg,
banner: grunt.file.read("./src/copy.js")
.replace(/@VERSION/, pkg.version)
.replace(/@DATE/, grunt.template.today("yyyy-mm-dd")) + "\n",
// Task configuration.
uglify: {
options: {
banner: "<%= banner %>",
report: "min"
},
dist: {
src: "dist/fingerings.js",
dest: "dist/fingerings.min.js"
},
full: {
src: "dist/fingerings.full.js",
dest: "dist/fingerings.full.min.js"
}
},
concat: {
options: {
banner: "<%= banner %>"
},
dist: {
dest: "./dist/fingerings.js",
src: [
"./src/banner.js",
"./src/fingerings/*.js",
"./src/sax/*.js",
"./src/footer.js"
]
},
full: {
dest: "./dist/fingerings.full.js",
src: [
"./node_modules/raphael/raphael.js",
"./node_modules/teoria/dist/teoria.js",
"./src/banner.js",
"./src/fingerings/*.js",
"./src/sax/*.js",
"./src/footer.js"
]
}
},
jshint: {
files: ["src/**/*.js", "!src/*.js"],
options: {
globals: {
jQuery: true
}
}
},
watch: {
scripts: {
files: ["src/**/*.js", "examples/**/*.js"],
tasks: ["build"],
options: {
spawn: false,
reload: true,
livereload: true
},
},
},
connect: {
server: {
options: {
port: 8080,
base: "./",
open: {
target: 'http://localhost:8080/examples/index.html'
}
}
}
}
});
grunt.loadNpmTasks("grunt-contrib-concat");
grunt.loadNpmTasks("grunt-contrib-uglify");
grunt.loadNpmTasks("grunt-contrib-watch");
grunt.loadNpmTasks("grunt-contrib-connect");
grunt.loadNpmTasks("grunt-contrib-jshint");
grunt.registerTask("build", ["jshint", "concat", "uglify"]);
grunt.registerTask("dev", ["build", "connect", "watch"]);
grunt.registerTask("default", ["dev"]);
};