Skip to content

Commit 5faaa4e

Browse files
authored
IBX-9916: Upgrade frontend dependencies (#29)
1 parent e2052f1 commit 5faaa4e

File tree

2 files changed

+15
-17
lines changed

2 files changed

+15
-17
lines changed

package.json

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@
2020
"move-chartjs-plugin-datalabels": "cp -r node_modules/chartjs-plugin-datalabels src/bundle/Resources/public/vendors/chartjs-plugin-datalabels",
2121
"move-js-md5": "cp -r node_modules/js-md5 src/bundle/Resources/public/vendors/js-md5",
2222
"move-ckeditor5": "cp -r node_modules/@ckeditor src/bundle/Resources/public/vendors/@ckeditor",
23-
"prepare-release": "npm run create-folder; npm run move-bootstrap; npm run move-jquery; npm run move-leaflet; npm run move-react; npm run move-react-dom; npm run move-taggify; npm run move-popperjs; npm run move-flatpickr; npm run move-create-react-class; npm run move-prop-types; npm run move-moment; npm run move-moment-timezone; npm run move-d3; npm run move-dagre-d3; npm run move-chart-js; npm run move-js-md5; npm run move-ckeditor5; npm run move-chartjs-plugin-datalabels"
23+
"move-ckeditor5-core": "cp -r node_modules/ckeditor5 src/bundle/Resources/public/vendors/ckeditor5",
24+
"prepare-release": "npm run create-folder; npm run move-bootstrap; npm run move-jquery; npm run move-leaflet; npm run move-react; npm run move-react-dom; npm run move-taggify; npm run move-popperjs; npm run move-flatpickr; npm run move-create-react-class; npm run move-prop-types; npm run move-moment; npm run move-moment-timezone; npm run move-d3; npm run move-dagre-d3; npm run move-chart-js; npm run move-js-md5; npm run move-ckeditor5; npm run move-ckeditor5-core; npm run move-chartjs-plugin-datalabels"
2425
},
2526
"repository": {
2627
"type": "git",
@@ -33,27 +34,23 @@
3334
},
3435
"homepage": "https://github.com/ibexa/admin-ui-assets#readme",
3536
"dependencies": {
36-
"@ckeditor/ckeditor5-alignment": "^40.1.0",
37-
"@ckeditor/ckeditor5-build-inline": "^40.1.0",
38-
"@ckeditor/ckeditor5-dev-utils": "^39.0.0",
39-
"@ckeditor/ckeditor5-widget": "^40.1.0",
40-
"@ckeditor/ckeditor5-theme-lark": "^40.1.0",
41-
"@ckeditor/ckeditor5-code-block": "^40.1.0",
42-
"bootstrap": "^5.3.2",
43-
"chart.js": "^4.4.0",
37+
"ckeditor5": "^45.0.0",
38+
"@ckeditor/ckeditor5-dev-utils": "^47.0.0",
39+
"bootstrap": "^5.3.5",
40+
"chart.js": "^4.4.8",
4441
"chartjs-plugin-datalabels": "^2.2.0",
4542
"create-react-class": "^15.7.0",
4643
"d3": "^5.16.0",
4744
"dagre-d3": "^0.6.4",
4845
"flatpickr": "^4.6.13",
49-
"jquery": "^3.5.1",
46+
"jquery": "^3.7.1",
5047
"js-md5": "0.7.3",
5148
"leaflet": "^1.9.4",
52-
"moment-timezone": "^0.5.41",
53-
"@popperjs/core": "^2.10.2",
54-
"prop-types": "^15.7.2",
55-
"react": "^18.2.0",
56-
"react-dom": "^18.2.0",
49+
"moment-timezone": "^0.5.48",
50+
"@popperjs/core": "^2.11.8",
51+
"prop-types": "^15.8.1",
52+
"react": "^19.1.0",
53+
"react-dom": "^19.1.0",
5754
"taggify": "^1.2.1"
5855
}
5956
}

src/bundle/Resources/encore/ibexa.config.setup.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ const path = require('path');
22

33
module.exports = (Encore) => {
44
Encore.addAliases({
5-
'@react-dom': path.resolve('./public/bundles/ibexaadminuiassets/vendors/react-dom'),
6-
'@ibexa-admin-ui-assets': path.resolve('./vendor/ibexa/admin-ui-assets'),
5+
'@ibexa-admin-ui-assets': path.resolve(
6+
'./vendor/ibexa/admin-ui-assets'
7+
),
78
});
89
};

0 commit comments

Comments
 (0)