Made parcel build work and created a makefile so I don't need to repeat

steps each build
This commit is contained in:
Warwick 2022-04-11 11:55:07 +01:00
parent 64691bf736
commit 949a6df2c4
3 changed files with 532 additions and 5633 deletions

13
Makefile Normal file
View file

@ -0,0 +1,13 @@
entrypoint=index.html
postbuild: build
node postbuild.js
build: node_modules
parcel build ${entrypoint}
node_modules:
npm install
clean:
git clean -xdf

6146
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -10,7 +10,7 @@ import {
Typography, Typography,
Button, Button,
List, List,
ListHeader, ListSubheader,
ListItemIcon, ListItemIcon,
ListItem, ListItem,
Link, Link,
@ -78,9 +78,9 @@ class GraphicsBlog extends Component {
windows and OpenGL to render the meshes. windows and OpenGL to render the meshes.
</Typography> </Typography>
<List dense> <List dense>
<ListHeader> <ListSubHeader>
To Do: To Do:
</ListHeader> </ListSubHeader>
<ListItem> <ListItem>
<ListItemIcon><ArrowRightIcon /></ListItemIcon> <ListItemIcon><ArrowRightIcon /></ListItemIcon>
Give meshes their own relative location. Give meshes their own relative location.