ケイラ

Results 70 comments of ケイラ

It supports any function named `h`, but you have to import it yourself (your JSX import source isn't getting inserted automatically) We should probably fail to deploy if you have...

Also looking at this diff, wow package-lock.json is so wastefully large

> Would it be possible to achieve the goal with a single customisable source path? Yes, but I just keep thinking about [what you said here](https://discord.com/channels/768594524158427167/811254431051808778/950801636547239986) :\ Multiple directories would...

I love the config ideas! One other thing, `gleam run` should take a `--runtime` flag, instead of `--target` (which can be inferred from the runtime)

We would definitely need it for `gleam build`, but I worry if accepting `--runtime` and `--target` for `gleam run` could be confusing

> if specified sets `--runtime` to defaults It should obey whatever setting you use for `javascript.runtime` in gleam.toml, and *then* use a default :) Along this same line, I don't...

@Kupstas You can use Electron 11, you just need to add some config ``` new BrowserWindow({ webPreferences: { enableRemoteModule: true, nodeIntegration: true, }, }); ``` Or you can use my...

@linonetwo So to be clear, I'm the maintainer of "@mckayla/electron-redux". This repo is for the package "electron-redux". For "electron-redux", enableRemoteModule is no longer needed, but nodeIntegration is still required in...

@matmalkowski I've actually been meaning to reach out to you guys about that. I've updated my fork to no longer require nodeIntegration to be enabled, and you're more than welcome...