Gabriel Robert

Results 18 comments of Gabriel Robert

In some cases, we cannot mock `v-wait`. This library is widely used in our project and stubs/mocks prevent proper testability. For instance: Component: ``` Bleh ``` Test: ``` it('shows suggestions',...

Many thanks for your reviews. I just updated my branch to bring support for CommonJS exports. Regarding files containing javascript instructions, I don't think it is a good idea to...

i18n-manager will not open files containing more advanced javascript features (including comments). A user cannot overwrite a file by error because it won't get loaded at all. This plugin use...

I tested this initially and moved from it because it opens the same problems as the `eval` function. Also, I don't think there is a proper way to serialize the...

It's not that simple. Some i18n libraries do not work with JSON files, but with JS dictionaries. This PR will bring support for these kinds of files while ignoring any...

Sure, they do. But in my case, I use more advanced javascript features, and I do pre-process those files before editing them with i18n-manager. For instance: ``` export default {...

Correct me if I'm wrong, but Electron applications can run with administrative power. Someone could create a reproduction repo for you with malicious code getting executed when you open the...

Hehehe, having this in mind, why does antivirus software still exist? 😜 I don't think punctuation is a problem at all. JSON or JS users still need to comply with...

@gilmarsquinelato `JSON.parse` do not care about them either. You can put `;` or not at the end of the file, and the plugin will handle it. You can try this...

@erossini How did you achieved the initial image loading? I put some images in the view model constructor, but the component do not load them at creation. Thank you!