Vaughan Rouesnel
Vaughan Rouesnel
``` Error: ENOENT: no such file or directory, open 'path.js' at Error (native) at Object.fs.openSync (fs.js:634:18) at Object.fs.readFileSync (fs.js:502:33) at CallsiteRecord.renderSync (/Users/Vaughan/dev-live/shipmate/node_modules/callsite-record/lib/index.js:205:26) at StackFormater._formater (/Users/Vaughan/dev-live/shipmate/lib/stack-format/index.js:58:40) ``` `renderSync` should handle the...
### Code ``` _.delay => if not rpcConnected if retryCount < 3 connect() tryConnect() retryCount += 1 else authManager.connectionFailed() , 800 ``` ### Error ``` Error: Syntax error on line...
`await performRouteHandlerStaticMethod(state.routes, 'routerWillRun', routeHandlerInfo)` ``` export default async function performRouteHandlerStaticMethod(routes, methodName, ...args) { return Promise.all(routes .map(route => {route.handler[methodName]; console.log(route, route.handler)}) .filter(method => typeof method === 'function') .map(method => method(...args)) );...
Sometimes internals calls (e.g. for require) will involve about 8 calls in a row. It would be good to indicate that these calls have been filtered (allowing a custom message...
When in strict mode (`use strict` at the top of the file) `arguments.callee` throws an error. This came up for me because Babel's require-hook was transpiling this file - yes...
https://github.com/facebook/docusaurus/blob/ae45b11bbb32513a8cb44da163f096c00868a21d/packages/docusaurus-mdx-loader/src/index.js#L24-L58 I am writing an plugin that adds the source file + line number to every heading element. Below you can see that the frontmatter is being parsed and then...
I have an existing codebase with ScalaDoc comments. It would be great to have a setting to use existing ScalaDoc comments when generating Docco. Having two sets of comment notation...
If you leave off the `name` prop from a `` element you get this error which is confusing.
### What https://github.com/mattphillips/babel-plugin-console/issues/6#issuecomment-439689396 ### Why https://github.com/mattphillips/babel-plugin-console/issues/6 ### Notes ### Housekeeping - [x] Unit tests - [x] Documentation is up to date - [x] No additional lint warnings - There seem...
If you move between multiple markdown files, its painful to duplicate the tab and move to another tab group each time. So I suggest that there is an option that...