-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from rl-institut/feature/fsm_roof_view
Feature/fsm roof view
- Loading branch information
Showing
157 changed files
with
13,434 additions
and
286 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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
|
||
.PHONY : update_vendor_assets | ||
|
||
update_vendor_assets: | ||
# Note: call this command from the same folder your Makefile is located | ||
# Note: this run only update minor versions. | ||
# Update major versions manually, you can use "ncu" for this. | ||
# https://nodejs.dev/en/learn/update-all-the-nodejs-dependencies-to-their-latest-version/#update-all-packages-to-the-latest-version | ||
|
||
# Update | ||
npm update | ||
|
||
# Bootstrap https://github.com/twbs/bootstrap | ||
rm -r building_dialouge_webapp/static/vendors/bootstrap/scss/* | ||
cp -r node_modules/bootstrap/scss/* building_dialouge_webapp/static/vendors/bootstrap/scss/ | ||
rm -r building_dialouge_webapp/static/vendors/bootstrap/js/* | ||
cp node_modules/bootstrap/dist/js/bootstrap.min.js* building_dialouge_webapp/static/vendors/bootstrap/js/ | ||
|
||
# HTMX https://htmx.org/ | ||
rm -r building_dialouge_webapp/static/vendors/htmx/js/* | ||
cp node_modules/htmx.org/dist/htmx.min.js building_dialouge_webapp/static/vendors/htmx/js/ | ||
|
||
# Done |
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
Oops, something went wrong.