Vaughan Rouesnel
Vaughan Rouesnel
I couldn't figure out a way to turn of line wrapping. In CSS it would be `white-space: nowrap`, but its seems in `RenderKid` you are setting a terminal width. My...
I've set my variables properly and this is the message I get: ``` Sunny plugin getting config from environment... Found 1 configurations in config file. One of the config variables...
When used with webpack `process.stdout` doesn't exist. It should not be depended on in a browser environment.
``` function saveStartupList(cb) { console.log(options.startupFile) fs.writeFile(options.startupFile, JSON.stringify(filenameLookup), onSaveError(cb)); } ``` `onSaveError(cb));` should be `onSaveError(cb, 'startupList', options.startupFile));`
Say you are developing a npm linked cli tool. The following code prevents caching any files. Would it be possible to provide an option to allow caching outside of process.cwd()?...
I am not clear on how best to use this library. Do I need to make `tsconfig.json` changes? Or `///reference`.. Do I use `"typeRoots": ["./node_modules/@types", "./node_modules/chrome-types"]`?
Thought it would be a good idea to track that status of tools supporting this feature. - [x] Flow - https://github.com/facebook/flow/releases/tag/v0.54.0 - [x] TypeScript - https://github.com/Microsoft/TypeScript/issues/9950 - [x] Babel ([7.0.0-beta.48](https://github.com/babel/babel/releases/tag/v7.0.0-beta.48))...
- [ ] Flow - facebook/flow#560 / https://github.com/facebook/flow/issues/2523 - [x] Webstorm - [x] Babel [See all proposals](https://github.com/tc39/proposals/issues/140)
What is the best way to re-order hooks. I have a hook I want to run last. Should it be done with intercept and register?