Skip to content

Commit 896aaa8

Browse files
authored
doc: replace pub run with dart run (#141)
1 parent f95bc3c commit 896aaa8

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

templates/basic/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ lib
7575

7676
The state management approach is intentionally low-level. That way, it's easy to
7777
take this project and run with it, without having to learn new paradigms, or having
78-
to remember to run `flutter pub run build_runner watch`. You are,
78+
to remember to run `dart run build_runner watch`. You are,
7979
of course, encouraged to use whatever paradigm, helper package or code generation
8080
scheme that you prefer.
8181

templates/card/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ lib
7676

7777
The state management approach is intentionally low-level. That way, it's easy to
7878
take this project and run with it, without having to learn new paradigms, or having
79-
to remember to run `flutter pub run build_runner watch`. You are,
79+
to remember to run `dart run build_runner watch`. You are,
8080
of course, encouraged to use whatever paradigm, helper package or code generation
8181
scheme that you prefer.
8282

@@ -199,7 +199,7 @@ To update the launcher icon, first change the files
199199
Then, run the following:
200200

201201
```bash
202-
flutter pub run flutter_launcher_icons:main
202+
dart run flutter_launcher_icons:main
203203
```
204204

205205
You can [configure](https://github.com/fluttercommunity/flutter_launcher_icons#book-guide)

templates/endless_runner/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ lib
109109

110110
The state management approach is intentionally low-level. That way, it's easy to
111111
take this project and run with it, without having to learn new paradigms, or having
112-
to remember to run `flutter pub run build_runner watch`. You are,
112+
to remember to run `dart run build_runner watch`. You are,
113113
of course, encouraged to use whatever paradigm, helper package or code generation
114114
scheme that you prefer.
115115

@@ -233,7 +233,7 @@ To update the launcher icon, first change the files
233233
Then, run the following:
234234

235235
```bash
236-
flutter pub run flutter_launcher_icons:main
236+
dart run flutter_launcher_icons:main
237237
```
238238

239239
You can [configure](https://github.com/fluttercommunity/flutter_launcher_icons#book-guide)

0 commit comments

Comments
 (0)