forked from sroze/ngInfiniteScroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.coffee
63 lines (61 loc) · 1.69 KB
/
Gruntfile.coffee
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
module.exports = (grunt) ->
grunt.loadNpmTasks 'grunt-coffeelint'
grunt.loadNpmTasks 'grunt-contrib-clean'
grunt.loadNpmTasks 'grunt-contrib-coffee'
grunt.loadNpmTasks 'grunt-contrib-concat'
grunt.loadNpmTasks 'grunt-contrib-uglify'
grunt.loadNpmTasks 'grunt-testacular'
grunt.initConfig
pkg: grunt.file.readJSON 'package.json'
meta:
banner: '/* <%= pkg.name %> - v<%= pkg.version %> - <%= grunt.template.today("yyyy-mm-dd") %> */\n'
coffeelint:
src: 'src/**/*.coffee'
options:
max_line_length:
level: 'ignore'
line_endings:
value: 'unix'
level: 'error'
no_stand_alone_at:
level: 'error'
clean:
options:
force: true
build: ["compile/**", "build/**"]
coffee:
compile:
files: [
{
expand: true
cwd: 'src/'
src: '**/*.coffee'
dest: 'compile/'
ext: '.js'
}
],
options:
bare: true
concat:
options:
banner: '<%= meta.banner %>'
dist:
src: 'compile/**/*.js'
dest: 'build/ng-infinite-scroll.js'
uglify:
options:
banner: '<%= meta.banner %>'
dist:
src: ['build/ng-infinite-scroll.js']
dest: 'build/ng-infinite-scroll.min.js'
testacular:
unit:
options:
configFile: 'test/testacular.conf.js'
autoWatch: true
browsers: ['Chrome', 'PhantomJS']
reporters: ['dots']
runnerPort: 9101
keepalive: true
grunt.registerTask 'default', ['coffeelint', 'clean', 'coffee', 'concat', 'uglify']
grunt.registerTask 'test', ['testacular']