Skip to content

Commit

Permalink
Merge pull request #7 from leoafarias/chore/cache-improvements
Browse files Browse the repository at this point in the history
Chore/cache improvements
  • Loading branch information
leoafarias authored Apr 28, 2024
2 parents 2f07abd + 6005fa3 commit 717a95f
Show file tree
Hide file tree
Showing 55 changed files with 1,968 additions and 1,620 deletions.
24 changes: 19 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Flutter/Dart/Pub related
# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
pubspec.lock

# Miscellaneous
*.class
*.log
Expand All @@ -21,18 +25,28 @@ migrate_working_dir/
# is commented out by default.
#.vscode/

# Ignoring native folders of the example as they can be re-generated easily using:
# flutter create --platforms=android,ios,web,windows,macos .
**/example/android/
**/example/ios/
**/example/web/
**/example/windows/
**/example/macos/
**/example/linux/

# Flutter/Dart/Pub related
# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
/pubspec.lock
**/doc/api/
.dart_tool/
.packages
build/
.flutter-plugins
.flutter-plugins-dependencies

.packages
.pub-cache/
.pub/
build/

# FVM Version Cache
.fvm/
.firebase

# Node file for website
node_modules
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
### 0.0.3

- Cleaned up dependencies
- Updated example code
- Improved logging
* Cleaned up dependencies
* Updated example code
* Improved logging
* Fixed and improved mermaid generation

## 0.0.2

Expand Down
1 change: 1 addition & 0 deletions analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ analyzer:
linter:
rules:
public_member_api_docs: false
always_use_package_imports: false
prefer_relative_imports: true
library_private_types_in_public_api: false

Loading

0 comments on commit 717a95f

Please sign in to comment.