File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -221,6 +221,7 @@ function buildCson(inName, outName) {
221221 yamlSchema = yaml . safeLoad ( yamlSource ) ,
222222 csonSource = cson . createCSONString ( yamlSchema , { indent : 2 } ) ;
223223
224+ csonSource = '# AUTOGENERATED FROM ' + inName + '\n' + csonSource ;
224225 fs . writeFileSync ( outName , csonSource ) ;
225226}
226227
@@ -230,6 +231,9 @@ function buildPList(inName, outName) {
230231 yamlSchema = yaml . safeLoad ( yamlSource ) ,
231232 plistSource = plist . build ( yamlSchema ) ;
232233
234+ plistSource = '<!-- AUTOGENERATED FROM ' + inName + ' -->\n' +
235+ plistSource ;
236+
233237 fs . writeFileSync ( outName , plistSource ) ;
234238}
235239
Original file line number Diff line number Diff line change 11{
22 "name" : " syntaxdev" ,
3- "version" : " 0.0.4 " ,
3+ "version" : " 0.0.5 " ,
44 "description" : " Unit testing framework for TextMate/Sublime/Atom syntaxes." ,
55 "main" : " index.js" ,
66 "author" : " Yury Selivanov <yury@magic.io>" ,
You can’t perform that action at this time.
0 commit comments