Skip to content

Commit 8e43206

Browse files
committed
Ignore licenses for package:platform
1 parent 4e32b75 commit 8e43206

File tree

9 files changed

+23
-77
lines changed

9 files changed

+23
-77
lines changed

.github/labeler.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,7 @@
2323
"package:fixnum":
2424
- changed-files:
2525
- any-glob-to-any-file: 'pkgs/fixnum/**'
26+
27+
"package:typed_data":
28+
- changed-files:
29+
- any-glob-to-any-file: 'pkgs/typed_data/**'

pkgs/typed_data/.github/workflows/test-package.yml renamed to .github/workflows/typed_data.yaml

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,26 @@
1-
name: Dart CI
1+
name: package:typed_data
22

33
on:
4-
# Run on PRs and pushes to the default branch.
4+
# Run CI on pushes to the main branch, and on PRs against main.
55
push:
6-
branches: [ master ]
6+
branches: [ main ]
7+
paths:
8+
- '.github/workflows/typed_data.yaml'
9+
- 'pkgs/typed_data/**'
710
pull_request:
8-
branches: [ master ]
11+
branches: [ main ]
12+
paths:
13+
- '.github/workflows/typed_data.yaml'
14+
- 'pkgs/typed_data/**'
915
schedule:
1016
- cron: "0 0 * * 0"
11-
1217
env:
1318
PUB_ENVIRONMENT: bot.github
1419

20+
defaults:
21+
run:
22+
working-directory: pkgs/typed_data/
23+
1524
jobs:
1625
# Check code formatting and static analysis on a single OS (linux)
1726
# against Dart dev.

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ This repository is home to various Dart packages under the [dart.dev](https://pu
1414
| [convert](pkgs/convert/) | Utilities for converting between data representations. | [![pub package](https://img.shields.io/pub/v/convert.svg)](https://pub.dev/packages/convert) |
1515
| [crypto](pkgs/crypto/) | Implementations of SHA, MD5, and HMAC cryptographic functions. | [![pub package](https://img.shields.io/pub/v/crypto.svg)](https://pub.dev/packages/crypto) |
1616
| [fixnum](pkgs/fixnum/) | Library for 32- and 64-bit signed fixed-width integers. | [![pub package](https://img.shields.io/pub/v/fixnum.svg)](https://pub.dev/packages/fixnum) |
17+
| [typed_data](pkgs/typed_data/) | Utility functions and classes related to the dart:typed_data library. | [![pub package](https://img.shields.io/pub/v/typed_data.svg)](https://pub.dev/packages/typed_data) |
1718

1819
## Publishing automation
1920

pkgs/typed_data/.github/dependabot.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

pkgs/typed_data/.github/workflows/no-response.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.

pkgs/typed_data/.github/workflows/publish.yaml

Lines changed: 0 additions & 17 deletions
This file was deleted.

pkgs/typed_data/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
## 1.4.0-wip
1+
## 1.4.0
22

33
* The type of the `buffer` constructor argument to `TypedDataBuffer` is now
44
`TypeDataList<E>` (instead of `List<E>`). While this is breaking change
55
statically there was a runtime cast that makes this change a no-op in
66
practice.
77
* Require Dart 3.5
8+
* Move to `dart-lang/core` monorepo.
89

910
## 1.3.2
1011

pkgs/typed_data/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Dart CI](https://github.com/dart-lang/typed_data/actions/workflows/test-package.yml/badge.svg)](https://github.com/dart-lang/typed_data/actions/workflows/test-package.yml)
1+
[![Dart CI](https://github.com/dart-lang/core/actions/workflows/typed_data.yaml/badge.svg)](https://github.com/dart-lang/core/actions/workflows/typed_data.yaml)
22
[![pub package](https://img.shields.io/pub/v/typed_data.svg)](https://pub.dev/packages/typed_data)
33
[![package publisher](https://img.shields.io/pub/publisher/typed_data.svg)](https://pub.dev/packages/typed_data/publisher)
44

pkgs/typed_data/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: typed_data
2-
version: 1.4.0-wip
2+
version: 1.4.0
33
description: >-
44
Utility functions and classes related to the dart:typed_data library.
55
repository: https://github.com/dart-lang/core/tree/main/pkgs/typed_data

0 commit comments

Comments
 (0)