-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
) Signed-off-by: Martijn Stevenson <[email protected]>
- Loading branch information
1 parent
97de5ab
commit 921039a
Showing
2 changed files
with
50 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
diff --git a/bazel/emscripten_deps.bzl b/bazel/emscripten_deps.bzl | ||
index 95801ba..95fdabd 100644 | ||
--- a/bazel/emscripten_deps.bzl | ||
+++ b/bazel/emscripten_deps.bzl | ||
@@ -69,31 +69,3 @@ def emscripten_deps(emscripten_version = "latest"): | ||
build_file = "@emsdk//emscripten_toolchain:emscripten.BUILD", | ||
type = "zip", | ||
) | ||
- | ||
- if "emscripten_npm_linux" not in excludes: | ||
- npm_install( | ||
- name = "emscripten_npm_linux", | ||
- package_json = "@emscripten_bin_linux//:emscripten/package.json", | ||
- package_lock_json = "@emscripten_bin_linux//:emscripten/package-lock.json", | ||
- ) | ||
- | ||
- if "emscripten_npm_mac" not in excludes: | ||
- npm_install( | ||
- name = "emscripten_npm_mac", | ||
- package_json = "@emscripten_bin_mac//:emscripten/package.json", | ||
- package_lock_json = "@emscripten_bin_mac//:emscripten/package-lock.json", | ||
- ) | ||
- | ||
- if "emscripten_npm_mac_arm64" not in excludes: | ||
- npm_install( | ||
- name = "emscripten_npm_mac", | ||
- package_json = "@emscripten_bin_mac_arm64//:emscripten/package.json", | ||
- package_lock_json = "@emscripten_bin_mac_arm64//:emscripten/package-lock.json", | ||
- ) | ||
- | ||
- if "emscripten_npm_win" not in excludes: | ||
- npm_install( | ||
- name = "emscripten_npm_win", | ||
- package_json = "@emscripten_bin_win//:emscripten/package.json", | ||
- package_lock_json = "@emscripten_bin_win//:emscripten/package-lock.json", | ||
- ) | ||
diff --git a/bazel/emscripten_toolchain/BUILD.bazel b/bazel/emscripten_toolchain/BUILD.bazel | ||
index eb36959..12dba37 100644 | ||
--- a/bazel/emscripten_toolchain/BUILD.bazel | ||
+++ b/bazel/emscripten_toolchain/BUILD.bazel | ||
@@ -13,7 +13,6 @@ filegroup( | ||
"env.sh", | ||
"env.bat", | ||
"@emsdk//:binaries", | ||
- "@emsdk//:node_modules", | ||
"@nodejs//:node_files", | ||
], | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters