blob: 1daf2fe084f4073ef04cb02de1f5fb399bd37dab [file] [log] [blame]
#!/usr/bin/env bash
# Copyright 2015 The Vanadium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
set -euo pipefail
readonly DIR=${1}
mkdir -p ${DIR}
get() {
local -r NAME=${1}
local -r URL=${2}
curl -L -o ${DIR}/${NAME} ${URL}
}
get async.min.js https://raw.githubusercontent.com/caolan/async/master/dist/async.min.js
get lodash.min.js https://raw.githubusercontent.com/lodash/lodash/3.10.0/lodash.min.js
get moment.min.js https://raw.githubusercontent.com/moment/moment/2.10.3/min/moment.min.js
get mousetrap.min.js https://raw.githubusercontent.com/ccampbell/mousetrap/1.5.3/mousetrap.min.js
get react.min.js https://fb.me/react-0.13.3.min.js
get react-with-addons.js https://fb.me/react-with-addons-0.13.3.js