David Marr

Results 66 comments of David Marr

@bojand I was excited to try out grpc-caller as it seemed to solve the async/await usage with grpc in node. However I came across https://github.com/bojand/grpc-inspect/issues/10 which failed to load my...

@kazupon Thank you for the suggestion. Unfortunately that still has scoping trouble. For example the `useI18n` method returns new `t` and `locale` values. It becomes disconnected from the `$i18n` object...

Ok, I used `useScope: 'global'` in the component, and things work much better. 1. `$t` and `t` appear to be interchangable (good). 2. `locale` returned from `useI18n` appears to be...

I noticed the _vue-i18n-bridge_ package has a dependency on _@vue/composition-api_ -- that means you can't install vue 2.7 which may be an issue.

I am also curious about this.

I did get it working by adding the following to webpack.config.js: ``` entry: { app: [ 'whatwg-fetch', 'react-hot-loader/patch', './main.js', 'webpack-hot-middleware/client' ], }, ... plugins: [ ..., new webpack.HotModuleReplacementPlugin() ] ```...

I had to take out the ['es2015', { modules: false }] setting from `.babelrc` and just use `es2015` due to my jest tests not compiling anymore. I'm not sure if...

Thanks for the tip @fakiolinho, that does work. I notice that using `["es2015", { modules: false }]` _increases_ the file size of the generated bundle. Is that expected?

I am also interested in this. I would like to use my local chrome profile for the "Open link" functionality along with debugging. Setting a value for `userDataDir` does not...