Skip to content

Commit

Permalink
fix: Fixed a bug that prevented it from being built.
Browse files Browse the repository at this point in the history
  • Loading branch information
mathrunet committed Oct 23, 2022
1 parent ac81ca0 commit 43c235a
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 27 deletions.
2 changes: 1 addition & 1 deletion packages/katana_listenables/example/lib/main.dart
@@ -1,6 +1,6 @@
import 'dart:math';

import 'package:katana_listenables_annotation/katana_listenables_annotation.dart';
import 'package:katana_listenables/katana_listenables.dart';

import 'package:flutter/material.dart';

Expand Down
8 changes: 4 additions & 4 deletions packages/katana_listenables/example/pubspec.lock
Expand Up @@ -227,7 +227,7 @@ packages:
name: graphs
url: "https://pub.dartlang.org"
source: hosted
version: "2.1.0"
version: "2.2.0"
http:
dependency: transitive
description:
Expand Down Expand Up @@ -290,21 +290,21 @@ packages:
path: ".."
relative: true
source: path
version: "1.0.0"
version: "1.1.0"
katana_listenables_annotation:
dependency: "direct overridden"
description:
path: "../../katana_listenables_annotation"
relative: true
source: path
version: "1.0.0"
version: "1.1.0"
katana_listenables_builder:
dependency: "direct dev"
description:
path: "../../katana_listenables_builder"
relative: true
source: path
version: "1.0.0"
version: "1.1.0"
lints:
dependency: transitive
description:
Expand Down
2 changes: 2 additions & 0 deletions packages/katana_listenables/lib/katana_listenables.dart
Expand Up @@ -7,3 +7,5 @@
/// [mathru.net]: https://mathru.net
/// [YouTube]: https://www.youtube.com/c/mathrunetchannel
library katana_listenables;

export 'package:katana_listenables_annotation/katana_listenables_annotation.dart';
11 changes: 3 additions & 8 deletions packages/katana_listenables/pubspec.lock
Expand Up @@ -83,11 +83,6 @@ packages:
description: flutter
source: sdk
version: "0.0.0"
flutter_localizations:
dependency: "direct main"
description: flutter
source: sdk
version: "0.0.0"
flutter_test:
dependency: "direct dev"
description: flutter
Expand Down Expand Up @@ -128,13 +123,13 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "0.15.6"
katana_localization_annotation:
katana_listenables_annotation:
dependency: "direct main"
description:
name: katana_localization_annotation
name: katana_listenables_annotation
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.3"
version: "1.1.0"
matcher:
dependency: transitive
description:
Expand Down
Expand Up @@ -15,7 +15,6 @@ import 'package:analyzer/dart/element/type.dart';
import 'package:build/build.dart';
import 'package:code_builder/code_builder.dart';
import 'package:dart_style/dart_style.dart';
import 'package:katana/katana.dart';
import 'package:katana_listenables_annotation/katana_listenables_annotation.dart';
import 'package:source_gen/source_gen.dart';

Expand Down
6 changes: 4 additions & 2 deletions packages/katana_listenables_builder/lib/src/builder.dart
Expand Up @@ -5,8 +5,10 @@ part of katana_listenables_builder;
/// Listenableのグループを作成するためのビルダー。
Builder katanaListenablesBuilderFactory(BuilderOptions options) {
return PartBuilder(
[],
".localize.dart",
[
ListenablesGenerator(),
],
".listenable.dart",
header:
"// ignore_for_file: unused_field, unused_element, require_trailing_commas, prefer_const_constructors, unnecessary_overrides, prefer_const_literals_to_create_immutables, unnecessary_null_in_if_null_operators, library_prefixes, directives_ordering, no_leading_underscores_for_local_identifiers, unnecessary_brace_in_string_interps",
);
Expand Down
15 changes: 4 additions & 11 deletions packages/katana_listenables_builder/pubspec.lock
Expand Up @@ -106,13 +106,6 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "3.0.2"
csv:
dependency: "direct main"
description:
name: csv
url: "https://pub.dartlang.org"
source: hosted
version: "5.0.1"
dart_style:
dependency: "direct main"
description:
Expand Down Expand Up @@ -156,7 +149,7 @@ packages:
source: hosted
version: "2.1.0"
http:
dependency: "direct main"
dependency: transitive
description:
name: http
url: "https://pub.dartlang.org"
Expand Down Expand Up @@ -204,13 +197,13 @@ packages:
url: "https://pub.dartlang.org"
source: hosted
version: "0.15.6"
katana_localization_annotation:
katana_listenables_annotation:
dependency: "direct main"
description:
name: katana_localization_annotation
name: katana_listenables_annotation
url: "https://pub.dartlang.org"
source: hosted
version: "1.1.3"
version: "1.1.0"
logging:
dependency: transitive
description:
Expand Down

0 comments on commit 43c235a

Please sign in to comment.