Chet Corcos
Chet Corcos
hmm. `stats.hasErrors()` is true though... Is that expected?
I figured it out! Whenever I await a promise inside Promise.all, I get this error. ``` const [user, space] = await Promise.all([ await postgres.getRecordValue(UserSchema.table, userId, true), await postgres.getRecordValue(SpaceSchema.table, spaceId, true),...
I agree -- I'm using [electron-spellchecker](https://github.com/electron-userland/electron-spellchecker) but the "Add to Dictionary" doesn't work and there are some [performance issues](https://github.com/electron-userland/electron-spellchecker/issues/95) with spell check running synchronously every time you press a character....
There's lots of code on the HEAD of master that aren't published on NPM with a new version number.
https://github.com/babel/babel-loader/blob/master/index.js#L36
``` "babel-core": "6.22.1", "babel-plugin-transform-class-properties": "^6.24.1", "babel-plugin-transform-hoist-jsx-style": "^1.0.0", "babel-plugin-transform-hoist-nested-functions": "^1.2.0", "babel-plugin-transform-react-constant-elements": "6.22.0", "babel-plugin-transform-react-inline-elements": "6.22.0", "babel-preset-es2015": "6.22.0", "babel-preset-react": "6.22.0", ``` This was my config: ``` plugins: [ "transform-react-inline-elements", "transform-react-constant-elements", [ "transform-hoist-nested-functions", {...
I get this error even without the methods option: ``` plugins: [ "transform-react-inline-elements", "transform-react-constant-elements", "transform-hoist-jsx-style", "transform-hoist-nested-functions", // "transform-class-properties", ], ``` Looks like its pulling out that callback function without realizing...
Actually yes, deceleration is probably much better than decay
Only bad part of this is you'll have to re-install when you prune. Here's what I'm doing: ``` sh # make a regex of node_modules to ignore ignores=`npm ls --dev...
`zsh: command too long` :(