From 97df6065b1863742524746950c3ee79413479719 Mon Sep 17 00:00:00 2001 From: Abdullah Almsaeed Date: Sat, 2 Jul 2016 10:32:18 -0400 Subject: [PATCH] Move grunt-tasks to the build folder --- Gruntfile.js | 2 +- {grunt-tasks => build/grunt-tasks}/babel.js | 0 {grunt-tasks => build/grunt-tasks}/bootlint.js | 0 {grunt-tasks => build/grunt-tasks}/clean.js | 0 {grunt-tasks => build/grunt-tasks}/concat.js | 0 {grunt-tasks => build/grunt-tasks}/csslint.js | 0 {grunt-tasks => build/grunt-tasks}/eslint.js | 0 {grunt-tasks => build/grunt-tasks}/image.js | 0 {grunt-tasks => build/grunt-tasks}/includes.js | 0 {grunt-tasks => build/grunt-tasks}/jscs.js | 0 {grunt-tasks => build/grunt-tasks}/jshint.js | 0 {grunt-tasks => build/grunt-tasks}/sass.js | 0 {grunt-tasks => build/grunt-tasks}/uglify.js | 0 {grunt-tasks => build/grunt-tasks}/watch.js | 0 14 files changed, 1 insertion(+), 1 deletion(-) rename {grunt-tasks => build/grunt-tasks}/babel.js (100%) rename {grunt-tasks => build/grunt-tasks}/bootlint.js (100%) rename {grunt-tasks => build/grunt-tasks}/clean.js (100%) rename {grunt-tasks => build/grunt-tasks}/concat.js (100%) rename {grunt-tasks => build/grunt-tasks}/csslint.js (100%) rename {grunt-tasks => build/grunt-tasks}/eslint.js (100%) rename {grunt-tasks => build/grunt-tasks}/image.js (100%) rename {grunt-tasks => build/grunt-tasks}/includes.js (100%) rename {grunt-tasks => build/grunt-tasks}/jscs.js (100%) rename {grunt-tasks => build/grunt-tasks}/jshint.js (100%) rename {grunt-tasks => build/grunt-tasks}/sass.js (100%) rename {grunt-tasks => build/grunt-tasks}/uglify.js (100%) rename {grunt-tasks => build/grunt-tasks}/watch.js (100%) diff --git a/Gruntfile.js b/Gruntfile.js index 34c5c1717..3e75be12a 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -5,7 +5,7 @@ module.exports = function (grunt) { 'use strict'; //loading the configurations and grunt tasks var configs = require('load-grunt-config')(grunt,{ - configPath: __dirname + '/grunt-tasks', + configPath: __dirname + '/build/grunt-tasks', data:{ // Metadata. pkg: grunt.file.readJSON('package.json'), diff --git a/grunt-tasks/babel.js b/build/grunt-tasks/babel.js similarity index 100% rename from grunt-tasks/babel.js rename to build/grunt-tasks/babel.js diff --git a/grunt-tasks/bootlint.js b/build/grunt-tasks/bootlint.js similarity index 100% rename from grunt-tasks/bootlint.js rename to build/grunt-tasks/bootlint.js diff --git a/grunt-tasks/clean.js b/build/grunt-tasks/clean.js similarity index 100% rename from grunt-tasks/clean.js rename to build/grunt-tasks/clean.js diff --git a/grunt-tasks/concat.js b/build/grunt-tasks/concat.js similarity index 100% rename from grunt-tasks/concat.js rename to build/grunt-tasks/concat.js diff --git a/grunt-tasks/csslint.js b/build/grunt-tasks/csslint.js similarity index 100% rename from grunt-tasks/csslint.js rename to build/grunt-tasks/csslint.js diff --git a/grunt-tasks/eslint.js b/build/grunt-tasks/eslint.js similarity index 100% rename from grunt-tasks/eslint.js rename to build/grunt-tasks/eslint.js diff --git a/grunt-tasks/image.js b/build/grunt-tasks/image.js similarity index 100% rename from grunt-tasks/image.js rename to build/grunt-tasks/image.js diff --git a/grunt-tasks/includes.js b/build/grunt-tasks/includes.js similarity index 100% rename from grunt-tasks/includes.js rename to build/grunt-tasks/includes.js diff --git a/grunt-tasks/jscs.js b/build/grunt-tasks/jscs.js similarity index 100% rename from grunt-tasks/jscs.js rename to build/grunt-tasks/jscs.js diff --git a/grunt-tasks/jshint.js b/build/grunt-tasks/jshint.js similarity index 100% rename from grunt-tasks/jshint.js rename to build/grunt-tasks/jshint.js diff --git a/grunt-tasks/sass.js b/build/grunt-tasks/sass.js similarity index 100% rename from grunt-tasks/sass.js rename to build/grunt-tasks/sass.js diff --git a/grunt-tasks/uglify.js b/build/grunt-tasks/uglify.js similarity index 100% rename from grunt-tasks/uglify.js rename to build/grunt-tasks/uglify.js diff --git a/grunt-tasks/watch.js b/build/grunt-tasks/watch.js similarity index 100% rename from grunt-tasks/watch.js rename to build/grunt-tasks/watch.js