Skip to content

Commit e03aac2

Browse files
committed
add script to copy vendor over to dist
1 parent 7a99bf8 commit e03aac2

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

tasks/vendor_to_dist.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/bin/bash -e
2+
3+
vendor=vendor
4+
dist=dist
5+
6+
# clear and make a dist folder
7+
if [ -d "$dist" ]; then rm -rf $dist; fi
8+
mkdir -p $dist
9+
10+
# copy vendor files namely (extras/mathjax and topojson) over to the dist folder
11+
cp -r $vendor/* $dist

0 commit comments

Comments
 (0)