Skip to content

Commit

Permalink
fix: dart pub publish --dry-run
Browse files Browse the repository at this point in the history
  • Loading branch information
lambiengcode committed May 22, 2024
1 parent feb0aba commit 3f72eeb
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 4 deletions.
34 changes: 34 additions & 0 deletions .pubignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Additional
examples
tools

# Miscellaneous
*.class
*.log
*.pyc
*.swp
.DS_Store
.atom/
.buildlog/
.history
.svn/
migrate_working_dir/

# IntelliJ related
*.iml
*.ipr
*.iws
.idea/

# The .vscode folder contains launch configuration and tasks you configure in
# VS Code which you may wish to be included in version control, so this line
# is commented out by default.
#.vscode/

# 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/
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ $ flutter pub add waterbus_sdk
The command above will add this to the `pubspec.yaml` file in your project (you can do this manually):
```yaml
dependencies:
waterbus_sdk: ^1.3.13
waterbus_sdk: ^1.3.14
```
## Usage
Expand Down
2 changes: 0 additions & 2 deletions lib/native/virtual_background/virtual_background_web.dart
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
// ignore_for_file: depend_on_referenced_packages

@JS()
library t;

Expand Down
5 changes: 4 additions & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,20 @@ dependencies:
hive: ^2.2.3

# Utils
collection: '>=1.16.0'
collection: '^1.16.0'
universal_io: ^2.2.2
equatable: ^2.0.5
logger: ^2.3.0
path_provider: ^2.1.3
wakelock_plus: ^1.2.5
replay_kit_launcher: ^1.0.0
waterbus_callkit_incoming: ^2.0.0+5
web: ^0.5.1

# WebRTC
sdp_transform: ^0.3.2
h264_profile_level_id: ^0.2.1
dart_webrtc_plus: ^1.4.4+2
flutter_webrtc_plus: ^0.10.3+6
# flutter_webrtc_plus:
# path: /Users/lambiengcode/Documents/webrtc/flutter-webrtc
Expand Down

0 comments on commit 3f72eeb

Please sign in to comment.