mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-12 20:18:41 -09:00
dist -> build
This commit is contained in:
parent
7c77203566
commit
af482e0eb4
2 changed files with 5 additions and 2 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
|
@ -2,3 +2,4 @@ node_modules
|
|||
.next
|
||||
npm-debug.log
|
||||
dist
|
||||
build
|
||||
|
|
|
|||
|
|
@ -4,6 +4,7 @@ rm -rf node_modules
|
|||
rm -rf ./app/node_modules
|
||||
rm -rf ./dist/HyperTerm-darwin-x64
|
||||
rm -rf ./dist/
|
||||
rm -rf ./build/
|
||||
mkdir dist
|
||||
./install.sh
|
||||
npm run lint
|
||||
|
|
@ -12,6 +13,7 @@ npm install
|
|||
npm run lint
|
||||
npm run build
|
||||
cd -
|
||||
cp app/index.html dist/
|
||||
cp -r app/dist dist/
|
||||
cp app/index.html build/
|
||||
cp -r app/dist build/
|
||||
electron-packager ./ --platform=darwin --out=dist --arch=x64 --app-bundle-id="co.zeit.hyperterm" --app-version="$VERSION" --osx-sign --icon=icon.icns --prune --ignore=app
|
||||
rm -rf ./build/
|
||||
|
|
|
|||
Loading…
Reference in a new issue