Skip to content

Commit 87d10ca

Browse files
Merge branch 'warpdotdev:main' into K8-specs
2 parents b600133 + 709164b commit 87d10ca

5 files changed

Lines changed: 41 additions & 2 deletions

File tree

FORMAT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ name: Example workflow
6666
command: echo {{string}}
6767
arguments:
6868
- name: string
69-
- description: The value to echo
69+
description: The value to echo
7070
```
7171

7272
## `arguments.description`
@@ -75,4 +75,4 @@ The description of the argument. This is surfaced in both commands.dev and Warp
7575

7676
## `arguments.default_value`
7777
-----
78-
The default value for the argument. If specified, the `default_value` replaces the argument name within the command. Optional
78+
The default value for the argument. If specified, the `default_value` replaces the argument name within the command. Optional
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
name: Run Build Ruuner
3+
command: "flutter pub run build_runner build --delete-conflicting-outputs"
4+
tags:
5+
- flutter
6+
description: Run build runner to generate code-gen for flutter project.
7+
source_url: "https://pub.dev/packages/build_runner"
8+
author: Birju Vachhani
9+
author_url: "https://github.com/BirjuVachhani"
10+
shells: []
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
name: Run Build Ruuner Watch
3+
command: "flutter pub run build_runner watch --delete-conflicting-outputs"
4+
tags:
5+
- flutter
6+
description: Run build runner to generate code-gen for flutter project when files changes.
7+
source_url: "https://pub.dev/packages/build_runner"
8+
author: Birju Vachhani
9+
author_url: "https://github.com/BirjuVachhani"
10+
shells: []
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
name: Clean Project
3+
command: "flutter clean && flutter pub get"
4+
tags:
5+
- flutter
6+
description: Cleans flutter project and gets dependencies to make project ready for a fresh run.
7+
source_url: "https://docs.flutter.dev/reference/flutter-cli"
8+
author: Birju Vachhani
9+
author_url: "https://github.com/BirjuVachhani"
10+
shells: []
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
name: Clear Xcode Derived Data
3+
command: rm -rf ~/Library/Developer/Xcode/DerivedData
4+
tags:
5+
- ios
6+
- xcode
7+
description: ~
8+
arguments: []
9+
shells: []

0 commit comments

Comments
 (0)