This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 47
/
Gruntfile.coffee
77 lines (68 loc) · 1.87 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
module.exports = (grunt) ->
grunt.initConfig
pkg: grunt.file.readJSON('package.json')
coffee:
glob_to_multiple:
expand: true
cwd: 'src'
src: ['*.coffee']
dest: 'lib'
ext: '.js'
coffeelint:
options:
no_empty_param_list:
level: 'error'
max_line_length:
level: 'ignore'
src: ['src/**/*.coffee']
test: ['spec/**/*.coffee']
gruntfile: ['Gruntfile.coffee']
cpplint:
files: ['src/**/*.cc']
reporter: 'spec'
verbosity: 1
filters:
build:
include: false
legal:
copyright: false
readability:
braces: false
runtime:
references: false
sizeof: false
whitespace:
line_length: false
shell:
rebuild:
command: 'npm build .'
options:
stdout: true
stderr: true
failOnError: true
test:
command: 'node node_modules/jasmine-tagged/bin/jasmine-tagged --captureExceptions --coffee spec/'
options:
stdout: true
stderr: true
failOnError: true
'update-atomdoc':
command: 'npm update grunt-atomdoc'
options:
stdout: true
stderr: true
failOnError: true
grunt.loadNpmTasks('grunt-contrib-coffee')
grunt.loadNpmTasks('grunt-shell')
grunt.loadNpmTasks('grunt-coffeelint')
grunt.loadNpmTasks('node-cpplint')
grunt.loadNpmTasks('grunt-atomdoc')
grunt.registerTask('lint', ['coffeelint', 'cpplint'])
grunt.registerTask('default', ['coffee', 'lint', 'shell:rebuild'])
grunt.registerTask('test', ['default', 'shell:test'])
grunt.registerTask('prepublish', ['coffee', 'lint', 'shell:update-atomdoc', 'atomdoc'])
grunt.registerTask 'clean', ->
rm = require('rimraf').sync
rm 'build'
rm 'lib'
rm 'api.json'