-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathGruntfile.js
66 lines (63 loc) · 1.26 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
module.exports = function (grunt) {
const sass = require('node-sass');
require('load-grunt-tasks')(grunt);
grunt.initConfig({
sass: {
options: {
implementation: sass,
outputStyle: 'expanded',
indentType: 'tab',
sourceMap: false
},
build: {
files: {
'dist/content_scripts/inject.css': 'src/styles/inject.scss'
}
}
},
clean: {
'build' : ['dist/', 'memefy-this.zip'],
'dev' : ['dist/']
},
copy: {
'files': {
expand: true,
cwd: 'src',
src: ['**/**', '!styles/**'],
dest: 'dist/'
}
},
zip: {
'using-cwd': {
cwd: 'dist/',
src: ['dist/**'],
dest: 'memefy-this.zip'
}
},
uglify: {
'js': {
expand: true,
cwd: 'dist',
src: ['**/*.js'],
dest: 'dist/'
}
},
watch: {
'src': {
files: ['src/**'],
tasks: ['copy']
},
'sass': {
files: ['src/styles/**'],
tasks: ['sass']
}
}
});
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-copy');
grunt.loadNpmTasks('grunt-zip');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.registerTask('build', ['clean:build', 'sass', 'copy', 'uglify', 'zip']);
grunt.registerTask('dev', ['clean:dev', 'sass', 'copy', 'watch']);
};