njlr
njlr
> Recently I have a published a different solution for Fable called [Snowflaqe](https://github.com/Zaid-Ajaj/Snowflaqe). It is a dotnet CLI tool that code-generates a Fable (or F#) GraphQL client project based on...
I also ran into this issue. Collision detections fail when `delta.x == 0` or `delta.y = 0`. If they are non-zero then everything works perfectly. The work-around is to set...
I am not sure why the build is failing. The following works for me: ```bash # Terminal 1 dotnet run --project ./tests/FSharp.Data.GraphQL.IntegrationTests.Server # Terminal 2 dotnet run --project ./samples/star-wars-api #...
> If you will not be managed to fix this I will take action on this PR after a few other PRs. Expected next week Success! The tests pass now.
> @njlr, could you rebase, solve conflicts and add me to your repo as contributor so that I can fix something if necessary? Fixed now?
The use-case is maintaining a Poetry build and a Bazel build in parallel.
Work-around is to import and apply the plugins manually: ```javascript import puppeteerVanilla from 'puppeteer'; import { addExtra } from 'puppeteer-extra'; import StealthPlugin from 'puppeteer-extra-plugin-stealth'; import AcceptLanguagePlugin from 'puppeteer-extra-plugin-stealth/evasions/accept-language'; import ChromeRuntimePlugin...
I use Webpack with Node because it's a simpler way to use Babel, bundle `node_modules` and minify code. `webpack.config.js`: ```javascript const path = require('path'); const TerserPlugin = require('terser-webpack-plugin'); const {...
Yes I use the latest ES6 features. I also use loaders for other languages (such as Fable) and data (such as JSON, CSS). Bundling everything can also be useful for...
I think as rule-of-thumb, only using ES6 `import` / `export` will always give a library that works with Webpack, Rollup, etc.