blob: bb6bed70f382c61471a8b1babe3e6c9777210160 [file]
// Copyright (c) 2026, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
import 'dart:convert';
import 'dart:io';
import 'package:data_assets/data_assets.dart';
import 'package:hooks/hooks.dart';
void main(List<String> args) async {
await build(args, (input, output) async {
final dataFile = input.packageRoot.resolve('data/translations.json');
final translations = jsonDecode(
await File.fromUri(dataFile).readAsString(),
);
final translationsFile = input.outputDirectoryShared.resolve(
'translations.json',
);
await File.fromUri(
translationsFile,
).writeAsString(jsonEncode(translations));
output.assets.data.add(
DataAsset(
package: input.packageName,
name: 'translations',
file: translationsFile,
),
routing: input.config.linkingEnabled
? const ToLinkHook('pirate_speak')
: const ToAppBundle(),
);
});
}