-
Notifications
You must be signed in to change notification settings - Fork 365
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [skipci] ci: fix condition of auto trigger * fix * [skipci] fix * remove tutorial doc * fix * fix
- Loading branch information
Showing
8 changed files
with
17 additions
and
101 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
@echo off | ||
|
||
cd WebApp | ||
call npm install --legacy-peer-deps | ||
call npm run build | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,19 @@ | ||
#!/bin/bash -eu | ||
|
||
cd WebApp | ||
npm install --legacy-peer-deps | ||
npm run build | ||
npm run pack | ||
|
||
chmod a+x webserver | ||
|
||
app_name=webserver | ||
|
||
if [ "$(uname)" == 'Darwin' ]; then | ||
app_name=webserver_mac | ||
mv webserver $app_name | ||
fi | ||
|
||
chmod a+x webserver | ||
mv webserver $app_name | ||
|
||
cd .. | ||
mkdir WebApp/bin~ | ||
mv WebApp/$app_name WebApp/bin~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
@echo off | ||
|
||
cd WebApp | ||
call npm install --legacy-peer-deps | ||
call npm run lint | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
#!/bin/bash -eu | ||
|
||
cd WebApp | ||
npm install --legacy-peer-deps | ||
npm run lint | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
@echo off | ||
|
||
cd WebApp\client | ||
call npm install | ||
call npm run lint | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
#!/bin/bash -eu | ||
|
||
cd WebApp/client | ||
npm install | ||
npm run lint | ||
|