forked from javve/list.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
105 lines (101 loc) · 2.51 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
module.exports = function(grunt) {
"use strict";
grunt.initConfig({
pkg: require("./package.json"),
watch: {
scripts: {
files: ['src/*.js', 'src/utils/*.js', '*.js', 'test/*.html', 'test/*.js'],
tasks: ['test'],
options: {
spawn: false,
},
},
},
shell: {
build: {
command: 'node_modules/browserify/bin/cmd.js index.js > dist/list.js',
options: {
stderr: true
}
},
duplicate_package: {
command: 'cp package.json docs/_data/package.json'
},
duplicate_list_min: {
command: 'cp dist/list.min.js docs/assets/javascripts/list.min.js'
},
remove: {
command: 'rm -fr node_modules dist'
}
},
jshint: {
code: {
src: ['Gruntfile.js', '*.js', 'src/*.js', 'src/utils/*.js'],
options: {
expr: true,
multistr: false,
globals: {
module: true
}
}
},
tests: {
src: ['test/(*|!mocha).js'],
options: {
expr: true,
multistr: true,
globals: {
jQuery: true,
module: true
}
}
}
},
uglify: {
target: {
files: {
'dist/list.min.js': ['dist/list.js']
}
}
},
file_append: {
default_options: {
files: [
{
prepend: "// List.js v<%= pkg.version %> (<%= pkg.homepage %>) by <%= pkg.author.name %> (<%= pkg.author.url %>)\n",
input: 'dist/list.min.js'
},
{
prepend: "// List.js v<%= pkg.version %> (<%= pkg.homepage %>) by <%= pkg.author.name %> (<%= pkg.author.url %>)\n",
input: 'dist/list.js'
}
]
}
},
mocha: {
test: {
src: [ 'test/index.html' ],
options: {
run: true,
timeout: 10000,
bail: false,
log: true,
logErrors: true,
reporter: 'Nyan'
}
}
}
});
grunt.loadNpmTasks("grunt-contrib-watch");
grunt.loadNpmTasks('grunt-shell');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-mocha');
grunt.loadNpmTasks('grunt-file-append');
grunt.registerTask('mkdir', function() { grunt.file.mkdir("dist"); });
grunt.registerTask('default', ['jshint:code', 'jshint:tests', 'mkdir', 'shell:build']);
grunt.registerTask('dist', ['default', 'mkdir', 'shell:build', 'uglify', 'file_append', 'shell:duplicate_package', 'shell:duplicate_list_min']);
grunt.registerTask('clean', ['shell:remove']);
grunt.registerTask('test', ['dist', 'mocha']);
return grunt;
};