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>2016-03-07 11:30:09 +0300
committerXhmikosR <xhmikosr@gmail.com>2016-03-10 14:44:16 +0300
commit4265f868ac0e9a7686df71aefc0cc64a16afbe67 (patch)
tree2d2e584e2d9f59f55a842731d81571557306a817 /Gruntfile.js
parentdcc2b8ac00185c3e21299a70786cdd918e467fbe (diff)
Remove custom caching and use Bundle for gems.
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js6
1 files changed, 4 insertions, 2 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index a1447445d0..689b186423 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -301,7 +301,9 @@ module.exports = function (grunt) {
jekyll: {
options: {
- config: '_config.yml'
+ bundleExec: true,
+ config: '_config.yml',
+ incremental: false
},
docs: {},
github: {
@@ -501,7 +503,7 @@ module.exports = function (grunt) {
if (err) {
grunt.fail.warn(err);
}
- var dest = 'test-infra/npm-shrinkwrap.json';
+ var dest = 'grunt/npm-shrinkwrap.json';
fs.renameSync('npm-shrinkwrap.json', dest);
grunt.log.writeln('File ' + dest.cyan + ' updated.');
done();