46b80ca773
Recommend removing ts/node_modules folder before attempting to build after this update. This moves ts/node_modules into the root of the project to work around https://github.com/ankitects/anki/pull/1405#issuecomment-936213861 Also fixes the sass errors shown when running scripts/svelte-check
19 lines
273 B
Python
19 lines
273 B
Python
workspace(
|
|
name = "ankidesktop",
|
|
managed_directories = {"@npm": [
|
|
"node_modules",
|
|
]},
|
|
)
|
|
|
|
load(":repos.bzl", "register_repos")
|
|
|
|
register_repos()
|
|
|
|
load(":defs.bzl", "setup_deps")
|
|
|
|
setup_deps()
|
|
|
|
load(":late_deps.bzl", "setup_late_deps")
|
|
|
|
setup_late_deps()
|