Gruntfile.js 11 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
13

  var fs = require('fs')
14
  var btoa = require('btoa')
15

16
17
18
19
20
  // Project configuration.
  grunt.initConfig({

    // Metadata.
    pkg: grunt.file.readJSON('package.json'),
21
    banner: '/*!\n' +
Zlatan Vasović's avatar
Zlatan Vasović committed
22
              ' * Bootstrap v<%= pkg.version %> (<%= pkg.homepage %>)\n' +
23
              ' * Copyright 2011-<%= grunt.template.today("yyyy") %> <%= pkg.author %>\n' +
Zlatan Vasović's avatar
Zlatan Vasović committed
24
25
              ' * Licensed under <%= _.pluck(pkg.licenses, "type") %> (<%= _.pluck(pkg.licenses, "url") %>)\n' +
              ' */\n',
26
27
28
29
30
31
    bannerDocs: '/*!\n' +
              ' * Bootstrap Docs (<%= pkg.homepage %>)\n' +
              ' * Copyright 2011-<%= 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',
32
    jqueryCheck: 'if (typeof jQuery === "undefined") { throw new Error("Bootstrap requires jQuery") }\n\n',
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50

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

    jshint: {
      options: {
        jshintrc: 'js/.jshintrc'
      },
      gruntfile: {
        src: 'Gruntfile.js'
      },
      src: {
        src: ['js/*.js']
      },
      test: {
        src: ['js/tests/unit/*.js']
51
52
      },
      assets: {
53
        src: ['docs/assets/js/application.js', 'docs/assets/js/customizer.js']
54
55
      }
    },
56

Chris Rebert's avatar
Chris Rebert committed
57
58
59
60
61
62
63
64
65
66
67
68
    jscs: {
      options: {
        config: 'js/.jscs.json',
      },
      gruntfile: {
        src: ['Gruntfile.js']
      },
      src: {
        src: ['js/*.js']
      },
      test: {
        src: ['js/tests/unit/*.js']
69
70
71
      },
      assets: {
        src: ['docs/assets/js/application.js', 'docs/assets/js/customizer.js']
Chris Rebert's avatar
Chris Rebert committed
72
73
74
      }
    },

XhmikosR's avatar
XhmikosR committed
75
76
    csslint: {
      options: {
77
        csslintrc: 'less/.csslintrc'
XhmikosR's avatar
XhmikosR committed
78
      },
79
80
81
      src: [
        'dist/css/bootstrap.css',
        'dist/css/bootstrap-theme.css',
82
        'docs/assets/css/docs.css'
83
      ]
XhmikosR's avatar
XhmikosR committed
84
85
    },

86
87
    concat: {
      options: {
Zlatan Vasović's avatar
Zlatan Vasović committed
88
        banner: '<%= banner %>\n<%= jqueryCheck %>',
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
        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'
      }
    },
109

110
111
    uglify: {
      bootstrap: {
112
113
114
115
        options: {
          banner: '<%= banner %>\n',
          report: 'min'
        },
116
117
        src: ['<%= concat.bootstrap.dest %>'],
        dest: 'dist/js/<%= pkg.name %>.min.js'
XhmikosR's avatar
XhmikosR committed
118
119
      },
      customize: {
120
        options: {
121
          banner: '<%= bannerDocs %>\n',
122
123
          report: 'min'
        },
XhmikosR's avatar
XhmikosR committed
124
        src: [
125
126
127
128
          'docs/assets/js/less.js',
          'docs/assets/js/jszip.js',
          'docs/assets/js/uglify.js',
          'docs/assets/js/filesaver.js',
129
          'docs/assets/js/raw-files.js',
130
          'docs/assets/js/customizer.js'
XhmikosR's avatar
XhmikosR committed
131
        ],
132
        dest: 'docs/assets/js/customize.min.js'
133
134
135
      },
      docsJs: {
        options: {
136
          banner: '<%= bannerDocs %>\n',
137
138
139
140
141
142
143
          report: 'min'
        },
        src: [
          'docs/assets/js/holder.js',
          'docs/assets/js/application.js'
        ],
        dest: 'docs/assets/js/docs.min.js'
144
145
146
      }
    },

147
    less: {
148
149
      compileCore: {
        options: {
150
          strictMath: true,
151
152
153
154
155
156
157
158
159
160
161
          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: {
162
          strictMath: true,
163
164
165
166
167
          sourceMap: true,
          outputSourceFiles: true,
          sourceMapURL: '<%= pkg.name %>-theme.css.map',
          sourceMapFilename: 'dist/css/<%= pkg.name %>-theme.css.map'
        },
168
169
170
        files: {
          'dist/css/<%= pkg.name %>-theme.css': 'less/theme.less'
        }
171
      },
172
173
174
175
176
177
178
179
180
181
      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'
        }
      }
182
183
    },

XhmikosR's avatar
XhmikosR committed
184
185
186
    cssmin: {
      compress: {
        options: {
187
          banner: '<%= bannerDocs %>\n',
XhmikosR's avatar
XhmikosR committed
188
          keepSpecialComments: '*',
189
          noAdvanced: true, // turn advanced optimizations off until it's fixed in clean-css
XhmikosR's avatar
XhmikosR committed
190
191
192
193
194
195
196
197
198
199
200
          report: 'min',
          selectorsMergeMode: 'ie8'
        },
        src: [
          'docs/assets/css/docs.css',
          'docs/assets/css/pygments-manni.css'
        ],
        dest: 'docs/assets/css/pack.min.css'
      }
    },

201
202
    usebanner: {
      dist: {
203
        options: {
204
205
          position: 'top',
          banner: '<%= banner %>'
206
        },
207
        files: {
208
209
          src: [
            'dist/css/<%= pkg.name %>.css',
210
            'dist/css/<%= pkg.name %>.min.css',
211
            'dist/css/<%= pkg.name %>-theme.css',
212
            'dist/css/<%= pkg.name %>-theme.min.css',
213
          ]
214
215
216
217
        }
      }
    },

218
219
    csscomb: {
      sort: {
220
        options: {
221
          config: 'less/.csscomb.json'
222
        },
223
        files: {
224
          'dist/css/<%= pkg.name %>.css': ['dist/css/<%= pkg.name %>.css'],
Zlatan Vasović's avatar
Zlatan Vasović committed
225
          'dist/css/<%= pkg.name %>-theme.css': ['dist/css/<%= pkg.name %>-theme.css']
226
        }
227
228
229
      }
    },

Mark Otto's avatar
Mark Otto committed
230
231
232
    copy: {
      fonts: {
        expand: true,
XhmikosR's avatar
XhmikosR committed
233
        src: ['fonts/*'],
Mark Otto's avatar
Mark Otto committed
234
        dest: 'dist/'
235
      },
Mark Otto's avatar
Mark Otto committed
236
      docs: {
237
        expand: true,
Mark Otto's avatar
Mark Otto committed
238
239
240
        cwd: './dist',
        src: [
          '{css,js}/*.min.*',
Chris Rebert's avatar
Chris Rebert committed
241
          'css/*.map',
Mark Otto's avatar
Mark Otto committed
242
243
244
          'fonts/*'
        ],
        dest: 'docs/dist'
Mark Otto's avatar
Mark Otto committed
245
246
247
      }
    },

248
249
250
251
252
253
    qunit: {
      options: {
        inject: 'js/tests/unit/phantom.js'
      },
      files: ['js/tests/*.html']
    },
254

255
256
257
258
259
    connect: {
      server: {
        options: {
          port: 3000,
          base: '.'
260
        }
261
262
263
      }
    },

264
265
266
267
268
269
    jekyll: {
      docs: {}
    },

    validation: {
      options: {
270
271
        charset: 'utf-8',
        doctype: 'HTML5',
272
        failHard: true,
273
274
        reset: true,
        relaxerror: [
XhmikosR's avatar
XhmikosR committed
275
276
          'Bad value X-UA-Compatible for attribute http-equiv on element meta.',
          'Element img is missing required attribute src.'
277
        ]
278
279
      },
      files: {
XhmikosR's avatar
XhmikosR committed
280
        src: ['_gh_pages/**/*.html']
281
282
283
      }
    },

284
285
286
287
288
289
290
291
292
    watch: {
      src: {
        files: '<%= jshint.src.src %>',
        tasks: ['jshint:src', 'qunit']
      },
      test: {
        files: '<%= jshint.test.src %>',
        tasks: ['jshint:test', 'qunit']
      },
293
      less: {
294
        files: 'less/*.less',
295
        tasks: ['less']
296
      }
297
298
299
300
301
302
303
304
305
306
307
    },

    sed: {
      versionNumber: {
        pattern: (function () {
          var old = grunt.option('oldver')
          return old ? RegExp.quote(old) : old
        })(),
        replacement: grunt.option('newver'),
        recursive: true
      }
308
309
310
311
312
313
314
315
    },

    'saucelabs-qunit': {
      all: {
        options: {
          build: process.env.TRAVIS_JOB_ID,
          concurrency: 3,
          urls: ['http://127.0.0.1:3000/js/tests/index.html'],
316
          browsers: grunt.file.readYAML('test-infra/sauce_browsers.yml')
317
318
        }
      }
319
320
    }
  });
321
322


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

326
  // Docs HTML validation task
327
  grunt.registerTask('validate-html', ['jekyll', 'validation']);
328

329
  // Test task.
330
331
332
  var testSubtasks = [];
  // Skip core tests if running a different subset of the test suite
  if (!process.env.TWBS_TEST || process.env.TWBS_TEST === 'core') {
333
    testSubtasks = testSubtasks.concat(['dist-css', 'csslint', 'jshint', 'jscs', 'qunit']);
334
335
336
337
338
  }
  // 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');
  }
339
  // Only run Sauce Labs tests if there's a Sauce access key
340
341
342
  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')) {
343
344
    testSubtasks.push('connect');
    testSubtasks.push('saucelabs-qunit');
345
346
  }
  grunt.registerTask('test', testSubtasks);
347

348
349
  // JS distribution task.
  grunt.registerTask('dist-js', ['concat', 'uglify']);
350

351
  // CSS distribution task.
XhmikosR's avatar
XhmikosR committed
352
  grunt.registerTask('dist-css', ['less', 'cssmin', 'csscomb', 'usebanner']);
353

Mark Otto's avatar
derp    
Mark Otto committed
354
  // Docs distribution task.
Mark Otto's avatar
Mark Otto committed
355
  grunt.registerTask('dist-docs', ['copy:docs']);
Mark Otto's avatar
Mark Otto committed
356

357
  // Full distribution task.
358
  grunt.registerTask('dist', ['clean', 'dist-css', 'copy:fonts', 'dist-docs', 'dist-js']);
359

360
  // Default task.
361
  grunt.registerTask('default', ['test', 'dist', 'build-glyphicons-data', 'build-customizer']);
362

363
364
365
366
367
  // 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']);

368
369
370
371
372
373
374
375
  grunt.registerTask('build-glyphicons-data', function () {
    // 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]+)/
376
377
    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';
378
379
380
381
382
383
384
385
386
    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
387
    if (!fs.existsSync('docs/_data')) fs.mkdirSync('docs/_data')
388

389
    fs.writeFileSync('docs/_data/glyphicons.yml', glyphiconsData)
390
391
  });

392
393
394
395
396
397
  // task for building customizer
  grunt.registerTask('build-customizer', 'Add scripts/less files to customizer.', function () {
    function getFiles(type) {
      var files = {}
      fs.readdirSync(type)
        .filter(function (path) {
fat's avatar
fat committed
398
          return type == 'fonts' ? true : new RegExp('\\.' + type + '$').test(path)
399
400
        })
        .forEach(function (path) {
401
402
          var fullPath = type + '/' + path
          return files[path] = (type == 'fonts' ? btoa(fs.readFileSync(fullPath)) : fs.readFileSync(fullPath, 'utf8'))
403
404
405
406
        })
      return 'var __' + type + ' = ' + JSON.stringify(files) + '\n'
    }

fat's avatar
fat committed
407
    var files = getFiles('js') + getFiles('less') + getFiles('fonts')
408
    fs.writeFileSync('docs/assets/js/raw-files.js', files)
409
  });
410
};