私は少し不平不満で、JekyllといくつかのLESSコンパイルでそれを使用したいと思います。
私の問題は、ライブリロードとウォッチタスクを使用して完全に機能するLESSコンパイルがすでにあり、不平を介してjekyllサイトを構築できることですが、jekyll serve
またはgrunt-connectおよびgrunt watch
同時に?私のLESSファイルなどの監視を提供し、jekyllサイトを構築してから、grunt-connectなどを使用して小さなWebサーバーを実行する不快なタスクが必要です。
これまでの私のGruntfile.js:
'use strict';
module.exports = function (grunt) {
grunt.initConfig({
jshint: {
options: {
jshintrc: '.jshintrc'
},
all: [
'Gruntfile.js',
'js/*.js',
'!js/scripts.min.js'
]
},
less: {
dist: {
files: {
'css/styles.min.css': [
'less/app.less'
]
},
options: {
compress: true,
// LESS source map
// To enable, set sourceMap to true and update sourceMapRootpath based on your install
sourceMap: false,
sourceMapFilename: 'css/styles.min.css.map',
sourceMapRootpath: '/'
}
},
dev: {
files: {
'css/styles.min.css': [
'less/app.less'
]
},
options: {
compress: false,
// LESS source map
// To enable, set sourceMap to true and update sourceMapRootpath based on your install
sourceMap: true,
sourceMapFilename: 'css/styles.min.css.map',
sourceMapRootpath: '/'
}
}
},
uglify: {
dist: {
files: {
'js/scripts.min.js': [
'vendor/bootstrap/js/transition.js',
'vendor/bootstrap/js/alert.js',
'vendor/bootstrap/js/button.js',
'vendor/bootstrap/js/carousel.js',
'vendor/bootstrap/js/collapse.js',
'vendor/bootstrap/js/dropdown.js',
'vendor/bootstrap/js/modal.js',
'vendor/bootstrap/js/tooltip.js',
'vendor/bootstrap/js/popover.js',
'vendor/bootstrap/js/scrollspy.js',
'vendor/bootstrap/js/tab.js',
'vendor/bootstrap/js/affix.js',
'vendor/*.js',
'js/_*.js'
]
},
options: {
// JS source map: to enable, uncomment the lines below and update sourceMappingURL based on your install
// sourceMap: 'assets/js/scripts.min.js.map',
// sourceMappingURL: '/app/themes/roots/assets/js/scripts.min.js.map'
}
}
},
watch: {
less: {
files: [
'less/*.less',
'less/bootstrap/*.less'
],
tasks: ['less:dev']
},
js: {
files: [
'<%= jshint.all %>'
],
tasks: ['jshint', 'uglify']
},
livereload: {
// Browser live reloading
// https://github.com/gruntjs/grunt-contrib-watch#live-reloading
options: {
livereload: true
},
files: [
'_site/*'
]
}
},
clean: {
dist: [
'css/styles.min.css',
'css/styles.min.css.map',
'js/scripts.min.js',
'_site/*'
]
},
jekyll: { // Task
options: { // Universal options
bundleExec: true,
src : '<%= app %>'
},
dist: { // Target
options: { // Target options
dest: '<%= dist %>',
config: '_config.yml'
}
},
serve: { // Another target
options: {
serve: true,
drafts: true
}
}
},
connect: {
server: {
options: {
keepalive: true
}
}
}
});
// Load tasks
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-contrib-uglify');
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-less');
grunt.loadNpmTasks('grunt-jekyll');
grunt.loadNpmTasks('grunt-contrib-connect');
// Register tasks
grunt.registerTask('default', [
'clean',
'less:dist',
'uglify',
'jekyll:dist'
]);
grunt.registerTask('dev', [
'watch'
]);
};
"base"オプションを使用して、設定で機能するディレクトリを接続に通知する必要があります。この場合は、静的_siteディレクトリになります。ポートを好きなように変更することもできますが、私の例ではlocalhost:9009に移動します
connect: {
server: {
options: {
livereload: true,
base: '_site/',
port: 9009
}
}
}
また、htmlテンプレートを変更するときに監視タスクを追加することもできます。このようなものが機能します。
watch: {
html: {
files: ['**/*.html', '!_site/**/*.html'],
tasks: ['jekyll:dist']
}
}
次に、ウォレスが提案するような「サーブ」タスクを作成します。
// Start web server
grunt.registerTask('serve', [
'jekyll:dist',
'connect:server',
'watch'
]);
最後にコマンドラインで「grunt serve」を実行し、指定したポートでlocalhostに移動します。
@ jiggyによるコメント
重要な変更は、キープアライブをtrueに設定しないことです。キープアライブは、後続のすべてのタスクの実行をブロックします。接続の後に監視が続く限り、サーバーは終了しません。
インターネットで見つけたすべてのgruntfile構成を必死に試すことを2日間費やしました。働いたことはありません。次に、これを見つけました https://stackoverflow.com/a/24765175/1541141 。使用する grunt-contrib-connect
、NOT grunt-connect
。 grunt-connect
がブロックしています...お役に立てば幸いです。
私はあなたのソリューションの中心は次のように新しいタスクを作成するか既存のタスクを編集することだと思います:
// Start web server
grunt.registerTask('serve', [
'jekyll:dist',
'connect:livereload',
'watch'
]);
...$ grunt serve
で実行します。 less
、jshint
、uglify
およびconnect
はすでにwatch
に含まれています。