6eb6232be7
This CL is part of an effort to bump the SDK requirement to `3.12.0-0` for all the packages in `pkg` that are not published to `pub`, so that we can get better testing of the "private named parameters" feature. (Packages that *are* published to `pub` can't be safely bumped yet, because SDK 3.12 hasn't been released, and I don't want to block those packages' ability to publish useful updates to customers.) This change covers the following packages, which are owned by OWNERS_WASM: - pkg/dart2wasm - pkg/wasm_builder Changes to `pubspec.yaml` files were made manually. Changes to `.dart` files were made automatically, using `dart fix` to fix failures in the unnecessary_underscores lint. Change-Id: Ia83ba9109dcd3d488755d2df990dd2496a6a6964 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/487944 Auto-Submit: Paul Berry <paulberry@google.com> Commit-Queue: Daco Harkes <dacoharkes@google.com> Reviewed-by: Daco Harkes <dacoharkes@google.com> Reviewed-by: Srujan Gaddam <srujzs@google.com>
18 lines
412 B
YAML
18 lines
412 B
YAML
name: wasm_builder
|
|
# This package is not intended for consumption on pub.dev. DO NOT publish.
|
|
publish_to: none
|
|
description: Generate binary Wasm modules
|
|
|
|
environment:
|
|
sdk: '^3.12.0-0'
|
|
|
|
resolution: workspace
|
|
|
|
# Use 'any' constraints here; we get our versions from the DEPS file.
|
|
dependencies:
|
|
collection: any
|
|
|
|
# Use 'any' constraints here; we get our versions from the DEPS file.
|
|
dev_dependency:
|
|
lints: any
|