Skip to content

Commit

Permalink
upgraded vendor libs and added upgrade scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
brainfoolong committed Sep 4, 2024
1 parent fa1ec85 commit 0106b8d
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 13 deletions.
5 changes: 2 additions & 3 deletions appdata/modules/Framelix/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@
"robthree/twofactorauth": "^3.0",
"lbuchs/webauthn": "^2.2",
"mpdf/qrcode": "^1.2",
"phpoffice/phpspreadsheet": "^2.1",
"phpoffice/phpspreadsheet": "^2.2",
"mpdf/mpdf": "^8.2",
"phpmailer/phpmailer": "^6.9",
"brainfoolong/cryptojs-aes-php": "^2.3"
"phpmailer/phpmailer": "^6.9"
}
}
15 changes: 8 additions & 7 deletions appdata/modules/Framelix/package.json
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"
}

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions appdata/modules/Framelix/public/dist/js/sortablejs.min.js

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions appdata/modules/Framelix/upgrade-composer-libs.sh
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
6 changes: 6 additions & 0 deletions appdata/modules/Framelix/upgrade-node-libs.sh
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

0 comments on commit 0106b8d

Please sign in to comment.