Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion web/_tool/build_ci.dart
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@
// found in the LICENSE file

import 'dart:io';

import 'package:path/path.dart' as p;

import 'common.dart';
import 'fix_base_tags.dart';

Expand Down Expand Up @@ -53,7 +55,7 @@ void main() async {

// Build the sample and copy the files
await _run(directory, 'flutter', ['pub', 'get']);
await _run(directory, 'flutter', ['build', 'web']);
await _run(directory, 'flutter', ['build', 'web', '--wasm']);
await _run(directory, 'mv', [sourceBuildDir, targetDirectory]);
}

Expand Down