feat: major refactor

This commit is contained in:
Lea Anthony
2019-07-12 10:12:15 +10:00
parent caa1e04b5a
commit 8aa97f64ef
72 changed files with 9221 additions and 980 deletions

9
scripts/build.sh Executable file
View File

@@ -0,0 +1,9 @@
#!/usr/bin/env bash
# Build runtime
cd runtime/js
npm run build
cd ../..
mewn

View File

@@ -10,6 +10,14 @@ package cmd
// Version - Wails version
const Version = "${TAG}"
EOF
# Build runtime
cd runtime/js
npm run build
cd ../..
mewn
git add cmd/version.go
git commit cmd/version.go -m "Bump to ${TAG}"
git tag ${TAG}