This repository has been archived by the owner on Nov 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch bugfix/build-scripts into main (#24)
Fix scripts Fix dev and compile scripts to copy assets recursively.
- Loading branch information
Showing
4 changed files
with
8 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Remove-Item -Recurse -Force build/ -ErrorAction SilentlyContinue | ||
New-Item -ItemType Directory -Path build/ | ||
New-Item -ItemType Directory -Path build/assets/ | ||
Copy-Item -Path src/html/* -Destination build/ | ||
Copy-Item -Path src/assets/* -Destination build/assets/ | ||
Copy-Item -Path -Recurse src/html/* -Destination build/ | ||
Copy-Item -Path -Recurse src/assets/* -Destination build/assets/ | ||
tsc |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Remove-Item -Recurse -Force build/ -ErrorAction SilentlyContinue | ||
New-Item -ItemType Directory -Path build/ | ||
New-Item -ItemType Directory -Path build/assets/ | ||
Copy-Item -Path src/html/* -Destination build/ | ||
Copy-Item -Path src/assets/* -Destination build/assets/ | ||
Copy-Item -Path -Recurse src/html/* -Destination build/ | ||
Copy-Item -Path -Recurse src/assets/* -Destination build/assets/ | ||
tsc --watch |
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