aboutsummaryrefslogtreecommitdiffstats
path: root/web/nms-public.gathering.org/old/speedometer/c3-master/Gruntfile.coffee
blob: 750bbc76b8411798cc3553c634859b8d33741a47 (plain)
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
106
107
108
109
110
111
112
113
module.exports = (grunt) ->
    require('load-grunt-tasks') grunt, pattern: ['grunt-contrib-*', 'grunt-sass']

    grunt.initConfig
        watch:
          concat:
            tasks: 'concat'
            files: ['src/*.js']
          sass:
            tasks: 'sass'
            files: ['src/scss/*.scss']

        concat:
          dist:
            options:
              process: (src, filepath) ->
                if filepath != 'src/head.js' && filepath != 'src/tail.js'
                  lines = []
                  src.split('\n').forEach (line) ->
                    lines.push( (if line.length > 0 then '    ' else '') + line)
                  src = lines.join('\n')
                return src
            src: [
              'src/head.js',
              'src/core.js',
              'src/config.js',
              'src/scale.js',
              'src/domain.js',
              'src/data.js',
              'src/data.convert.js',
              'src/data.load.js',
              'src/category.js',
              'src/interaction.js',
              'src/size.js',
              'src/shape.js',
              'src/shape.line.js',
              'src/shape.bar.js',
              'src/text.js',
              'src/type.js',
              'src/grid.js',
              'src/tooltip.js',
              'src/legend.js',
              'src/axis.js',
              'src/clip.js',
              'src/arc.js',
              'src/region.js',
              'src/drag.js',
              'src/selection.js',
              'src/subchart.js',
              'src/zoom.js',
              'src/color.js',
              'src/format.js',
              'src/cache.js',
              'src/class.js',
              'src/util.js',
              'src/api.focus.js',
              'src/api.show.js',
              'src/api.zoom.js',
              'src/api.load.js',
              'src/api.flow.js',
              'src/api.selection.js',
              'src/api.transform.js',
              'src/api.group.js',
              'src/api.grid.js',
              'src/api.region.js',
              'src/api.data.js',
              'src/api.category.js',
              'src/api.color.js',
              'src/api.x.js',
              'src/api.axis.js',
              'src/api.legend.js',
              'src/api.chart.js',
              'src/api.tooltip.js',
              'src/c3.axis.js',
              'src/ua.js',
              'src/polyfill.js',
              'src/tail.js'
            ]
            dest: 'c3.js'

        jshint:
          c3: 'c3.js'
          spec: 'spec/*.js'
          options:
            jshintrc: '.jshintrc'

        jasmine:
          c3:
            src: 'c3.js'
            options:
              specs: 'spec/*-spec.js'
              helpers: 'spec/*-helper.js'
              styles: 'c3.css'
              vendor: 'https://raw.githubusercontent.com/mbostock/d3/v3.5.0/d3.min.js'

        uglify:
          c3:
            files:
              'c3.min.js': 'c3.js'

        cssmin:
          c3:
            src: 'c3.css'
            dest: 'c3.min.css'

        sass:
          options:
            sourcemap: 'none'
          c3:
            files:
              'c3.css': 'src/scss/main.scss'

    grunt.registerTask 'default', ['concat', 'jshint', 'jasmine', 'sass', 'cssmin', 'uglify']