| // Copyright 2019 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| import '../base/common.dart'; |
| import '../base/logger.dart'; |
| import '../build_info.dart'; |
| import '../globals.dart'; |
| import '../runner/flutter_command.dart' show DevelopmentArtifact, FlutterCommandResult; |
| import '../web/compile.dart'; |
| class BuildWebCommand extends BuildSubCommand { |
| defaultBuildMode = BuildMode.release; |
| Future<Set<DevelopmentArtifact>> get requiredArtifacts async => const <DevelopmentArtifact>{ |
| DevelopmentArtifact.universal, |
| final String name = 'web'; |
| bool get isExperimental => true; |
| final String description = '(EXPERIMENTAL) build a web application bundle.'; |
| Future<FlutterCommandResult> runCommand() async { |
| final String target = argResults['target']; |
| final Status status = logger.startProgress('Compiling $target to JavaScript...', timeout: null); |
| final int result = await webCompiler.compile(target: target); |
| throwToolExit('Failed to compile $target to JavaScript.'); |