Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/test-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
name: Install dependencies
run: dart pub get
- name: Build generated artifacts
run: dart pub run build_runner build
run: dart run build_runner build
- name: Analyze code
run: dart analyze --fatal-infos

Expand Down
2 changes: 1 addition & 1 deletion NULL_SAFETY_README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ under `dev_dependencies`: something like `build_runner: ^1.10.0`.
The final step is to run build_runner in order to generate the new library:

```shell
flutter pub run build_runner build
dart run build_runner build
# OR
dart run build_runner build
```
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ you are directing Mockito's code generation to write a mock class for each
The next step is to run `build_runner` in order to generate this new library:

```shell
flutter pub run build_runner build
dart run build_runner build
# OR
dart run build_runner build
```
Expand Down
2 changes: 1 addition & 1 deletion test/all.dart
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// limitations under the License.

// This file explicitly does _not_ end in `_test.dart`, so that it is not picked
// up by `pub run test`. It is here for coveralls.
// up by `dart run test`. It is here for coveralls.

import 'builder/auto_mocks_test.dart' as builder_auto_mocks_test;
import 'builder/custom_mocks_test.dart' as builder_custom_mocks_test;
Expand Down
Loading