Made parcel build work and created a makefile so I don't need to repeat
steps each build
This commit is contained in:
parent
64691bf736
commit
949a6df2c4
3 changed files with 532 additions and 5633 deletions
13
Makefile
Normal file
13
Makefile
Normal 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
|
||||||
6142
package-lock.json
generated
6142
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
|
@ -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.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue