-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
gopi2401
committed
Sep 25, 2024
1 parent
194ac97
commit 14ba5c9
Showing
1 changed file
with
19 additions
and
1 deletion.
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,4 +1,22 @@ | ||
name: insta | ||
|
||
# Define the packages to include in the workspace | ||
packages: | ||
- packages/** | ||
- packages/** | ||
|
||
# Command configuration section | ||
command: | ||
bootstrap: | ||
usePubspecOverrides: true | ||
|
||
# Scripts section for common commands | ||
scripts: | ||
build: | ||
description: "Run build_runner to generate code" | ||
run: | | ||
melos exec -- flutter pub run build_runner build --delete-conflicting-outputs | ||
# You don’t need select-package with depends-on here. Build runner should be run in relevant packages automatically. | ||
analyze: | ||
description: "Analyze the codebase" | ||
run: | | ||
melos exec -- flutter analyze --no-fatal-infos |