build icon indicating copy to clipboard operation
build copied to clipboard

A build system for Dart written in Dart

Results 258 build issues
Sort by recently updated
recently updated
newest added

Directly navigating to https://github.com/dart-lang/build/blob/master/analysis_options.yaml (without a referrer?) is currently failing, so the markdown checker is failing. I disabled the workflow for now, but we should re-enable it.

cleanup

## The Issue While compiling a Web project that have some dependency or code like `dart:io` (or any non browser compatible dependency), build will show a warning: ``` [WARNING]build_web_compilers:entrypoint on...

# Problem Today we eagerly delete all invalidated outputs, and then incrementally re-output them during the build. This causes problems for the analyzer (or any other tool watching the file...

type-enhancement

When i generate api_client.g.dart file it will automatically generating **Listdefects** to **defects: Instance of 'MultipartFile'** and i need to pass in request as Listdefects , [1,2,3,4] like this. can you...

## Base informations * Dart SDK Version ``` Dart SDK version: 2.17.0 (stable) (Mon May 9 10:36:47 2022 +0200) on "macos_x64" ``` * What package from this repo you are...

Every time when we would like to include custom sources to `build.yaml` file, we also have to add all items from [defaultNonRootVisibleAssets](https://github.com/dart-lang/build/blob/995fc94d34c8a6c144002cf9e04a485c4348b878/build_runner_core/lib/src/generate/options.dart#L24) or [defaultRootPackageSources](https://github.com/dart-lang/build/blob/995fc94d34c8a6c144002cf9e04a485c4348b878/build_runner_core/lib/src/generate/options.dart#L37) manually. It's ok if we develop...

I have a builder defined like this: ```yaml builders: my_builder: import: my_package:my_builder/builder.dart builder_factories: - myBuilder build_extensions: $package$: - lib/generated/my_file.dart auto_apply: dependents build_to: source defaults: options: dirs: - dir_1 ``` and...

state: needs info

Here https://github.com/dart-lang/build/tree/master/build_config#defining-builders-to-apply-to-dependents one can read about `build_extensions` from `build.yaml`, it is required and cannot have `null` values, 'must match the merged buildExtensions maps from each Builder' etc. However, my tests...

type-enhancement

I run `flutter packages pub run build_runner watch --delete-conflicting-outputs` and there are some errors such as `Could not generate fromJson code for avatarBytes.` But when I fixed all error and...

state: needs info

* Dart SDK Version: `2.14.2` * Packages using: `json_serializable: ^5.0.0` * Builders: ```yaml targets: $default: builders: json_serializable: options: field_rename: snake explicit_to_json: true ``` I'm using a base package to store...