Paul Browne
Paul Browne
So instead of requesting a bg image, you would use @fontface I think you can also use font subsetting to request fonts for certain characters
not passing a `outdir` results in a build error: `Must use "outdir" when there are multiple input files` even when `write: false` which doesn't really make sense since noting is...
I would like the option to use a different `floatPrecision` to round `stroke-width`, `stroke-opacity` to 2dp and `paths` to 0dp eg. `
.env files should just be like ``` INFURA_KEY= MNEMONIC= OWNER_ADDRESS= NFT_CONTRACT_ADDRESS= FACTORY_CONTRACT_ADDRESS= NETWORK=rinkeby ``` Also no need for the quotation ("") marks
```js // foo.js const awesomeFunction = () => { // bunch of code } export default awesomeFunction // bundle.js await esbuild.build({ entryPoints: ['foo.js'], minify: true, format: "iife", globalName: "awesomeFunction", outfile:...
``` function on_resize(a,b){return onresize=function(){clearTimeout(b),b=setTimeout(a,100)},a} ```
https://web.wurfl.io/#wurfl-js It's free for unlimited requests
I have this simple client-side SPA router that will dynamically import a script based on the url eg. `example.com/foo/bar` will fire a request for `example.com/js/pages/foo/bar.js` I'm handling 404's in the...
My esbuild bundler is complaining about item not being defined https://github.com/em/gcanvas/blob/e3e9f34db2fa794b29065ff74dc22dd93169250e/lib/motion.js#L320 adding `const item = path.actions[i]` would fix this issue