Skip to content

Commit dcff78b

Browse files
authored
chore(repo): fix release warnings (#28)
* update readme * rename stream_feeds to stream_feed * more renames for stream_feeds * remove unused import * update required pana score
1 parent e6d474c commit dcff78b

File tree

1,539 files changed

+202
-115
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,539 files changed

+202
-115
lines changed

.github/actions/package_analysis/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@ runs:
1717
# all supported legacy version.
1818
- name: "Stream Feeds Analyze"
1919
shell: bash
20-
run: cd packages/stream_feeds/lib && dart analyze --fatal-warnings . && cd .. && flutter test --exclude-tags golden
20+
run: cd packages/stream_feed/lib && dart analyze --fatal-warnings . && cd .. && flutter test --exclude-tags golden

.github/workflows/pana.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ concurrency:
1313
cancel-in-progress: true
1414

1515
jobs:
16-
stream_feeds:
16+
stream_feed:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: 📚 Git Checkout
2020
uses: actions/checkout@v4
2121
- name: 📊 Verify Pana Score
2222
uses: ./.github/actions/pana
2323
with:
24-
working_directory: packages/stream_feeds
25-
min_score: 130 # Missing 10 points for no example and 10 points for license
24+
working_directory: packages/stream_feed
25+
min_score: 120 # Missing 10 points for no example, 10 points for license and 10 points for unused private classes

.github/workflows/pr_title.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
with:
3535
scopes: |
3636
{
37-
"llc": "packages/stream_feeds"
37+
"llc": "packages/stream_feed"
3838
}
3939
env:
4040
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/stream_feeds_flutter_workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: stream_feeds_flutter_workflow
1+
name: stream_feed_flutter_workflow
22

33
env:
44
FLUTTER_CHANNEL: stable

README.md

Lines changed: 3 additions & 3 deletions

docs_code_snippets/01_01_quickstart.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
import 'package:flutter/widgets.dart';
44
import 'package:flutter_state_notifier/flutter_state_notifier.dart';
5-
import 'package:stream_feeds/stream_feeds.dart';
5+
import 'package:stream_feed/stream_feed.dart';
66

77
late StreamFeedsClient client;
88
late Feed feed;
99

1010
Future<void> gettingStarted() async {
1111
// Import the package
12-
// import 'package:stream_feeds/stream_feeds.dart';
12+
// import 'package:stream_feed/stream_feed.dart';
1313

1414
// Initialize the client
1515
final client = StreamFeedsClient(
@@ -110,7 +110,7 @@ Future<void> customActivityTypes() async {
110110
// imports
111111
// import 'package:flutter/widgets.dart';
112112
// import 'package:flutter_state_notifier/flutter_state_notifier.dart';
113-
// import 'package:stream_feeds/stream_feeds.dart';
113+
// import 'package:stream_feed/stream_feed.dart';
114114
class FeedView extends StatefulWidget {
115115
const FeedView({super.key, required this.feed});
116116
final Feed feed;

docs_code_snippets/03_01_activities.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// ignore_for_file: unused_local_variable, file_names, avoid_redundant_argument_values
22

3-
import 'package:stream_feeds/stream_feeds.dart';
3+
import 'package:stream_feed/stream_feed.dart';
44

55
late StreamFeedsClient client;
66
late Feed feed;

docs_code_snippets/03_02_querying_activities.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// ignore_for_file: unused_local_variable, file_names, avoid_redundant_argument_values
22

3-
import 'package:stream_feeds/stream_feeds.dart';
3+
import 'package:stream_feed/stream_feed.dart';
44

55
late StreamFeedsClient client;
66
late Feed feed;

docs_code_snippets/03_03_file_uploads.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// ignore_for_file: unused_local_variable, file_names, avoid_redundant_argument_values
22

3-
import 'package:stream_feeds/stream_feeds.dart';
3+
import 'package:stream_feed/stream_feed.dart';
44

55
late StreamFeedsClient client;
66
late Feed feed;

docs_code_snippets/04_01_feeds.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// ignore_for_file: file_names, unused_local_variable, avoid_redundant_argument_values
22

3-
import 'package:stream_feeds/stream_feeds.dart';
3+
import 'package:stream_feed/stream_feed.dart';
44

55
late StreamFeedsClient client;
66
late Feed feed;

0 commit comments

Comments
 (0)