-
-
Notifications
You must be signed in to change notification settings - Fork 203
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wip: Move source to packages/window_manager
- Loading branch information
Showing
103 changed files
with
1,935 additions
and
2,119 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
@@ -1,9 +1,6 @@ | ||
.DS_Store | ||
.dart_tool/ | ||
.idea/ | ||
.packages | ||
.pub/ | ||
.vscode/ | ||
build/ | ||
Generated* | ||
generated* | ||
|
||
*.iml | ||
pubspec_overrides.yaml | ||
pubspec.lock |
This file contains 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
MIT License | ||
|
||
Copyright (c) 2022 LiJianying <[email protected]> | ||
Copyright (c) 2022-present LiJianying <[email protected]> | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
This file was deleted.
Oops, something went wrong.
This file contains 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,35 @@ | ||
name: window_manager_workspace | ||
repository: https://github.com/leanflutter/window_manager | ||
|
||
packages: | ||
- examples/** | ||
- packages/** | ||
|
||
command: | ||
bootstrap: | ||
# Uses the pubspec_overrides.yaml instead of having Melos modifying the lock file. | ||
usePubspecOverrides: true | ||
|
||
scripts: | ||
analyze: | ||
exec: flutter analyze --fatal-infos | ||
description: Run `flutter analyze` for all packages. | ||
|
||
test: | ||
exec: flutter test | ||
description: Run `flutter test` for a specific package. | ||
packageFilters: | ||
dirExists: | ||
- test | ||
|
||
format: | ||
exec: dart format . --fix | ||
description: Run `dart format` for all packages. | ||
|
||
format-check: | ||
exec: dart format . --fix --set-exit-if-changed | ||
description: Run `dart format` checks for all packages. | ||
|
||
fix: | ||
exec: dart fix . --apply | ||
description: Run `dart fix` for all packages. |
Oops, something went wrong.