Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: bump dependencies #22

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions bin/fontify.dart
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,17 @@ void _run(CliArguments parsedArgs) {
final isVerbose = parsedArgs.verbose ?? kDefaultVerbose;

if (isVerbose) {
logger.setFilterLevel(Level.verbose);
logger.setFilterLevel(Level.trace);
}

if (parsedArgs.classFile?.existsSync() ?? false) {
logger.v(
logger.t(
'Output file for a Flutter class already exists (${parsedArgs.classFile!.path}) - '
'overwriting it');
}

if (!parsedArgs.fontFile.existsSync()) {
logger.v(
logger.t(
'Output file for a font file already exists (${parsedArgs.fontFile.path}) - '
'overwriting it');
}
Expand Down Expand Up @@ -82,7 +82,7 @@ void _run(CliArguments parsedArgs) {
writeToFile(parsedArgs.fontFile.path, otfResult.font);

if (parsedArgs.classFile == null) {
logger.v('No output path for Flutter class was specified - '
logger.t('No output path for Flutter class was specified - '
'skipping class generation.');
} else {
final fontFileName = p.basename(parsedArgs.fontFile.path);
Expand Down
8 changes: 4 additions & 4 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,18 @@ description: >-
homepage: https://github.com/westracer/fontify

environment:
sdk: ">=2.12.0 <3.0.0"
sdk: ">=2.17.0 <3.0.0"

dependencies:
args: ^2.0.0
collection: ^1.15.0
logger: ^1.0.0
logger: ^2.0.0
meta: ^1.3.0
path: ^1.8.0
path_parsing: ^0.2.0
path_parsing: ^1.0.0
recase: ^4.0.0
vector_math: ^2.1.0
xml: ^5.1.0
xml: ^6.0.0
yaml: ^3.1.0

dev_dependencies:
Expand Down