Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2015-05-16 10:47:19 +0300
committerXhmikosR <xhmikosr@gmail.com>2015-05-16 12:57:27 +0300
commitc56032a0e5810acbc002b45b5b900dacafa32483 (patch)
treef8b472c3dda1ae6dd73f9fb84a0822abe2cdf023 /Gruntfile.js
parent9e395712a50f2d9fd9b21b01c8395354e7a08ae8 (diff)
Remove grunt-banner completely.
Add a license header in theme instead.
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js12
1 files changed, 1 insertions, 11 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 32cc83fdfa..5bd74604e7 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -250,16 +250,6 @@ module.exports = function (grunt) {
}
},
- usebanner: {
- options: {
- position: 'top',
- banner: '<%= banner %>'
- },
- files: {
- src: 'dist/css/*.css'
- }
- },
-
csscomb: {
options: {
config: 'less/.csscomb.json'
@@ -485,7 +475,7 @@ module.exports = function (grunt) {
// CSS distribution task.
grunt.registerTask('less-compile', ['less:compileCore', 'less:compileTheme']);
- grunt.registerTask('dist-css', ['less-compile', 'autoprefixer:core', 'autoprefixer:theme', 'usebanner', 'csscomb:dist', 'cssmin:minifyCore', 'cssmin:minifyTheme']);
+ grunt.registerTask('dist-css', ['less-compile', 'autoprefixer:core', 'autoprefixer:theme', 'csscomb:dist', 'cssmin:minifyCore', 'cssmin:minifyTheme']);
// Full distribution task.
grunt.registerTask('dist', ['clean:dist', 'dist-css', 'copy:fonts', 'dist-js']);