mirror of
https://github.com/enso-org/enso.git
synced 2024-11-29 14:02:10 +03:00
21 lines
522 B
Python
21 lines
522 B
Python
load("@aspect_bazel_lib//lib:write_source_files.bzl", "write_source_files")
|
|
load("@aspect_rules_ts//ts:defs.bzl", "ts_config")
|
|
load("@npm//:defs.bzl", "npm_link_all_packages")
|
|
|
|
npm_link_all_packages()
|
|
|
|
ts_config(
|
|
name = "tsconfig",
|
|
src = "tsconfig.json",
|
|
visibility = [":__subpackages__"],
|
|
)
|
|
|
|
write_source_files(
|
|
name = "write_all",
|
|
additional_update_targets = [
|
|
"//app/rust-ffi:write_wasm_dist",
|
|
"//app/ydoc-shared:write_ast_codegen",
|
|
"//app/gui:write_icon_metadata",
|
|
],
|
|
)
|