Gruntfile.js 9.86 KB
Newer Older
1
/* jshint node: true */
2

Chris Rebert's avatar
Chris Rebert committed
3
module.exports = function (grunt) {
XhmikosR's avatar
XhmikosR committed
4
  'use strict';
5

6
7
8
  // Force use of Unix newlines
  grunt.util.linefeed = '\n';

Zlatan Vasović's avatar
Zlatan Vasović committed
9
10
11
  RegExp.quote = function (string) {
    return string.replace(/[-\\^$*+?.()|[\]{}]/g, '\\$&')
  }
12
  var btoa = require('btoa')
13
14
15
16
17
  // Project configuration.
  grunt.initConfig({

    // Metadata.
    pkg: grunt.file.readJSON('package.json'),
18
    banner: '/*!\n' +
Zlatan Vasović's avatar
Zlatan Vasović committed
19
              ' * Bootstrap v<%= pkg.version %> (<%= pkg.homepage %>)\n' +
20
              ' * Copyright <%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' +
Zlatan Vasović's avatar
Zlatan Vasović committed
21
22
              ' * Licensed under <%= _.pluck(pkg.licenses, "type") %> (<%= _.pluck(pkg.licenses, "url") %>)\n' +
              ' */\n',
23
    jqueryCheck: 'if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery") }\n\n',
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41

    // Task configuration.
    clean: {
      dist: ['dist']
    },

    jshint: {
      options: {
        jshintrc: 'js/.jshintrc'
      },
      gruntfile: {
        src: 'Gruntfile.js'
      },
      src: {
        src: ['js/*.js']
      },
      test: {
        src: ['js/tests/unit/*.js']
42
43
44
      },
      assets: {
        src: ['docs-assets/js/application.js', 'docs-assets/js/customizer.js']
45
46
      }
    },
47

Chris Rebert's avatar
Chris Rebert committed
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
    jscs: {
      options: {
        config: 'js/.jscs.json',
      },
      gruntfile: {
        src: ['Gruntfile.js']
      },
      src: {
        src: ['js/*.js']
      },
      test: {
        src: ['js/tests/unit/*.js']
      }
    },

XhmikosR's avatar
XhmikosR committed
63
64
65
66
    csslint: {
      options: {
        csslintrc: '.csslintrc'
      },
67
68
69
70
71
      src: [
        'dist/css/bootstrap.css',
        'dist/css/bootstrap-theme.css',
        'docs-assets/css/docs.css'
      ]
XhmikosR's avatar
XhmikosR committed
72
73
    },

74
75
    concat: {
      options: {
Zlatan Vasović's avatar
Zlatan Vasović committed
76
        banner: '<%= banner %>\n<%= jqueryCheck %>',
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
        stripBanners: false
      },
      bootstrap: {
        src: [
          'js/transition.js',
          'js/alert.js',
          'js/button.js',
          'js/carousel.js',
          'js/collapse.js',
          'js/dropdown.js',
          'js/modal.js',
          'js/tooltip.js',
          'js/popover.js',
          'js/scrollspy.js',
          'js/tab.js',
          'js/affix.js'
        ],
        dest: 'dist/js/<%= pkg.name %>.js'
      }
    },
97

98
99
    uglify: {
      bootstrap: {
100
101
102
103
        options: {
          banner: '<%= banner %>\n',
          report: 'min'
        },
104
105
        src: ['<%= concat.bootstrap.dest %>'],
        dest: 'dist/js/<%= pkg.name %>.min.js'
XhmikosR's avatar
XhmikosR committed
106
107
      },
      customize: {
108
109
110
111
112
113
114
115
116
        options: {
          banner: '/*!\n' +
          ' * Bootstrap Docs (<%= pkg.homepage %>)\n' +
          ' * Copyright <%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' +
          ' * Licensed under the Creative Commons Attribution 3.0 Unported License. For\n' +
          ' * details, see http://creativecommons.org/licenses/by/3.0/.\n' +
          ' */\n',
          report: 'min'
        },
XhmikosR's avatar
XhmikosR committed
117
118
119
120
121
122
123
124
        src: [
          'docs-assets/js/less.js',
          'docs-assets/js/jszip.js',
          'docs-assets/js/uglify.js',
          'docs-assets/js/filesaver.js',
          'docs-assets/js/customizer.js'
        ],
        dest: 'docs-assets/js/customize.js'
125
126
127
      }
    },

128
    less: {
129
130
      compileCore: {
        options: {
131
          strictMath: true,
132
133
134
135
136
137
138
139
140
141
142
          sourceMap: true,
          outputSourceFiles: true,
          sourceMapURL: '<%= pkg.name %>.css.map',
          sourceMapFilename: 'dist/css/<%= pkg.name %>.css.map'
        },
        files: {
          'dist/css/<%= pkg.name %>.css': 'less/bootstrap.less'
        }
      },
      compileTheme: {
        options: {
143
          strictMath: true,
144
145
146
147
148
          sourceMap: true,
          outputSourceFiles: true,
          sourceMapURL: '<%= pkg.name %>-theme.css.map',
          sourceMapFilename: 'dist/css/<%= pkg.name %>-theme.css.map'
        },
149
150
151
        files: {
          'dist/css/<%= pkg.name %>-theme.css': 'less/theme.less'
        }
152
      },
153
154
155
156
157
158
159
160
161
162
      minify: {
        options: {
          cleancss: true,
          report: 'min'
        },
        files: {
          'dist/css/<%= pkg.name %>.min.css': 'dist/css/<%= pkg.name %>.css',
          'dist/css/<%= pkg.name %>-theme.min.css': 'dist/css/<%= pkg.name %>-theme.css'
        }
      }
163
164
165
166
    },

    usebanner: {
      dist: {
167
        options: {
168
169
          position: 'top',
          banner: '<%= banner %>'
170
        },
171
        files: {
172
173
          src: [
            'dist/css/<%= pkg.name %>.css',
174
            'dist/css/<%= pkg.name %>.min.css',
175
            'dist/css/<%= pkg.name %>-theme.css',
176
            'dist/css/<%= pkg.name %>-theme.min.css',
177
          ]
178
179
180
181
        }
      }
    },

182
183
    csscomb: {
      sort: {
184
        options: {
185
          sortOrder: '.csscomb.json'
186
        },
187
        files: {
188
189
          'dist/css/<%= pkg.name %>.css': ['dist/css/<%= pkg.name %>.css'],
          'dist/css/<%= pkg.name %>-theme.css': ['dist/css/<%= pkg.name %>-theme.css'],
190
        }
191
192
193
      }
    },

Mark Otto's avatar
Mark Otto committed
194
195
196
    copy: {
      fonts: {
        expand: true,
XhmikosR's avatar
XhmikosR committed
197
        src: ['fonts/*'],
Mark Otto's avatar
Mark Otto committed
198
199
200
201
        dest: 'dist/'
      }
    },

202
203
204
205
206
207
    qunit: {
      options: {
        inject: 'js/tests/unit/phantom.js'
      },
      files: ['js/tests/*.html']
    },
208

209
210
211
212
213
    connect: {
      server: {
        options: {
          port: 3000,
          base: '.'
214
        }
215
216
217
      }
    },

218
219
220
221
222
223
    jekyll: {
      docs: {}
    },

    validation: {
      options: {
224
225
        charset: 'utf-8',
        doctype: 'HTML5',
226
        failHard: true,
227
228
        reset: true,
        relaxerror: [
XhmikosR's avatar
XhmikosR committed
229
230
          'Bad value X-UA-Compatible for attribute http-equiv on element meta.',
          'Element img is missing required attribute src.'
231
        ]
232
233
      },
      files: {
XhmikosR's avatar
XhmikosR committed
234
        src: ['_gh_pages/**/*.html']
235
236
237
      }
    },

238
239
240
241
242
243
244
245
246
    watch: {
      src: {
        files: '<%= jshint.src.src %>',
        tasks: ['jshint:src', 'qunit']
      },
      test: {
        files: '<%= jshint.test.src %>',
        tasks: ['jshint:test', 'qunit']
      },
247
      less: {
248
        files: 'less/*.less',
249
        tasks: ['less']
250
      }
251
252
253
254
255
256
257
258
259
260
261
    },

    sed: {
      versionNumber: {
        pattern: (function () {
          var old = grunt.option('oldver')
          return old ? RegExp.quote(old) : old
        })(),
        replacement: grunt.option('newver'),
        recursive: true
      }
262
263
264
265
266
267
268
269
    },

    'saucelabs-qunit': {
      all: {
        options: {
          build: process.env.TRAVIS_JOB_ID,
          concurrency: 3,
          urls: ['http://127.0.0.1:3000/js/tests/index.html'],
270
          browsers: grunt.file.readYAML('sauce_browsers.yml')
271
272
        }
      }
273
274
    }
  });
275
276


277
  // These plugins provide necessary tasks.
Tobias Lindig's avatar
Tobias Lindig committed
278
  require('load-grunt-tasks')(grunt, {scope: 'devDependencies'});
279

280
  // Docs HTML validation task
281
  grunt.registerTask('validate-html', ['jekyll', 'validation']);
282

283
  // Test task.
284
285
286
287
288
289
290
291
292
  var testSubtasks = [];
  // Skip core tests if running a different subset of the test suite
  if (!process.env.TWBS_TEST || process.env.TWBS_TEST === 'core') {
    testSubtasks = testSubtasks.concat(['dist-css', 'jshint', 'jscs', 'qunit']);
  }
  // Skip HTML validation if running a different subset of the test suite
  if (!process.env.TWBS_TEST || process.env.TWBS_TEST === 'validate-html') {
    testSubtasks.push('validate-html');
  }
293
  // Only run Sauce Labs tests if there's a Sauce access key
294
295
296
  if (typeof process.env.SAUCE_ACCESS_KEY !== 'undefined'
      // Skip Sauce if running a different subset of the test suite
      && (!process.env.TWBS_TEST || process.env.TWBS_TEST === 'sauce-js-unit')) {
297
298
    testSubtasks.push('connect');
    testSubtasks.push('saucelabs-qunit');
299
300
  }
  grunt.registerTask('test', testSubtasks);
301

302
303
  // JS distribution task.
  grunt.registerTask('dist-js', ['concat', 'uglify']);
304

305
  // CSS distribution task.
306
  grunt.registerTask('dist-css', ['less', 'csscomb', 'usebanner']);
307

Mark Otto's avatar
Mark Otto committed
308
309
310
  // Fonts distribution task.
  grunt.registerTask('dist-fonts', ['copy']);

311
  // Full distribution task.
Mark Otto's avatar
Mark Otto committed
312
  grunt.registerTask('dist', ['clean', 'dist-css', 'dist-fonts', 'dist-js']);
313

314
  // Default task.
315
  grunt.registerTask('default', ['test', 'dist', 'build-glyphicons-data', 'build-customizer']);
316

317
318
319
320
321
  // Version numbering task.
  // grunt change-version-number --oldver=A.B.C --newver=X.Y.Z
  // This can be overzealous, so its changes should always be manually reviewed!
  grunt.registerTask('change-version-number', ['sed']);

322
323
324
325
326
327
328
329
330
331
  grunt.registerTask('build-glyphicons-data', function () {
    var fs = require('fs')

    // Pass encoding, utf8, so `readFileSync` will return a string instead of a
    // buffer
    var glyphiconsFile = fs.readFileSync('less/glyphicons.less', 'utf8')
    var glpyhiconsLines = glyphiconsFile.split('\n')

    // Use any line that starts with ".glyphicon-" and capture the class name
    var iconClassName = /^\.(glyphicon-[^\s]+)/
332
333
    var glyphiconsData = '# This file is generated via Grunt task. **Do not edit directly.** \n' +
                         '# See the \'build-glyphicons-data\' task in Gruntfile.js.\n\n';
334
335
336
337
338
339
340
341
342
343
344
345
346
347
    for (var i = 0, len = glpyhiconsLines.length; i < len; i++) {
      var match = glpyhiconsLines[i].match(iconClassName)

      if (match != null) {
        glyphiconsData += '- ' + match[1] + '\n'
      }
    }

    // Create the `_data` directory if it doesn't already exist
    if (!fs.existsSync('_data')) fs.mkdirSync('_data')

    fs.writeFileSync('_data/glyphicons.yml', glyphiconsData)
  });

348
349
350
351
352
353
354
355
  // task for building customizer
  grunt.registerTask('build-customizer', 'Add scripts/less files to customizer.', function () {
    var fs = require('fs')

    function getFiles(type) {
      var files = {}
      fs.readdirSync(type)
        .filter(function (path) {
fat's avatar
fat committed
356
          return type == 'fonts' ? true : new RegExp('\\.' + type + '$').test(path)
357
358
        })
        .forEach(function (path) {
359
360
          var fullPath = type + '/' + path
          return files[path] = (type == 'fonts' ? btoa(fs.readFileSync(fullPath)) : fs.readFileSync(fullPath, 'utf8'))
361
362
363
364
        })
      return 'var __' + type + ' = ' + JSON.stringify(files) + '\n'
    }

fat's avatar
fat committed
365
    var files = getFiles('js') + getFiles('less') + getFiles('fonts')
366
    fs.writeFileSync('docs-assets/js/raw-files.js', files)
367
  });
368
};