jekyll converted to gulp

This commit is contained in:
Kevin Ross 2016-03-09 13:37:05 -06:00
parent 25436dff34
commit 0dd3573840
2 changed files with 17 additions and 15 deletions

View File

@ -363,20 +363,20 @@ module.exports = function (grunt) {
} }
}, },
jekyll: { //jekyll: {
options: { // options: {
bundleExec: true, // bundleExec: true,
config: '_config.yml', // config: '_config.yml',
incremental: false // incremental: false
}, // },
docs: {}, // docs: {},
github: { // github: {
options: { // options: {
//raw: 'github: true' // //raw: 'github: true'
raw: 'baseurl: "/bootstrap-material-design"' // raw: 'baseurl: "/bootstrap-material-design"'
} // }
} // }
}, //},
htmllint: { htmllint: {
options: { options: {

View File

@ -1,4 +1,4 @@
import {Preset, Clean, Copy, MinifyCss, Sass, RollupEs, RollupUmd, RollupIife, ScssLint, EsLint, TaskSeries, Uglify} from 'gulp-pipeline/src/index' import {Preset, Clean, Copy, Jekyll, MinifyCss, Sass, RollupEs, RollupUmd, RollupIife, ScssLint, EsLint, TaskSeries, Uglify} from 'gulp-pipeline/src/index'
// debug the project source - remove for repo // debug the project source - remove for repo
//import {Clean, CleanDigest, Images, MinifyCss, Sass, RollupIife, ScssLint, EsLint, Rev, TaskSeries} from 'gulp-pipeline' //import {Clean, CleanDigest, Images, MinifyCss, Sass, RollupIife, ScssLint, EsLint, Rev, TaskSeries} from 'gulp-pipeline'
@ -218,3 +218,5 @@ new Copy(gulp, docsPreset, docsConfig, {
}, },
dest: 'docs/dist/' dest: 'docs/dist/'
}) })
new Jekyll(gulp, docsPreset, docsConfig, {options: {raw: 'baseurl: "/bootstrap-material-design"'}})