-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
setup a taskfile for the paratext extension to run the build steps re…
…quired before starting paratext
- Loading branch information
Showing
8 changed files
with
217 additions
and
115 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 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 |
---|---|---|
|
@@ -27,3 +27,4 @@ dist-ssr | |
|
||
# Temporary intermediate build files | ||
temp-build | ||
public/fw-lite |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
version: 3 | ||
output: prefixed | ||
|
||
tasks: | ||
install: | ||
method: checksum | ||
sources: | ||
- package.json | ||
- package-lock.json | ||
cmds: | ||
# platform.bible does not support pnpm | ||
- npm install | ||
|
||
run: | ||
deps: [ build-local-web-app, build-viewer-component ] | ||
cmds: | ||
- npm run start | ||
|
||
build-local-web-app: | ||
cmds: | ||
- dotnet publish ../../backend/FwLite/LocalWebApp/LocalWebApp.csproj --configuration Release --sc --p:PublishSingleFile=true --output ./public/fw-lite | ||
build-viewer-component: | ||
dir: ../viewer | ||
cmd: pnpm run build |
Oops, something went wrong.