Skip to content

Commit 21b3493

Browse files
committed
wip: Move source to packages/window_manager
1 parent 32bf6ab commit 21b3493

File tree

103 files changed

+1935
-2119
lines changed

Some content is hidden

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

103 files changed

+1935
-2119
lines changed

.gitignore

+4-7
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1-
.DS_Store
21
.dart_tool/
32
.idea/
4-
.packages
5-
.pub/
6-
.vscode/
7-
build/
8-
Generated*
9-
generated*
3+
4+
*.iml
5+
pubspec_overrides.yaml
6+
pubspec.lock

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 LiJianying <[email protected]>
3+
Copyright (c) 2022-present 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

-323
This file was deleted.

melos.yaml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: window_manager_workspace
2+
repository: https://github.com/leanflutter/window_manager
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.

0 commit comments

Comments
 (0)