-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGruntfile.js
43 lines (39 loc) · 928 Bytes
/
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
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
concat: {
js: {
src: ['website/src/js/angular/angular.min.js', 'website/src/js/angular/*.js','website/src/js/**/*.js'],
dest: 'website/dist/js/app.js',
},
css: {
src: ['website/src/css/bootstrap/*.css', 'website/src/css/**/*.css'],
dest: 'website/dist/css/main.css',
}
},
watch: {
everything: {
files: ['website/src/js/**/*.js', 'website/src/css/**/*.css'],
tasks: ['concat'],
options: {
spawn: false,
},
}
},
connect: {
server: {
options: {
port: 8000,
hostname: '*',
keepalive: true,
base: './website'
}
}
}
});
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-contrib-connect');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.registerTask('default', ['connect']);
};