File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -221,6 +221,7 @@ function buildCson(inName, outName) {
221
221
yamlSchema = yaml . safeLoad ( yamlSource ) ,
222
222
csonSource = cson . createCSONString ( yamlSchema , { indent : 2 } ) ;
223
223
224
+ csonSource = '# AUTOGENERATED FROM ' + inName + '\n' + csonSource ;
224
225
fs . writeFileSync ( outName , csonSource ) ;
225
226
}
226
227
@@ -230,6 +231,9 @@ function buildPList(inName, outName) {
230
231
yamlSchema = yaml . safeLoad ( yamlSource ) ,
231
232
plistSource = plist . build ( yamlSchema ) ;
232
233
234
+ plistSource = '<!-- AUTOGENERATED FROM ' + inName + ' -->\n' +
235
+ plistSource ;
236
+
233
237
fs . writeFileSync ( outName , plistSource ) ;
234
238
}
235
239
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " syntaxdev" ,
3
- "version" : " 0.0.4 " ,
3
+ "version" : " 0.0.5 " ,
4
4
"description" : " Unit testing framework for TextMate/Sublime/Atom syntaxes." ,
5
5
"main" : " index.js" ,
6
6
"author" : " Yury Selivanov <yury@magic.io>" ,
You can’t perform that action at this time.
0 commit comments