Skip to content

Commit 8f40418

Browse files
committed
+Update dependencies
1 parent bef1068 commit 8f40418

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

lib/src/generate_header_comments.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ Future<void> generateHeaderComments(
2828
example: 'df_generate_header_comments -i .',
2929
params: [
3030
DefaultFlags.HELP.flag.copyWith(negatable: true),
31-
DefaultOptions.INPUT_PATH.option.copyWith(
31+
DefaultOptionParams.INPUT_PATH.option.copyWith(
3232
defaultsTo: FileSystemUtility.i.currentDir,
3333
),
34-
DefaultOptions.TEMPLATE_PATH_OR_URL.option.copyWith(
34+
DefaultOptionParams.TEMPLATE_PATH_OR_URL.option.copyWith(
3535
defaultsTo: defaultTemplate,
3636
),
3737
],
@@ -54,8 +54,8 @@ Future<void> generateHeaderComments(
5454
late final String inputPath;
5555
late final String template;
5656
try {
57-
inputPath = argResults.option(DefaultOptions.INPUT_PATH.name)!;
58-
template = argResults.option(DefaultOptions.TEMPLATE_PATH_OR_URL.name)!;
57+
inputPath = argResults.option(DefaultOptionParams.INPUT_PATH.name)!;
58+
template = argResults.option(DefaultOptionParams.TEMPLATE_PATH_OR_URL.name)!;
5959
} catch (_) {
6060
_print(
6161
Log.printRed,

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ repository: https://github.com/robmllze/df_generate_comment_headers
1616
funding:
1717
- https://www.buymeacoffee.com/dev_cetera
1818
description: A tool to generate header comments for your source files.
19-
version: 0.5.0
19+
version: 0.5.1
2020
topics:
2121
- source-gen
2222
- build-runner
@@ -36,7 +36,7 @@ dependencies:
3636
args: ^2.7.0
3737

3838
df_config: ^0.7.5
39-
df_gen_core: ^0.6.16
39+
df_gen_core: ^0.7.0
4040
df_log: ^0.3.19
4141

4242
## -----------------------------------------------------------------------------

0 commit comments

Comments
 (0)