test: cleanup rxjs custom build

The latest rxjs release works with closure compiler out of the box.
We no longer need to compile our own.

Also put closure options into a file rather than using a shell script.
This commit is contained in:
Alex Eagle
2017-05-03 10:45:45 -07:00
committed by Matias Niemelä
parent 7f9c589ba3
commit 5856298798
11 changed files with 50 additions and 151 deletions

View File

@ -1,14 +1,18 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Hello World</title>
<base href="/">
</head>
<body>
<hello-world-app>Loading...</hello-world-app>
<script src="dist/bundle.js"></script>
<body>
<hello-world-app>Loading...</hello-world-app>
<script src="node_modules/zone.js/dist/zone.min.js"></script>
<script src="dist/bundle.js"></script>
</body>
</html>
</html>