Thank you for your help.
Unfortunately, this information has not resolved the problem.
Therefore, I created a basic Symfony web project by adding only the specified packages.
And it seems that the problem is due to the use of a local path for the installation of pqgrid
Am I making a mistake when installing the pro version from a local folder?
How to reproduce :
install all packages and pqgrid with the eval version
npm install pqgrid
> package.json
"dependencies": {
"@types/jquery": ">=2.2.1",
"@types/jqueryui": ">=1.12.21",
"jquery": "^3.7.1",
"jquery-ui-pack": ">=1.12.3",
"jszip": "2.5.0",
"pqgrid": "^9.1.1",
"pqselect": "^2.0.1"
}
npm run build > no problem
webpack compiled successfully
now remove the eval version and install pqgrid from fresh pro version download local folder
as recommended in the documentation
npm remove pqgrid
npm add ../../../_packages/paramquery-9.1.1
> package.json
"dependencies": {
"@types/jquery": ">=2.2.1",
"@types/jqueryui": ">=1.12.21",
"jquery": "^3.7.1",
"jquery-ui-pack": ">=1.12.3",
"jszip": "2.5.0",
"pqgrid": "file:../../../_packages/paramquery-9.1.1",
"pqselect": "^2.0.1"
}
npm run build > ERROR Failed to compile with 101 errors
Module build failed: Module not found:
"../../../_packages/paramquery-9.1.1/localize/pq-localize-fr.js" contains a reference to the file "jquery-ui-pack".
This file can not be found, please check it for typos or update it if the file got moved.
... and 100 other errors
Entrypoint app [big] 3.7 MiB = runtime.js 14.6 KiB vendors-node_modules_hotwired_turbo_dist_turbo_es2017-esm_js-node_modules_symfony_stimulus-br-b36057.js 1.09 MiB app.css 741 bytes app.js 2.59 MiB
webpack compiled with 101 errors