Skip to content
This repository was archived by the owner on Feb 21, 2024. It is now read-only.

Commit 9ef4da1

Browse files
chore: generate template (#68)
Co-authored-by: VGV Bot <[email protected]>
1 parent b929ba9 commit 9ef4da1

File tree

4 files changed

+7
-13
lines changed

4 files changed

+7
-13
lines changed

brick/__brick__/{{project_name.snakeCase()}}/.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
.buildlog/
99
.history
1010
.svn/
11+
migrate_working_dir/
1112

1213
# IntelliJ related
1314
*.iml
@@ -16,7 +17,7 @@
1617
.idea/
1718

1819
# VSCode related
19-
.vscode/
20+
.vscode/*
2021

2122
# Flutter/Dart/Pub related
2223
**/doc/api/

brick/__brick__/{{project_name.snakeCase()}}/README.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,10 @@
1010

1111
**❗ In order to start using {{project_name.titleCase()}} you must have the [Flutter SDK][flutter_install_link] installed on your machine.**
1212

13-
Add `{{project_name.snakeCase()}}` to your `pubspec.yaml`:
14-
15-
```yaml
16-
dependencies:
17-
{{project_name.snakeCase()}}:
18-
```
19-
20-
Install it:
13+
Install via `flutter pub add`:
2114

2215
```sh
23-
flutter packages get
16+
dart pub add {{project_name.snakeCase()}}
2417
```
2518

2619
---
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
include: package:very_good_analysis/analysis_options.5.0.0.yaml
1+
include: package:very_good_analysis/analysis_options.5.1.0.yaml

brick/__brick__/{{project_name.snakeCase()}}/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ version: 0.1.0+1
55

66
environment:
77
sdk: ">=3.0.0 <4.0.0"
8-
flutter: 3.10.0
8+
flutter: ">=3.10.0"
99

1010
dependencies:
1111
flutter:
@@ -15,4 +15,4 @@ dev_dependencies:
1515
flutter_test:
1616
sdk: flutter
1717
mocktail: ^1.0.0
18-
very_good_analysis: ^5.0.0
18+
very_good_analysis: ^5.1.0

0 commit comments

Comments
 (0)