Skip to content

Commit

Permalink
wip: Move source to packages/window_manager
Browse files Browse the repository at this point in the history
  • Loading branch information
lijy91 committed Oct 27, 2024
1 parent 32bf6ab commit 21b3493
Show file tree
Hide file tree
Showing 103 changed files with 1,935 additions and 2,119 deletions.
11 changes: 4 additions & 7 deletions .gitignore
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
2 changes: 1 addition & 1 deletion LICENSE
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
Expand Down
323 changes: 0 additions & 323 deletions example/pubspec.lock

This file was deleted.

35 changes: 35 additions & 0 deletions melos.yaml
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.
Loading

0 comments on commit 21b3493

Please sign in to comment.