grunt-carpenter
Advanced tools
Comparing version 1.0.1 to 1.0.2
{ | ||
"name": "grunt-carpenter", | ||
"description": "Build static sites from markdown and html", | ||
"version": "1.0.1", | ||
"version": "1.0.2", | ||
"homepage": "https://github.com/TxSSC/grunt-carpenter", | ||
@@ -6,0 +6,0 @@ "author": { |
@@ -23,4 +23,6 @@ # grunt-carpenter [![Build Status](https://travis-ci.org/TxSSC/grunt-carpenter.png?branch=master)](https://travis-ci.org/TxSSC/grunt-carpenter) | ||
Filename of the file that contains template information regarding the current file. This file fill be looked for upwards in the directory tree. Any keys apart from `layout` and `template` will be merged into the data object before templates are rendered. | ||
Filename of the file that contains template information regarding the current file. This file fill be looked for upwards in the directory tree. Any keys apart from `layout` and `template` will be merged into the data object before templates are rendered. | ||
See [test/fixtures/content/data.json](test/fixtures/content/data.json) for used test fixture data file examples. | ||
#### metadataDelimiter | ||
@@ -75,2 +77,2 @@ Type: `String` | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
@@ -187,3 +187,3 @@ /** | ||
if(!layout) { | ||
grunt.fail.warn("Unable to find layout " + rData.layout); | ||
grunt.fail.warn("Unable to find layout " + layout); | ||
return null; | ||
@@ -193,3 +193,3 @@ } | ||
if(!template) { | ||
grunt.fail.warn("Unable to find template " + rData.template); | ||
grunt.fail.warn("Unable to find template " + template); | ||
return null; | ||
@@ -196,0 +196,0 @@ } |
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
11062
6
218
77