Greg Knapp
Greg Knapp
What you said here makes sense. I was changing my filament, usually I don't bother with the 'change filament' option in Marlin, I just disable steppers, heat the hotend, hold...
I'm encountering this problem as well but for `findPassword`. Looking [at the source](https://github.com/atom/node-keytar/blob/master/lib/keytar.js#L51), it's as if the `require('../build/Release/keytar.node')` statement is failing within `lib\keytar.js`. I've moved all my code interacting with...
I've downgraded to 3.0.2 and switched from `import ... from` to `require()` syntax (possibly futile as I'm transpiling with babel), still encountering `keytar.findPassword is not a function`  ~~Would this...
So after much fiddling, I had to remove my main thread code from my webpack configuration so it wasn't transpiled by babel. When I left the source untouched and included...
I made this change a while back. I'll see what I can dig up over the next 7-10 days, it's not my active project at present but it'd be good...
`v0.0.23`: `package.json` upgraded fine. Saw this error with my `.babelrc`: ``` λ yarn run babel-upgrade yarn run v1.9.4 🙌 Thanks for trying out https://github.com/babel/babel-upgrade! Updating .babelrc config at .babelrc (node:14496)...
@aulisius Thanks, that fixed the error. I upgraded the config by hand in the end. I had to remove `babel-preset-airbnb`. ``` Updating .babelrc config at .babelrc Index: .babelrc =================================================================== ---...
I'm seeing: ``` ERROR in Couldn't find intersection ERROR in Couldn't find intersection ERROR in Couldn't find intersection ERROR in Couldn't find intersection ERROR in Couldn't find intersection ERROR in...
@jsauca I aborted switching to this plugin for minification and returned to `uglifyjs-webpack-plugin`. I read this plugin produced better minified code but couldn't get it to work. Chrome inspector's coverage...
I tried this and other various tweaks to try and eliminate any unused code. I already had webpack in production mode, I found no difference in bundle size by including...