-
-
Notifications
You must be signed in to change notification settings - Fork 276
melos #7: drift #3134
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
melos #7: drift #3134
Changes from all commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
481ddd5
Add melos setup and check only set up Dart for now
buenaflor 82fa1bc
Update
buenaflor af3e3ee
Update]
buenaflor 7734657
Update]
buenaflor b5e5b42
Update
buenaflor 75e40d4
Update
buenaflor 086519b
Update
buenaflor f977b38
Fix CHANGELOG
buenaflor ecce8da
Update gitignore
buenaflor c692b29
Fix symlink in CHANGELOG
buenaflor 0cae93e
Add logging to melos
buenaflor 1d983dd
Update
buenaflor 030fb25
Merge branch 'umbrella/melos' into chore/melos/logging
buenaflor 831a6de
Update
buenaflor 412240d
Update
buenaflor 26ec9b8
Update
buenaflor 33a6226
Add dio to packages
buenaflor f0b3ecf
Update workflow
buenaflor 17289a5
Update
buenaflor feb0e3f
Update
buenaflor 4bc5a30
Update
buenaflor dae9306
Update
buenaflor 7cc04b4
Update
buenaflor 0706b8a
Add hive to packages
buenaflor 47ea449
Update
buenaflor 0679ecf
Add file to packages
buenaflor 784ef2d
Add link to packages
buenaflor f5a74a7
Update
buenaflor 326b809
Update
buenaflor 1364687
Update
buenaflor b7af752
Update
buenaflor e3e05e5
Fix test
buenaflor ea6336a
Fix test
buenaflor ccbc158
Fix test
buenaflor 049e3dc
Fix test
buenaflor 476b8ed
Fix test
buenaflor ff06f18
Merge branch 'umbrella/melos' into chore/melos/drif
buenaflor 6065975
Update drift.yml
buenaflor File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| ../../CHANGELOG.md |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| ../dart/dartdoc_options.yaml |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| # melos_managed_dependency_overrides: sentry | ||
| dependency_overrides: | ||
| sentry: | ||
| path: ../dart |
File renamed without changes.
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| import 'dart:ffi'; | ||
|
|
||
| DynamicLibrary openOnWindows() { | ||
| // Use the system SQLite DLL installed by Chocolatey | ||
| try { | ||
| // Try to load from system path first | ||
| return DynamicLibrary.open('sqlite3.dll'); | ||
| } catch (e) { | ||
| // Fallback to absolute path from Chocolatey installation | ||
| return DynamicLibrary.open( | ||
| 'C:\\ProgramData\\chocolatey\\lib\\sqlite\\tools\\sqlite3.dll', | ||
| ); | ||
| } | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch 👍