Skip to content

Commit b16d3bc

Browse files
committed
Add command for building client
1 parent 9ddaf47 commit b16d3bc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

client/index.html

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
content="A web editor for p5.js, a JavaScript library with the goal of making coding accessible to artists, designers, educators, and beginners."
1313
/>
1414
<title>p5.js Web Editor</title>
15-
1615
<link
1716
href="https://fonts.googleapis.com/css?family=Inconsolata"
1817
rel="stylesheet"
@@ -25,7 +24,7 @@
2524
/>
2625
<link rel='shortcut icon'
2726
href='https://raw.githubusercontent.com/processing/p5.js-website-OLD/master/favicon.ico'
28-
type='image/x-icon' / >
27+
type='image/x-icon' />
2928
</head>
3029
<body>
3130
<div id="root" class="root-app"></div>

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
"fetch-examples-gg:prod": "cross-env NODE_ENV=production node ./dist/fetch-examples-gg.bundle.js",
2222
"fetch-examples-ml5:prod": "cross-env NODE_ENV=production node ./dist/fetch-examples-ml5.bundle.js",
2323
"heroku-postbuild": "touch .env; npm run build",
24-
"parcel": "parcel client/index.html"
24+
"parcel": "parcel client/index.html",
25+
"parcel:build": "parcel build client/index.html"
2526
},
2627
"jest": {
2728
"setupFiles": [

0 commit comments

Comments
 (0)