Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
38a9699
fixed php version in md files
SergiuBota1 Apr 23, 2026
1f5a71f
wrong release
SergiuBota1 Apr 23, 2026
ef97874
Issue #423: Upgraded mezzio-oauth2 to v3.0.1
SergiuBota1 Apr 29, 2026
d595420
sync files with dk api
SergiuBota1 Apr 30, 2026
fe66eff
sync adminLogin with API
SergiuBota1 Apr 30, 2026
f07840c
sync classes and fix PHPStan issues
SergiuBota1 Apr 30, 2026
bf03330
fixed indentation
SergiuBota1 May 4, 2026
343774a
Issue #425: Revert changes that interfered with the Browscap mapping
SergiuBota1 May 5, 2026
1005da4
minor phpstan fix
Jurj-Bogdan May 22, 2026
a0deb7a
Add renovate.json
renovate[bot] May 21, 2026
611b7fd
Update codecov/codecov-action action to v6
renovate[bot] May 25, 2026
a05e36f
package clean v1
Jun 9, 2026
3a9dd86
package clean v1.2
Jun 9, 2026
f9808e2
package clean v2
Jun 16, 2026
bcbb19f
Issue #446: Admin JS broken after fresh install
alexmerlin Jun 17, 2026
1fea289
Issue #446: Admin JS broken after fresh install
alexmerlin Jun 17, 2026
3df770a
package clean v4
Jun 17, 2026
6226bcd
package clean v2
Jun 16, 2026
1d12111
Issue #446: Admin JS broken after fresh install
alexmerlin Jun 17, 2026
146644f
Issue #446: Admin JS broken after fresh install
alexmerlin Jun 17, 2026
79af7fd
package clean v4
Jun 17, 2026
204e358
Update dependency vincentlanglet/twig-cs-fixer to v4
renovate[bot] Jun 15, 2026
aa90ffb
Issue #453: Implement CSS/JS builder
alexmerlin Jun 18, 2026
95dda74
Issue #453: Implement CSS/JS builder
alexmerlin Jun 18, 2026
5b6cc09
Update JetBrains/qodana-action action to v2026
renovate[bot] Jun 18, 2026
0a3fd2d
Update codecov/codecov-action action to v7
renovate[bot] Jun 18, 2026
8c6ca01
Update actions/checkout action to v7
renovate[bot] Jun 19, 2026
9a61cf7
removed the "perfect-scrollbar" package
Jun 19, 2026
757a7d3
Merge remote-tracking branch 'origin/7.0-clean-packages' into 7.0-cle…
Jun 19, 2026
34769e4
update packages #435 / #436 / #447 / #449 / #452
Jul 6, 2026
6ab15ba
Merge branch '7.0' into 7.0-clean-packages
alexmerlin Jul 6, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,25 +34,25 @@
"moment": "^2.30.1"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/runtime": "^7.24.7",
"@babel/core": "^8.0.0",
"@babel/plugin-transform-class-properties": "^8.0.0",
"@babel/plugin-transform-object-rest-spread": "^8.0.0",
"@babel/plugin-transform-runtime": "^8.0.0",
"@babel/runtime": "^8.0.0",
"ajv": "^8.18.0",
"babel-loader": "^10.1.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^14.0.0",
"cross-env": "^7.0.3",
"css-loader": "5.2.7",
"cross-env": "^10.0.0",
"css-loader": "7.1.4",
"expose-loader": "^5.0.0",
"file-loader": "^6.2.0",
"mini-css-extract-plugin": "^2.9.0",
"sass": "^1.77.1",
"sass-loader": "^14.2.1",
"sass-loader": "^17.0.0",
"terser-webpack-plugin": "^5.6.1",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
"webpack-cli": "^7.0.0"
},
"overrides": {
"graceful-fs": "^4.2.11"
Expand Down
2 changes: 1 addition & 1 deletion public/css/app.css

Large diffs are not rendered by default.

15 changes: 8 additions & 7 deletions webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -246,12 +246,13 @@ function generateBaseRules()
{
test: /\.(woff|woff2|eot|ttf|otf|svg)$/,
exclude: [/images?|img/],
use: [
// As SVG may count as both font or image,
// we will not treat any file in a folder
// with the name image(s) or img as a font
'file-loader?name=fonts/[name].[ext]'
]
// As SVG may count as both font or image
// we will not treat any file in a folder
// with the name image(s) or img as a font
type: 'asset/resource',
generator: {
filename: 'fonts/[name][ext]'
}
}
];
}
}