crunk1
crunk1
@bep `viper.SetFs(afero.FromIOFS{Fs: emfs})` works for reading a config into viper, thank you! Much cleaner than my own shim type I wrote :smiley:. I initially looked at ReadOnlyFs because embedded files/filesystems...
Digging into the code so far, I can only see `null` being used to ignore `default`. e.g. ```python >>> from mongoengine import * >>> class D(Document): ... s1 = StringField(null=True,...
Also related: https://github.com/firebase/firebase-admin-node/issues/241
@jmlouw has a correct workaround. Just for everyone's information, it seems that the issue is with Wayland not supporting global hotkeys. I don't know much more than that. I heard...
@mikehoffms are there any other extension-related flags that are missing from the documentation?
Our company builds a browser extension that our clients use. Some of our clients have internal tools that use embedded WebView2. While trying to support them, we encountered those flags.
I understand that the flags are managed by libraries/SDKs, I was just hoping for more complete documentation to help us during debugging/inspection via Process Explorer.
Also running into this. Replacing my base `tsconfig.json` with my `tsconfig.rollup.json` allows rollup to handle `rollup.config.ts`, but obviously the rest of my project breaks. - Rollup Plugin Name: @rollup/plugin-typescript -...
Ah it appears to not only break for `rollup.config.ts`, but my other files as well. I converted `rollup.config.ts` to `mjs` and I saw the same `Note that you need plugins...
IIFE build - Vite's `build.rollupOptions.output.assetFilenames = 'ui.[ext]'` - ext placeholder blank
Another note, explicitly setting the asset file ext to css, `assetFileNames: 'ui.css'`, doesn't generate the same `...it's recommend to set ``build.cssCodeSplit``...` log as the Reproduction sample output.