eslint shows the following error (amongst others) in storage.js
1476:29 error 'ret' is constant no-const-assign
This also prevents vite -> esbuild from building.
Line 1473 needs to change from const ret to let ret
eslint shows quite a few errors across multiple source files.
I also noticed that there are no test scripts specified in any package.json and only one test file path-info.spec.js
Does AceBase have a comprehensive test suite? If not is this planned.
eslint shows the following error (amongst others) in
storage.jsThis also prevents vite -> esbuild from building.
Line 1473 needs to change from
const rettolet reteslint shows quite a few errors across multiple source files.
I also noticed that there are no test scripts specified in any package.json and only one test file
path-info.spec.jsDoes AceBase have a comprehensive test suite? If not is this planned.