Commit 8a1f4426 authored by Chris Rebert's avatar Chris Rebert
Browse files

Merge pull request #12317 from twbs/grunt-task-license

clarify Grunt task licensing
parents 5cc3c62e 6b8d4e9c
No related merge requests found
Showing with 24 additions and 0 deletions
+24 -0
/* jshint node: true */ /* jshint node: true */
/*!
* Bootstrap's Gruntfile
* http://getbootstrap.com
* Copyright 2013-2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
module.exports = function (grunt) { module.exports = function (grunt) {
'use strict'; 'use strict';
......
/* jshint node: true */ /* jshint node: true */
/*!
* Bootstrap Grunt task for Glyphicons data generation
* http://getbootstrap.com
* Copyright 2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
var fs = require('fs') var fs = require('fs')
......
/* jshint node: true */ /* jshint node: true */
/*!
* Bootstrap Grunt task for parsing Less docstrings
* http://getbootstrap.com
* Copyright 2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
var markdown = require('markdown').markdown; var markdown = require('markdown').markdown;
......
/* jshint node: true */ /* jshint node: true */
/*!
* Bootstrap Grunt task for generating raw-files.min.js for the Customizer
* http://getbootstrap.com
* Copyright 2014 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
*/
var btoa = require('btoa') // jshint ignore:line var btoa = require('btoa') // jshint ignore:line
var fs = require('fs') var fs = require('fs')
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment