build_web_compilers 0.3.1
build_web_compilers: ^0.3.1 copied to clipboard
Builder implementations wrapping Dart compilers.
0.3.1 #
- Cast failures will now be ignored in dartdevc by default (these were enabled
in the latest sdk), and added an
ignore_cast_failuresoption to thebuild_web_compilers|entrypointbuilder which you can set totrueto enable them.- At some point in the future it is expected that the default for this will flip.
0.3.0+1 #
- Fixed an issue with
dart2jsand the--no-source-mapsflag.
0.3.0 #
Breaking changes #
- Split
ModuleBuilder,UnlinkedSummaryBuilderandLinkedSummaryBuilderinto a separatebuild_modulespackage.
0.2.1+1 #
- Support the latest
analyzerpackage.
0.2.1 #
- All dart files under
testare now compiled by default instead of only the_browser_test.dartfiles (minus vm/node test bootstrap files). This means the original tests can be debugged directly (prior to package:test bootstrapping). - Updated to
package:buildversion0.12.0.
0.2.0 #
New Features #
- Added support for
dart2js. This can be configured using the top levelcompileroption for thebuild_web_compilers|entrypointbuilder. The supported options aredartdevc(the default) anddart2js. Args can be passed todart2jsusing thedart2js_argsoption. For example:
targets:
<my_package>:
builders:
build_web_compilers|entrypoint:
options:
compiler: dart2js
dart2js_args:
- --minify
Breaking Changes #
- Renamed
ddc_bootstrapbuilder toentrypoint, the exposed class also changed fromDevCompilerBootstrapBuildertoWebEntrypointBuilder. - Renamed
jsBootstrapExtensiontoddcBootstrapExtensionsince it is only required when using the dev compiler.
0.1.1 #
- Mark
ddc_bootstrapbuilder withbuild_to: cache. - Publish as
build_web_compilers
0.1.0 #
- Add builder factories.
- Fixed temp dir cleanup bug on windows.
- Enabled support for running tests in --precompiled mode.
0.0.1 #
- Initial release with support for building analyzer summaries and DDC modules.