Skip to content

update the package markdown table; update the issue templates #197

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/ISSUE_TEMPLATE/ffigen.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
name: "package:ffigen"
about: "Create a bug or file a feature request against package:ffigen."
labels: "package:ffigen"
---
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/native_assets_builder.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
name: "package:native_assets_builder"
about: "Create a bug or file a feature request against package:native_assets_builder."
labels: "package:native_assets_builder"
---
---
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/native_assets_cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
name: "package:native_assets_cli"
about: "Create a bug or file a feature request against package:native_assets_cli."
labels: "package:native_assets_cli"
---
---
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/native_toolchain_c.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
name: "package:native_toolchain_c"
about: "Create a bug or file a feature request against package:native_toolchain_c."
labels: "package:native_toolchain_c"
---
---
13 changes: 8 additions & 5 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
# This configures the .github/workflows/pull_request_label.yml workflow.
# Configuration for .github/workflows/pull_request_label.yml.

'type-infra':
- .github/**
- '.github/**'

'package:ffigen':
- 'pkgs/ffigen/**'

'package:native_assets_builder':
- pkgs/native_assets_builder/**/*
- 'pkgs/native_assets_builder/**'

'package:native_assets_cli':
- pkgs/native_assets_cli/**/*
- 'pkgs/native_assets_cli/**'

'package:native_toolchain_c':
- pkgs/native_toolchain_c/**/*
- 'pkgs/native_toolchain_c/**'
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,12 @@ building and bundling.

## Packages

| Package | Description | Version |
| -------------------------------------------- | ------------------------------------------------------------------------------------------- | ------- |
| [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) |
| [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) |
| [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) |
| Package | Description | Version |
| --- | --- | --- |
| [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) |
| [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) |
| [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) |
| [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) |

## Publishing automation

Expand Down