This repository was archived by the owner on Dec 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* list all commands when running `just` * only init submodule if it hasn't been initialized * allow for `_` in prefix
- Loading branch information
Showing
4 changed files
with
33 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,19 @@ | ||
_help: | ||
@just -l | ||
|
||
get: | ||
@dart pub get | ||
|
||
analyze: | ||
@dart analyze | ||
|
||
test: | ||
@git submodule init | ||
@git submodule update | ||
@dart test | ||
#!/bin/bash | ||
set -euo pipefail | ||
|
||
if git submodule status | grep -q '^-'; then | ||
git submodule init | ||
git submodule update | ||
fi | ||
|
||
dart test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,7 @@ | ||
/// Support for doing something awesome. | ||
/// | ||
/// More dartdocs go here. | ||
library; | ||
|
||
export 'package:uuid/uuid.dart' show UuidValue; | ||
|
||
export 'src/base32.dart'; | ||
export 'src/typeid.dart'; | ||
export 'src/decoded_typeid.dart'; | ||
|
||
// TODO: Export any libraries intended for clients of this package. |
Submodule typeid
updated
from 27cf27 to 3c625f