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: {
options: {
bundleExec: true,
config: '_config.yml',
incremental: false
},
docs: {},
github: {
options: {
//raw: 'github: true'
raw: 'baseurl: "/bootstrap-material-design"'
}
}
},
//jekyll: {
// options: {
// bundleExec: true,
// config: '_config.yml',
// incremental: false
// },
// docs: {},
// github: {
// options: {
// //raw: 'github: true'
// raw: 'baseurl: "/bootstrap-material-design"'
// }
// }
//},
htmllint: {
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
//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/'
})
new Jekyll(gulp, docsPreset, docsConfig, {options: {raw: 'baseurl: "/bootstrap-material-design"'}})