Simon Williams
Simon Williams
We are suddenly having what seems to be the same issue. This system has been running for 2 months with no issue and suddenly started getting this: ``` 2024-05-16 10:43:09.371...
Ok it turns out in our case we were actually still on timescale 2.11.0. Running `ALTER EXTENSION` to actually update to 2.12.2 fixed this particular issue for us.
...except that the issue has reappeared after upgrading to 2.14.2.
Unfortunately this was all on a live system and I didn't manage to obtain a stack trace for 2.14.2.
Ok this is fixed if I add the missing plugins: ``` cordova plugin add cordova-plugin-file cordova plugin add cordova-plugin-file-transfer ``` However, that still doesn't explain why the promise was never...
Ugh, still not published. I've just spent two hours trying to trace a bug which has already been fixed :(
As a workaround, you can tell npm to download it from github like this: ``` "cordova-app-loader": "git+https://github.com/markmarijnissen/cordova-app-loader#c99a03d8771a0e90a5654311b671b96dd8862635", ```
Ah I hadn't noticed that! It definitely seems like we need to do something to make sure that nodesource gets a higher priority than the debian repository. The affected machine...
Due to the fact that tsx doesn't support project references yet (https://github.com/privatenumber/tsx/issues/96) we tried to add our own loader on top of tsx that would esbuild each of our monorepo...
Related: two files with the same name but differing extensions will also shadow each other (for example: `foo.js` and `foo.md`). I think the only real solution to this is to...