Brian Bugh

Results 109 comments of Brian Bugh

I created https://github.com/piotrmurach/tty-progressbar/pull/52 that has WIP code for this. Two examples of getting close but not quite. There's a `multi_test.rb` in the root folder that you can run to quickly...

I am on the latest v13.0.3 and this is still occurring for me. It seems to happen when there's a modified `lintstagedrc` in the cache and the working directory. If...

This is because of your project's `tsconfig.json` settings. TypeScript defaults to removing comments when compiling. This is from the auto-generated tsconfig.json file: ``` { // "removeComments": true, /* Do not...

One thing to consider is that `#private` fields and proxies do not work together. References: 1. https://github.com/tc39/proposal-class-fields/issues/106 2. https://github.com/evanw/esbuild/issues/1969

@cgriego did you make any progress with this other than forcing the model to reload? I can't find any issues in carrierwave referencing this either. Thanks!

I also had this issue setting it up on a monorepo, which has multiple different languages and will have *all* custom scripts. I think it should warn and then install...

This is a breaker for us as well. We have a lot of forms in our app, and they're constructed by many different sub-forms. Those subforms are also used in...

Sorry y'all, I'm not working on that project anymore, or Vue. Good luck sorting it out!

[vue-demi](https://github.com/antfu/vue-demi) may be helpful for the import issue. It allows you to import from `vue-demi` instead of `vue` or `@vue/composition-api` depending on which version of Vue is doing the importing.

That is correct, **if** during vue-formulate@next you decide to use the composition API (which would may be really for this use case) in order to support Vue 3, `vue-demi` will...