Ben Scholzen
Ben Scholzen
AAAAAAND done! I appreciate any testing and reports! :) https://www.npmjs.com/package/mui-temporal-pickers
I don't think in he current form, no. I'm really hacking around the localization's adapter capabilities right now. The adapter architecture either needs a complete overhaul or (potentially in the...
I've also added support for `PlainYearMonth` and `PlainMonthDay` to `mui-temporal-pickers` now :)
For reference, this is the resulting `config.json`: ```json { "api": { "baseURL": "https://console.rustfs.example.com:13123/rustfs/admin/v3" }, "s3": { "endpoint": "https://console.rustfs.example.com:13123", "region": "cn-east-1" }, "release": { "version": "1.0.0-alpha.71", "date": "2025-12-03T10:49:11Z" }, "license": {...
I am, Alpha 71 (as seen in the config.json).
I did supply a PR already which should fix it :)
@loverustfs So if the config.json was removed, where is the frontend getting its endpoints from now?
The more I look into this, the more certain I am that this is actually a bug in Node.js itself, ignoring the source map and only scanning the executed code....
One new finding I made: Running `pnpm test:tsx --enable-source-maps` will make the test location itself be reported correctly. This doesn't solve the reported assertion itself though.
Okay, this gets interesting… I ran `tsx --inspect-brk` on the test file, and got the following output out of it: ```js import assert from"node:assert/strict";import{it}from"node:test";it("line issue",()=>{assert.ok(false)}); //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxXQUFZLHFCQUNuQixPQUFTLE9BQVUsWUFFbkIsR0FBRyxhQUFjLElBQU0sQ0FDbkIsT0FBTyxHQUFHLEtBQUssQ0FDbkIsQ0FBQyIsIm5hbWVzIjpbXSwiaWdub3JlTGlzdCI6W10sInNvdXJjZXMiOlsiL2hvbWUvZGFzcHJpZC90c3gtbGluZS1pc3N1ZS1jYXNlL3NvdXJjZS50ZXN0LnRzIl0sInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBhc3NlcnQgZnJvbSBcIm5vZGU6YXNzZXJ0L3N0cmljdFwiO1xuaW1wb3J0IHsgaXQgfSBmcm9tIFwibm9kZTp0ZXN0XCI7XG5cbml0KFwibGluZSBpc3N1ZVwiLCAoKSA9PiB7XG4gICAgYXNzZXJ0Lm9rKGZhbHNlKTtcbn0pO1xuIl19 ``` Running this...