angular-cn/postinstall.sh

13 lines
258 B
Bash
Raw Normal View History

2014-09-18 17:56:38 -04:00
#! /bin/sh
2014-09-19 17:55:37 -04:00
git submodule init && git submodule update
2014-09-18 17:56:38 -04:00
rm node_modules/traceur
ln -s ../tools/traceur node_modules/traceur
rm node_modules/js2dart
2014-09-19 17:55:37 -04:00
ln -s ../tools/js2dart node_modules/js2dart
2014-09-18 17:56:38 -04:00
2014-09-19 17:55:37 -04:00
(cd tools/traceur; npm install)
2014-09-18 17:56:38 -04:00
2014-09-19 17:55:37 -04:00
(cd tools/js2dart; npm install)