Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion mise.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ run = "melos run gen:build_runner --no-select"
[tasks.app]
run = [
"melos run gen:build_runner --no-select",
"cd apps/dotto/ios && xcodebuild -resolvePackageDependencies -workspace Runner.xcworkspace -scheme Runner",
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

うーん、これ必要かなぁ

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

俺もあぼちゃんもビルドできなくて,このコマンド追加したらできました

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

なんでこれが必要かも調査してもらえません...??
mise setup か mise run app のどこかのタイミングで実行されるflutter or melosコマンドのどこかのタイミングで勝手にSPMのResolveが走ると思うから、必要ないと思うんだけど...

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

少なくとも、僕と @masaya-osuga はこれがなくてもできたから

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

よくわからないけどキャッシュが原因だそうです
みふゆさんも最初はエラー起きてたけどこれでビルド出来てました

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

来週帰ったら調査します

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@hikaru-0602
DerivedDataの削除とか試した?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

やってないです

"cd apps/dotto && flutter run --dart-define-from-file=./dart_defines/development.json",
]

Expand All @@ -60,7 +61,7 @@ run = "melos run test:unit"
run = "dart analyze apps/dotto/ packages/dotto_design_system/ scripts/"

[tasks.format]
run = "dart fix --apply && dart format apps/dotto/ packages/dotto_design_system/ scripts/"
run = "dart fix --apply && dart format apps/dotto/lib/ apps/dotto/test/ packages/dotto_design_system/ scripts/"

[tasks.generate-openapi]
run = "openapi-generator-cli generate -i ./openapi/openapi.yaml -g dart-dio -o ./packages/dotto_api"
Loading