-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gruntfile.js
80 lines (73 loc) · 1.89 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
module.exports = function(grunt) {
require("load-grunt-tasks")(grunt);
// Project configuration.
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
jshint: {
chromeextension: ['src/chrome-extension/background.js', 'src/fillForms.js'],
options: {
jshintrc: ".jshintrc"
}
},
clean: ['dist/**'],
copy: {
build: {
files: [
{src: 'bower_components/momentjs/min/moment.min.js', dest: 'src/scripts/moment.min.js'},
{src: 'node_modules/chance/chance.js', dest: 'src/scripts/chance.js'},
{src: 'bower_components/angular/angular.min.js', dest: 'src/options/angular.min.js'},
{src: 'bower_components/bootstrap/dist/css/bootstrap.min.css', dest: 'src/options/bootstrap.min.css'},
{src: 'bower_components/font-awesome/css/font-awesome.min.css', dest: 'src/options/font-awesome.min.css'}
]
},
release: {
files:[
{cwd: 'src', src: '**', dest: 'dist/', expand: true},
]
},
},
uglify: {
build: {
files: {
'dist/scripts/fillForms.min.js': ['dist/scripts/fillForms.js']
}
},
options: {
mangle: false,
banner: "javascript:"
}
},
// chromeManifest: {
// dist: {
// options: {
// buildnumber: 'both',
// background: {
// target: "scripts/*.js"
// }
// },
// src: 'src',
// dest: 'dist'
// }
// },
compress: {
dist: {
options: {
archive: 'compressed/archive.zip'
},
expand: true,
cwd: 'dist',
src: ['**/*'],
dest: ''
}
}
});
grunt.registerTask('build', [
'clean',
'copy:build',
'copy:release',
'uglify:build'
]);
grunt.registerTask('release', [
//'chromeManifest:dist',
'compress:dist']);
};