grunt-jekyll
Advanced tools
Comparing version 0.4.6 to 0.4.7
@@ -0,1 +1,11 @@ | ||
<a name="0.4.7"></a> | ||
## [0.4.7](https://github.com/dannygarcia/grunt-jekyll/compare/v0.4.6...v0.4.7) (2018-02-01) | ||
### Features | ||
* add new livereload flag ([a482879](https://github.com/dannygarcia/grunt-jekyll/commit/a482879)) | ||
<a name="0.4.6"></a> | ||
@@ -2,0 +12,0 @@ ## [0.4.6](https://github.com/dannygarcia/grunt-jekyll/compare/v0.4.5...v0.4.6) (2017-01-14) |
{ | ||
"name": "grunt-jekyll", | ||
"description": "A custom grunt.js plugin that executes jekyll compile and/or watch for you", | ||
"version": "0.4.6", | ||
"version": "0.4.7", | ||
"homepage": "https://github.com/dannygarcia/grunt-jekyll", | ||
"author": "Danny Garcia <contact@danny-garcia.com> (http://danny-garcia.com)", | ||
"contributors": [ | ||
"Tunghsiao Liu <t@sparanoid.com>", | ||
"Danny Garcia <danny.d.g@gmail.com>", | ||
"Rob Wierzbowski <hello@robwierzbowski.com>", | ||
@@ -38,3 +38,3 @@ "Danny Garcia <contact@danny-garcia.com>", | ||
"dependencies": { | ||
"tmp": "^0.0.31" | ||
"tmp": "^0.0.33" | ||
}, | ||
@@ -41,0 +41,0 @@ "devDependencies": { |
# grunt-jekyll | ||
__Currently seeking someone to maintain this project.__ | ||
[![npm Version](https://img.shields.io/npm/v/grunt-jekyll.svg)](https://www.npmjs.com/package/grunt-jekyll) | ||
[![Build Status](https://travis-ci.org/dannygarcia/grunt-jekyll.svg?branch=master)](https://travis-ci.org/dannygarcia/grunt-jekyll) | ||
[![Dependency Status](https://david-dm.org/dannygarcia/grunt-jekyll.svg?theme=shields.io)](https://david-dm.org/dannygarcia/grunt-jekyll) | ||
[![devDependency Status](https://david-dm.org/dannygarcia/grunt-jekyll/dev-status.svg?theme=shields.io)](https://david-dm.org/dannygarcia/grunt-jekyll#info=devDependencies) | ||
[![npm Version](https://img.shields.io/npm/v/grunt-jekyll.svg)](https://www.npmjs.com/package/grunt-jekyll) | ||
[![npm Downloads](https://img.shields.io/npm/dm/grunt-jekyll.svg)](https://www.npmjs.com/package/grunt-jekyll) | ||
@@ -166,2 +164,8 @@ | ||
#### livereload | ||
Type: `boolean` | ||
LiveReload refreshes your browser after a change. | ||
#### port | ||
@@ -168,0 +172,0 @@ |
@@ -24,5 +24,2 @@ 'use strict'; | ||
// Build Command Options | ||
'auto': '--watch', | ||
'watch': '--watch', | ||
'no_watch': '--no-watch', | ||
'config': '--config', | ||
@@ -36,5 +33,7 @@ 'drafts': '--drafts', | ||
'quiet': '--quiet', | ||
'incremental': '--incremental', | ||
// Serve Command Options | ||
'auto': '--watch', | ||
'watch': '--watch', | ||
'no_watch': '--no-watch', | ||
'port': '--port', | ||
@@ -46,2 +45,4 @@ 'server_port': '--port', | ||
'open_url': '--open-url', | ||
'incremental': '--incremental', | ||
'livereload': '--livereload', | ||
@@ -48,0 +49,0 @@ // Deprecated flags |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
15353
150
289
+ Addedtmp@0.0.33(transitive)
- Removedtmp@0.0.31(transitive)
Updatedtmp@^0.0.33