4 Commits

Author SHA1 Message Date
Colt Steele
2b11dd3624 Webpack now bundling all our app code
- We use import/export to indicate dependencies
- Webpack makes sure everything loads in the correct order
- We can remove all our additional script tags in index.html
2019-03-05 11:18:36 -08:00
Colt Steele
2400d188ea Installed webpack
- Installed webpack and webpack-cli
- Added a start script in package.json which calls webpack
- Made an index.js file, which is the file webpack looks for by default
- Webpack spits out our code in dist/main.js by default
- Currently our main app code has nothing to do with webpack, but it will soon
2019-03-04 23:09:36 -08:00
Colt Steele
dd54924933 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
2019-03-04 23:00:28 -08:00
Colt Steele
b96a9dbce0 Initial app code, no webpack
- Pre-webpack version of our simple app
- One app.js file with all the code
- Bootstrap included via CDS, no SASS or customization
- Single SVG included in assets folder
2019-03-04 22:51:35 -08:00