-
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.
upgraded vendor libs and added upgrade scripts
- Loading branch information
1 parent
fa1ec85
commit 0106b8d
Showing
6 changed files
with
25 additions
and
13 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 |
---|---|---|
@@ -1,16 +1,17 @@ | ||
{ | ||
"name": "framelix", | ||
"dependencies": { | ||
"@babel/core": "^7.24.3", | ||
"@babel/preset-env": "^7.24.3", | ||
"@babel/core": "^7.25.2", | ||
"@babel/preset-env": "^7.25.4", | ||
"@popperjs/core": "^2.11.8", | ||
"cash-dom": "^8.1.5", | ||
"dayjs": "^1.11.10", | ||
"form-data-json-convert": "^2.2.1", | ||
"dayjs": "^1.11.13", | ||
"form-data-json-convert": "^2.2.2", | ||
"qrcodejs": "^1.0.0", | ||
"sass": "^1.72.0", | ||
"sortablejs": "^1.15.2", | ||
"swiped-events": "^1.1.9" | ||
"sass": "^1.78.0", | ||
"sharp": "^0.33.5", | ||
"sortablejs": "^1.15.3", | ||
"swiped-events": "^1.2.0" | ||
}, | ||
"web-types": "dev/web-types/web-types.json" | ||
} |
2 changes: 1 addition & 1 deletion
2
appdata/modules/Framelix/public/dist/js/general-vendor-native.min.js
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Large diffs are not rendered by default.
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/usr/bin/bash | ||
|
||
SCRIPTDIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd) | ||
cd $SCRIPTDIR | ||
rm composer.lock compeser.json | ||
composer require robthree/twofactorauth lbuchs/webauthn mpdf/qrcode phpoffice/phpspreadsheet mpdf/mpdf phpmailer/phpmailer |
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,6 @@ | ||
#!/usr/bin/bash | ||
|
||
SCRIPTDIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd) | ||
cd $SCRIPTDIR | ||
rm package-lock.json | ||
npm i @babel/core @babel/preset-env @popperjs/core cash-dom dayjs form-data-json-convert qrcodejs sass sharp sortablejs swiped-events |