From 470c8b93139a07dd0ff03b85e093ad4b2c86ea78 Mon Sep 17 00:00:00 2001 From: Adam Shaw Date: Sat, 30 Mar 2013 00:10:11 -0700 Subject: [PATCH] move Bower and CDNJS configs into build folder --- Gruntfile.js | 4 ++-- cdn.json => build/cdn.json | 0 component.json => build/component.json | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename cdn.json => build/cdn.json (100%) rename component.json => build/component.json (100%) diff --git a/Gruntfile.js b/Gruntfile.js index 5e6a789..89e92c6 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -189,7 +189,7 @@ module.exports = function(grunt) { // assemble the component's config from existing configs grunt.registerTask('componentConfig', function() { - var config = grunt.file.readJSON('component.json'); + var config = grunt.file.readJSON('build/component.json'); grunt.file.write( 'build/component/component.json', JSON.stringify( @@ -223,7 +223,7 @@ module.exports = function(grunt) { }; grunt.registerTask('cdnConfig', function() { - var config = grunt.file.readJSON('cdn.json'); + var config = grunt.file.readJSON('build/cdn.json'); grunt.file.write( 'build/cdn/package.json', JSON.stringify( diff --git a/cdn.json b/build/cdn.json similarity index 100% rename from cdn.json rename to build/cdn.json diff --git a/component.json b/build/component.json similarity index 100% rename from component.json rename to build/component.json