-
Notifications
You must be signed in to change notification settings - Fork 0
/
gruntfile.js
89 lines (84 loc) · 1.69 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
// Gruntfile.js
module.exports = grunt => {
// Load all grunt tasks matching the ['grunt-*', '@*/grunt-*'] patterns
require('load-grunt-tasks')(grunt);
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
dirs: {
dest: 'dest',
css: "css",
scss: "scss",
js: "js"
},
// minify / uglify js
uglify: {
my_target: {
files: {
'<%= dirs.dest %>/jsmain.min.js': ['<%= dirs.js %>/libs/*.js']
}
}
},
cssmin: {
options: {
keepSpecialComments: 0
},
my_target: {
files: [{
'<%= dirs.dest %>/stylelibs.min.css': ['<%= dirs.css %>/**/*.css']
}]
}
},
sass: {
dist: {
options: {
style: 'compressed',
sourcemap: false,
lineNumbers: false
},
files: {
'<%= dirs.dest %>/style.min.css': '<%= dirs.scss %>/style.scss'
}
}
},
watch: {
options: {
livereload: true,
spawn: false
},
sass: {
files: "<%= dirs.scss %>/**/**/*.scss",
tasks: ['sass']
},
// cssmin: {
// files: "<%= dirs.css %>/**/*.css",
// tasks: ['cssmin']
// },
// uglify: {
// files: ['<%= dirs.js %>/*.js'],
// tasks: ['uglify']
// },
},
browserSync: {
dev: {
bsFiles: {
src: [
'<%= dirs.dest %>/style.min.css',
'*.html',
'<%= dirs.css %>/*.css',
'<%= dirs.dest %>/*.js',
]
},
options: {
watchTask: true,
server: './'
},
}
}
});
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-cssmin');
grunt.loadNpmTasks('grunt-contrib-sass');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-browser-sync');
grunt.registerTask('default', ['browserSync', 'watch']);
};