@@ -118,8 +118,9 @@ func runCLI() {
118
118
Option < Path > ( " ejsPath " , default: " " , description: " Path to EJS file for JavaScript templates. " ) ,
119
119
Option < Path > ( " cacheBasePath " , default: " " , description: " Base path to Sourcery's cache directory " ) ,
120
120
Option < Path > ( " buildPath " , default: " " , description: " Sets a custom build path " ) ,
121
- Flag ( " hideVersionHeader " , description: " Do not include Sourcery version in the generated files headers. " )
122
- ) { watcherEnabled, disableCache, verboseLogging, logAST, logBenchmark, parseDocumentation, quiet, prune, serialParse, sources, excludeSources, templates, excludeTemplates, output, isDryRun, configPaths, forceParse, baseIndentation, args, ejsPath, cacheBasePath, buildPath, hideVersionHeader in
121
+ Flag ( " hideVersionHeader " , description: " Do not include Sourcery version in the generated files headers. " ) ,
122
+ Option < String ? > ( " headerPrefix " , default: nil , description: " Additional prefix for headers. " )
123
+ ) { watcherEnabled, disableCache, verboseLogging, logAST, logBenchmark, parseDocumentation, quiet, prune, serialParse, sources, excludeSources, templates, excludeTemplates, output, isDryRun, configPaths, forceParse, baseIndentation, args, ejsPath, cacheBasePath, buildPath, hideVersionHeader, headerPrefix in
123
124
do {
124
125
let logConfiguration = Log . Configuration (
125
126
isDryRun: isDryRun,
@@ -206,7 +207,8 @@ func runCLI() {
206
207
prune: prune,
207
208
serialParse: serialParse,
208
209
hideVersionHeader: hideVersionHeader,
209
- arguments: configuration. args)
210
+ arguments: configuration. args,
211
+ headerPrefix: headerPrefix)
210
212
211
213
if isDryRun, watcherEnabled {
212
214
throw " --dry not compatible with --watch "
@@ -301,8 +303,9 @@ func runCLI() {
301
303
""" ) ,
302
304
Option < Path > ( " cacheBasePath " , default: " " , description: " Base path to Sourcery's cache directory " ) ,
303
305
Option < Path > ( " buildPath " , default: " " , description: " Sets a custom build path " ) ,
304
- Flag ( " hideVersionHeader " , description: " Do not include Sourcery version in the generated files headers. " )
305
- ) { disableCache, verboseLogging, logAST, logBenchmark, parseDocumentation, quiet, prune, serialParse, sources, excludeSources, templates, excludeTemplates, output, isDryRun, configPaths, forceParse, baseIndentation, args, cacheBasePath, buildPath, hideVersionHeader in
306
+ Flag ( " hideVersionHeader " , description: " Do not include Sourcery version in the generated files headers. " ) ,
307
+ Option < String ? > ( " headerPrefix " , default: nil , description: " Additional prefix for headers. " )
308
+ ) { disableCache, verboseLogging, logAST, logBenchmark, parseDocumentation, quiet, prune, serialParse, sources, excludeSources, templates, excludeTemplates, output, isDryRun, configPaths, forceParse, baseIndentation, args, cacheBasePath, buildPath, hideVersionHeader, headerPrefix in
306
309
do {
307
310
let logConfiguration = Log . Configuration (
308
311
isDryRun: isDryRun,
@@ -384,7 +387,8 @@ func runCLI() {
384
387
prune: prune,
385
388
serialParse: serialParse,
386
389
hideVersionHeader: hideVersionHeader,
387
- arguments: configuration. args)
390
+ arguments: configuration. args,
391
+ headerPrefix: headerPrefix)
388
392
389
393
return try sourcery. processFiles (
390
394
configuration. source,
0 commit comments