Skip to content

Commit

Permalink
Merge pull request #879 from YumNumm:feature/replay
Browse files Browse the repository at this point in the history
[chore] Add base package
  • Loading branch information
YumNumm authored Jan 17, 2025
2 parents e891acf + 7fb372d commit 8462582
Show file tree
Hide file tree
Showing 8 changed files with 852 additions and 5 deletions.
7 changes: 7 additions & 0 deletions packages/_base/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# https://dart.dev/guides/libraries/private-files
# Created by `dart pub`
.dart_tool/

# Avoid committing pubspec.lock for library packages; see
# https://dart.dev/guides/libraries/private-files#pubspeclock.
pubspec.lock
3 changes: 3 additions & 0 deletions packages/_base/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Base Package

Please write a description for this package here! :)
1 change: 1 addition & 0 deletions packages/_base/analysis_options.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include: package:eqmonitor_lints/analysis_options.yaml
14 changes: 14 additions & 0 deletions packages/_base/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: _base
description: A starting point for Dart libraries or applications.
version: 1.0.0

publish_to: "none"

environment:
sdk: ^3.6.0
flutter: ^3.27.0

dev_dependencies:
altive_lints: ^1.14.1
eqmonitor_lints:
path: ../eqmonitor_lints
4 changes: 4 additions & 0 deletions packages/_base/pubspec_overrides.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# melos_managed_dependency_overrides: eqmonitor_lints
dependency_overrides:
eqmonitor_lints:
path: ../eqmonitor_lints
46 changes: 41 additions & 5 deletions packages/eqapi_client/.gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,43 @@
# https://dart.dev/guides/libraries/private-files
# Created by `dart pub`
# 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
**/doc/api/
**/ios/Flutter/.last_build_id
.dart_tool/
.flutter-plugins
.flutter-plugins-dependencies
.pub-cache/
.pub/
/build/

# Symbolication related
app.*.symbols

# Obfuscation related
app.*.map.json

# Avoid committing pubspec.lock for library packages; see
# https://dart.dev/guides/libraries/private-files#pubspeclock.
pubspec.lock
# Android Studio will place build artifacts here
/android/app/debug
/android/app/profile
/android/app/release
Loading

0 comments on commit 8462582

Please sign in to comment.