Skip to content

Commit 30a84a6

Browse files
committed
Update README.md
1 parent 70de3f6 commit 30a84a6

File tree

4 files changed

+40
-7
lines changed

4 files changed

+40
-7
lines changed

.travis.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ matrix:
1111
sources:
1212
- ubuntu-toolchain-r-test # if we don't specify this, the libstdc++6 we get is the wrong version
1313
packages:
14+
- lib32stdc++6 # https://github.com/flutter/flutter/issues/6207
1415
- libstdc++6
1516
- fonts-droid
1617
before_script:
@@ -33,6 +34,7 @@ matrix:
3334
- ubuntu-toolchain-r-test # if we don't specify this, the libstdc++6 we get is the wrong version
3435
- llvm-toolchain-precise # for clang-format-5.0
3536
packages:
37+
- lib32stdc++6 # https://github.com/flutter/flutter/issues/6207
3638
- libstdc++6
3739
- fonts-droid
3840
- clang-format-5.0
@@ -42,7 +44,7 @@ matrix:
4244
- flutter doctor
4345
- pub global activate flutter_plugin_tools
4446
script:
45-
- ./script/plugin_tools.sh format --travis --clang-format=clang-format-5.0
47+
- flutter format `pwd`/packages
4648
- ./script/plugin_tools.sh test
4749
# Job 3) Build example APKs and run Java tests
4850
- os: linux

README.md

+34-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,37 @@
1-
# Helpful packages for Flutter
1+
# Flutter plugins
22

3-
This repository contains miscellaneous packages that help you build flutter
4-
apps. It is maintained by the Flutter team.
3+
[![Build Status](https://travis-ci.org/flutter/packages.svg?branch=master)](https://travis-ci.org/flutter/packages)
4+
[![Build Status](https://api.cirrus-ci.com/github/flutter/packages.svg)](https://cirrus-ci.com/github/flutter/packages)
55

6-
# Contributing
6+
This repo is a companion repo to the main [flutter repo](
7+
https://github.com/flutter/flutter). It contains the source code for Flutter's
8+
first-party packages (i.e., packages developed by the core Flutter team).
9+
Check the [`packages`](./packages) directory to see all packages.
10+
11+
These packages are also available on [pub](https://pub.dartlang.org/flutter/packages).
12+
13+
## Issues
14+
15+
Please file any issues, bugs, or feature requests in the [main flutter
16+
repo](https://github.com/flutter/flutter/issues/new).
17+
18+
## Contributing
19+
20+
If you wish to contribute a new package to the Flutter ecosystem, please
21+
see the documentation for [developing packages](https://flutter.io/developing-packages/). You can store
22+
your package source code in any GitHub repository (the present repo is only
23+
intended for packages developed by the core Flutter team). Once your package
24+
is ready you can [publish](https://flutter.io/developing-packages/#publish)
25+
to the [pub repository](https://pub.dartlang.org/).
26+
27+
If you wish to contribute a change to any of the existing packages in this repo,
28+
please review our [contribution guide](https://github.com/flutter/packages/blob/master/CONTRIBUTING.md),
29+
and send a [pull request](https://github.com/flutter/packages/pulls).
30+
31+
## Plugins
32+
These are the available packages in this repository.
33+
34+
| Plugin | Pub |
35+
|--------|-----|
36+
| [palette_generator](./packages/palette_generator/) | [![pub package](https://img.shields.io/pub/v/palette_generator.svg)](https://pub.dartlang.org/packages/palette_generator) |
737

8-
See [CONTRIBUTING.md](CONTRIBUTING.md) for information on contributing to these
9-
packages.

analysis_options.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ analyzer:
2525
missing_return: warning
2626
# allow having TODOs in the code
2727
todo: ignore
28+
exclude:
29+
- 'flutter/**'
2830

2931
linter:
3032
rules:

script/plugin_tools.sh

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then
55
echo "Running for all packages"
66
pub global run flutter_plugin_tools "$@"
77
else
8+
echo "Looking for changes in $TRAVIS_COMMIT_RANGE"
89
FLUTTER_CHANGED_GLOBAL=`git diff --name-only $TRAVIS_COMMIT_RANGE | grep -v packages | wc -l`
910
FLUTTER_CHANGED_PACKAGES=`git diff --name-only $TRAVIS_COMMIT_RANGE | grep -o "packages/[^/]*" | sed -e "s/packages\///g" | sort | uniq | paste -s -d, -`
1011
if [ "${FLUTTER_CHANGED_PACKAGES}" = "" ] || [ $FLUTTER_CHANGED_GLOBAL -gt 0 ]; then

0 commit comments

Comments
 (0)