From 46f9d27142ed81cfbcc0dc7806829756357a7505 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Tue, 4 Feb 2014 13:18:54 -0800 Subject: [PATCH] reorganize all grunt tasks into one directory also fixes #12581 --- Gruntfile.js | 8 ++++---- {docs/grunt => grunt}/bs-glyphicons-data-generator.js | 0 {docs/grunt => grunt}/bs-lessdoc-parser.js | 0 {docs/grunt => grunt}/bs-raw-files-generator.js | 0 {test-infra => grunt}/shrinkwrap.js | 0 5 files changed, 4 insertions(+), 4 deletions(-) rename {docs/grunt => grunt}/bs-glyphicons-data-generator.js (100%) rename {docs/grunt => grunt}/bs-lessdoc-parser.js (100%) rename {docs/grunt => grunt}/bs-raw-files-generator.js (100%) rename {test-infra => grunt}/shrinkwrap.js (100%) diff --git a/Gruntfile.js b/Gruntfile.js index 55c4e46de4..acef4100a5 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -17,10 +17,10 @@ module.exports = function (grunt) { var fs = require('fs'); var path = require('path'); - var generateGlyphiconsData = require('./docs/grunt/bs-glyphicons-data-generator.js'); - var BsLessdocParser = require('./docs/grunt/bs-lessdoc-parser.js'); - var generateRawFilesJs = require('./docs/grunt/bs-raw-files-generator.js'); - var updateShrinkwrap = require('./test-infra/shrinkwrap.js'); + var generateGlyphiconsData = require('./grunt/bs-glyphicons-data-generator.js'); + var BsLessdocParser = require('./grunt/bs-lessdoc-parser.js'); + var generateRawFilesJs = require('./grunt/bs-raw-files-generator.js'); + var updateShrinkwrap = require('./grunt/shrinkwrap.js'); // Project configuration. grunt.initConfig({ diff --git a/docs/grunt/bs-glyphicons-data-generator.js b/grunt/bs-glyphicons-data-generator.js similarity index 100% rename from docs/grunt/bs-glyphicons-data-generator.js rename to grunt/bs-glyphicons-data-generator.js diff --git a/docs/grunt/bs-lessdoc-parser.js b/grunt/bs-lessdoc-parser.js similarity index 100% rename from docs/grunt/bs-lessdoc-parser.js rename to grunt/bs-lessdoc-parser.js diff --git a/docs/grunt/bs-raw-files-generator.js b/grunt/bs-raw-files-generator.js similarity index 100% rename from docs/grunt/bs-raw-files-generator.js rename to grunt/bs-raw-files-generator.js diff --git a/test-infra/shrinkwrap.js b/grunt/shrinkwrap.js similarity index 100% rename from test-infra/shrinkwrap.js rename to grunt/shrinkwrap.js