Skip to content

Commit b90e4e8

Browse files
authored
update the package markdown table; update the issue templates (#197)
1 parent c001828 commit b90e4e8

File tree

6 files changed

+22
-13
lines changed

6 files changed

+22
-13
lines changed

.github/ISSUE_TEMPLATE/ffigen.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
name: "package:ffigen"
3+
about: "Create a bug or file a feature request against package:ffigen."
4+
labels: "package:ffigen"
5+
---

.github/ISSUE_TEMPLATE/native_assets_builder.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
name: "package:native_assets_builder"
33
about: "Create a bug or file a feature request against package:native_assets_builder."
44
labels: "package:native_assets_builder"
5-
---
5+
---

.github/ISSUE_TEMPLATE/native_assets_cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
name: "package:native_assets_cli"
33
about: "Create a bug or file a feature request against package:native_assets_cli."
44
labels: "package:native_assets_cli"
5-
---
5+
---

.github/ISSUE_TEMPLATE/native_toolchain_c.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
name: "package:native_toolchain_c"
33
about: "Create a bug or file a feature request against package:native_toolchain_c."
44
labels: "package:native_toolchain_c"
5-
---
5+
---

.github/labeler.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
1-
# This configures the .github/workflows/pull_request_label.yml workflow.
1+
# Configuration for .github/workflows/pull_request_label.yml.
22

33
'type-infra':
4-
- .github/**
4+
- '.github/**'
5+
6+
'package:ffigen':
7+
- 'pkgs/ffigen/**'
58

69
'package:native_assets_builder':
7-
- pkgs/native_assets_builder/**/*
10+
- 'pkgs/native_assets_builder/**'
811

912
'package:native_assets_cli':
10-
- pkgs/native_assets_cli/**/*
13+
- 'pkgs/native_assets_cli/**'
1114

1215
'package:native_toolchain_c':
13-
- pkgs/native_toolchain_c/**/*
16+
- 'pkgs/native_toolchain_c/**'

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,12 @@ building and bundling.
77

88
## Packages
99

10-
| Package | Description | Version |
11-
| -------------------------------------------- | ------------------------------------------------------------------------------------------- | ------- |
12-
| [native_assets_builder](pkgs/native_assets_builder/) | A library that contains the logic for building native assets. This should not be used by users, and is used as shared implementation between dartdev and flutter_tools. | [![pub package](https://img.shields.io/pub/v/native_assets_builder.svg)](https://pub.dev/packages/native_assets_builder) |
13-
| [native_assets_cli](pkgs/native_assets_cli/) | A library that contains the argument and file formats for implementing a native assets CLI. | [![pub package](https://img.shields.io/pub/v/native_assets_cli.svg)](https://pub.dev/packages/native_assets_cli) |
14-
| [native_toolchain_c](pkgs/native_toolchain_c/) | A library to invoke the native C compiler installed on the host machine. | [![pub package](https://img.shields.io/pub/v/native_toolchain_c.svg)](https://pub.dev/packages/native_toolchain_c) |
10+
| Package | Description | Version |
11+
| --- | --- | --- |
12+
| [ffigen](pkgs/ffigen/) | Generator for FFI bindings, using LibClang to parse C, Objective-C, and Swift files. | [![pub package](https://img.shields.io/pub/v/ffigen.svg)](https://pub.dev/packages/ffigen) |
13+
| [native_assets_builder](pkgs/native_assets_builder/) | This package is the backend that invokes top-level `build.dart` scripts. | [![pub package](https://img.shields.io/pub/v/native_assets_builder.svg)](https://pub.dev/packages/native_assets_builder) |
14+
| [native_assets_cli](pkgs/native_assets_cli/) | A library that contains the argument and file formats for implementing a native assets CLI. | [![pub package](https://img.shields.io/pub/v/native_assets_cli.svg)](https://pub.dev/packages/native_assets_cli) |
15+
| [native_toolchain_c](pkgs/native_toolchain_c/) | A library to invoke the native C compiler installed on the host machine. | [![pub package](https://img.shields.io/pub/v/native_toolchain_c.svg)](https://pub.dev/packages/native_toolchain_c) |
1516

1617
## Publishing automation
1718

0 commit comments

Comments
 (0)