Break code into separate scripts, no webpack

- Broke up app.js into 5 scripts
- We have to manually include each script in index.html
- We have to pay attention to the order they load in
This commit is contained in:
Colt Steele
2019-03-04 23:00:28 -08:00
parent b96a9dbce0
commit dd54924933
7 changed files with 72 additions and 45 deletions

View File

@ -39,5 +39,9 @@
</div>
<img src="./assets/webpack.svg" />
</body>
<script src="./src/app.js"></script>
<script src="./src/app/alert.service.js"></script>
<script src="./src/app/component.service.js"></script>
<script src="./src/app/utils/inputs-are-valid.js"></script>
<script src="./src/app/utils/parse-inputs.js"></script>
<script src="./src/app/app.js"></script>
</html>