Adding upstream version 2.15.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
dcfd04081c
commit
d3b459fcc0
38 changed files with 396 additions and 59 deletions
4
testing/resources/dart_repo/.pre-commit-hooks.yaml
Normal file
4
testing/resources/dart_repo/.pre-commit-hooks.yaml
Normal file
|
@ -0,0 +1,4 @@
|
|||
- id: hello-world-dart
|
||||
name: hello world dart
|
||||
entry: hello-world-dart
|
||||
language: dart
|
6
testing/resources/dart_repo/bin/hello-world-dart.dart
Normal file
6
testing/resources/dart_repo/bin/hello-world-dart.dart
Normal file
|
@ -0,0 +1,6 @@
|
|||
import 'package:ansicolor/ansicolor.dart';
|
||||
|
||||
void main() {
|
||||
AnsiPen pen = new AnsiPen()..red();
|
||||
print("hello hello " + pen("world"));
|
||||
}
|
10
testing/resources/dart_repo/pubspec.yaml
Normal file
10
testing/resources/dart_repo/pubspec.yaml
Normal file
|
@ -0,0 +1,10 @@
|
|||
environment:
|
||||
sdk: '>=2.10.0 <3.0.0'
|
||||
|
||||
name: hello_world_dart
|
||||
|
||||
executables:
|
||||
hello-world-dart:
|
||||
|
||||
dependencies:
|
||||
ansicolor: ^2.0.1
|
Loading…
Add table
Add a link
Reference in a new issue