Skip to content

Commit 96aa87b

Browse files
committed
Add a newline to generated CSON and tmLanguage files
1 parent 035bd73 commit 96aa87b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ function buildCson(inName, outName) {
288288
csonSource = cson.createCSONString(yamlSchema, {indent: 2});
289289

290290
csonSource = '# AUTOGENERATED FROM ' + inName + '\n' + csonSource;
291-
fs.writeFileSync(outName, csonSource);
291+
fs.writeFileSync(outName, csonSource + '\n');
292292
}
293293

294294

@@ -299,7 +299,7 @@ function buildPList(inName, outName) {
299299
plistSource = '<!-- AUTOGENERATED FROM ' + inName + ' -->\n' +
300300
plistSource;
301301

302-
fs.writeFileSync(outName, plistSource);
302+
fs.writeFileSync(outName, plistSource + '\n');
303303
}
304304

305305

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "syntaxdev",
3-
"version": "0.0.9",
3+
"version": "0.0.10",
44
"description": "Unit testing framework for TextMate/Sublime/Atom syntaxes.",
55
"main": "index.js",
66
"author": "Yury Selivanov <yury@magic.io>",

0 commit comments

Comments
 (0)