forked from eyston/ymusica
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
89 lines (83 loc) · 2.36 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
module.exports = function(grunt) {
vendor_js_files = [
'client/components/jquery/jquery.js',
'client/components/rxjs/rx.js',
'client/components/rxjs/rx.time.js',
'client/components/rxjs/rx.coincidence.js',
'client/components/angular/angular.js',
'client/components/angular-resource/angular-resource.js',
'client/components/bootstrap/docs/assets/js/bootstrap.js',
'client/components/modernizr/modernizr.js'
];
vendor_css_files = [
'client/components/bootstrap/docs/assets/css/bootstrap.css'
];
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
copy: {
vendor: {
files: [{
expand: true,
flatten: true,
src: vendor_js_files,
dest: 'client/dist/js/vendor'
},{
expand: true,
flatten: true,
src: vendor_css_files,
dest: 'client/dist/css/vendor'
}]
},
app: {
files: [{
expand: true,
cwd: 'client',
src: ['src/app.js', 'src/**/*.js'],
dest: 'client/dist/js'
}]
},
index: {
files: { 'client/dist/index.html': 'client/index.html' }
},
css: {
files: { 'client/dist/css/main.css': 'client/css/main.css' }
}
},
uglify: {
options: {
sourceMap: 'client/dist/js/ymusica-map.js',
sourceMappingURL: 'ymusica-map.js',
// sourceMapRoot: '../',
sourceMapPrefix: 1
},
dev: {
files: [{
src: ['client/src/rx/module.js', 'client/src/app.js', 'client/src/**/*.js'],
dest: 'client/dist/js/ymusica.js'
}]
}
},
watch: {
scripts_dev: {
files: ['client/src/app.js', 'client/src/**/*.js'],
tasks: ['uglify:dev', 'copy:app']
},
index: {
files: ['client/index.html'],
tasks: ['copy:index']
},
css: {
files: ['client/css/main.css'],
tasks: ['copy:css']
}
}
});
// Load the plugin that provides the "uglify" task.
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-contrib-watch');
// Default task(s).
grunt.registerTask('build:dev', ['copy:vendor', 'copy:app', 'copy:index', 'copy:css', 'uglify:dev']);
grunt.registerTask('run:dev', ['build:dev', 'watch'])
};