add extra newline just to be safe

This commit is contained in:
AJ ONeal 2012-01-30 17:57:54 -07:00
parent a7ed9d461a
commit 4512925240
2 changed files with 2 additions and 2 deletions

View File

@ -86,7 +86,7 @@
} }
}; };
return '---' + handlers[typeOf(data)](data); return '---' + handlers[typeOf(data)](data) + '\n';
} }
module.exports.stringify = stringify; module.exports.stringify = stringify;

View File

@ -3,7 +3,7 @@
"name": "json2yaml", "name": "json2yaml",
"description": "A commandline utility to convert JSON to YAML / YML", "description": "A commandline utility to convert JSON to YAML / YML",
"keywords": ["yml", "yaml", "json", "cli", "util"], "keywords": ["yml", "yaml", "json", "cli", "util"],
"version": "1.0.0", "version": "1.0.1",
"main": "index.js", "main": "index.js",
"bin": { "bin": {
"json2yaml": "./cli.js", "json2yaml": "./cli.js",