diff options
author | Justine Tunney <jart@google.com> | 2017-06-13 19:29:45 -0700 |
---|---|---|
committer | TensorFlower Gardener <gardener@tensorflow.org> | 2017-06-13 22:04:47 -0700 |
commit | 9263faf2a7c413e4f7a5fdc6a56152ec9c2c316b (patch) | |
tree | 3b0f3e265134858f10784c53a44545ced80f69c5 /third_party | |
parent | b6039c875290cdd5c9a62e01393b75b928827504 (diff) |
Use correct NumericJS in open source
The GitHub source turns out to be very different from what's on the web
server. Because the source code has a lot of </script> tags in the
comments, which are difficult for jsoup to escape, I had to add a basic
minifier feature to Vulcanize. So as a bonus, this change makes the
TensorBoard binary much smaller too.
PiperOrigin-RevId: 158932524
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/js.bzl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/third_party/js.bzl b/third_party/js.bzl index 46466c3f31..b5395a0b0c 100644 --- a/third_party/js.bzl +++ b/third_party/js.bzl @@ -189,11 +189,12 @@ def tensorboard_js_workspace(): "http://mirror.bazel.build/raw.githubusercontent.com/sloisel/numeric/v1.2.6/license.txt", "https://raw.githubusercontent.com/sloisel/numeric/v1.2.6/license.txt", ], - "dfaca3b8485bee735788cc6eebca82ea25719adc1fb8911c7799c6bd5a95df3b": [ - "http://mirror.bazel.build/raw.githubusercontent.com/sloisel/numeric/v1.2.6/src/numeric.js", - "https://raw.githubusercontent.com/sloisel/numeric/v1.2.6/src/numeric.js", + "5dcaba2016fd237091e3a17b0dc272fb21f0e2b15d7628f95a0ad0cd4cdf4020": [ + "http://mirror.bazel.build/www.numericjs.com/lib/numeric-1.2.6.js", + "http://www.numericjs.com/lib/numeric-1.2.6.js", ], }, + rename = {"numeric-1.2.6.js": "numeric.js"}, ) filegroup_external( |