File size: 285 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

set -e # exit on error


echo "building via webpack"

yarn webpack --config website/webpack.config.js

echo "building via parcel"

(
  cd examples/hooks-e-commerce;
  yarn build --public-url /examples/hooks-e-commerce --dist-dir ../../website/examples/hooks-e-commerce;
)