Skip to content

Commit bb0665c

Browse files
authored
Added support for saving legacy versions of VaporBoy (#103)
* Updated deps, started build support * Added the 0.1.1 legacy build * Renamed the legacy folder * Added support for putting legacy inside the legacy folder * Made travis just use build
1 parent dcd2f53 commit bb0665c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+4538
-3561
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ node_js:
77
install:
88
- npm install
99
script:
10-
- npm run preact:build
10+
- npm run build

devops/scripts/buildVaporBoy.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,15 @@ rm package-lock.json
1717

1818
npm install
1919

20-
npm run preact:build
20+
npm run build
2121

2222
# Copy the build output to public/ if successful build
2323
if [ $? -eq 0 ]; then
2424
rm -rf public
2525
mkdir -p public
2626
cp -r www/* public/
27+
mkdir -p public/legacy
28+
cp -r legacy/* public/legacy
2729
else
2830
echo "Failed Building vaporBoy"
2931
fi
14 KB
33.6 KB
2.74 KB
19 KB
43.7 KB
20.6 KB
98.4 KB
22.2 KB

0 commit comments

Comments
 (0)