Skip to content

Commit 454274f

Browse files
committed
chore: Move source code to packages/auto_updater
1 parent bc61c4d commit 454274f

File tree

97 files changed

+95
-331
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+95
-331
lines changed

.gitignore

Lines changed: 4 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,6 @@
1-
# Miscellaneous
2-
*.class
3-
*.log
4-
*.pyc
5-
*.swp
6-
.DS_Store
7-
.atom/
8-
.buildlog/
9-
.history
10-
.svn/
11-
migrate_working_dir/
12-
13-
# IntelliJ related
14-
*.iml
15-
*.ipr
16-
*.iws
1+
.dart_tool/
172
.idea/
183

19-
# The .vscode folder contains launch configuration and tasks you configure in
20-
# VS Code which you may wish to be included in version control, so this line
21-
# is commented out by default.
22-
#.vscode/
23-
24-
# Flutter/Dart/Pub related
25-
# Libraries should not include pubspec.lock, per https://dart.dev/guides/libraries/private-files#pubspeclock.
26-
/pubspec.lock
27-
**/doc/api/
28-
.dart_tool/
29-
.packages
30-
build/
4+
*.iml
5+
pubspec_overrides.yaml
6+
pubspec.lock

.metadata

Lines changed: 0 additions & 10 deletions
This file was deleted.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022-2023 LiJianying <[email protected]>
3+
Copyright (c) 2022-2024 LiJianying <[email protected]>
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

example/pubspec.lock

Lines changed: 0 additions & 244 deletions
This file was deleted.

melos.yaml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: auto_updater_workspace
2+
repository: https://github.com/leanflutter/auto_updater
3+
4+
packages:
5+
- examples/**
6+
- packages/**
7+
8+
command:
9+
bootstrap:
10+
# Uses the pubspec_overrides.yaml instead of having Melos modifying the lock file.
11+
usePubspecOverrides: true
12+
13+
scripts:
14+
analyze:
15+
exec: flutter analyze --fatal-infos
16+
description: Run `flutter analyze` for all packages.
17+
18+
test:
19+
exec: flutter test
20+
description: Run `flutter test` for a specific package.
21+
packageFilters:
22+
dirExists:
23+
- test
24+
25+
format:
26+
exec: dart format . --fix
27+
description: Run `dart format` for all packages.
28+
29+
format-check:
30+
exec: dart format . --fix --set-exit-if-changed
31+
description: Run `dart format` checks for all packages.
32+
33+
fix:
34+
exec: dart fix . --apply
35+
description: Run `dart fix` for all packages.

packages/auto_updater/LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2022-2024 LiJianying <[email protected]>
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
File renamed without changes.

0 commit comments

Comments
 (0)