Alex Van Liew

Results 27 comments of Alex Van Liew

+1 on this. I couldn't even get jest to transpile this package with `transformIgnorePatterns` and wasn't able to figure out why, so I ended up just copying the code into...

Similarly, passing `store` to `mount`/`shallowMount` doesn't work either. I think these options only worked prior because of VTU1's option merging behavior, but they're common enough patterns (and have easy shims,...

I had this same issue. I was able to resolve it by removing the `include` in my ts-loader webpack rule. It seems like excluding node modules in particular causes this...

I found the real issue. vue-loader [tests a dummy file](https://github.com/vuejs/vue-loader/blob/b391b04ed3335a2d2c9010101d98c2d9977626e8/src/pluginWebpack4.ts#L83) called `test.ts` against the webpack rules (presumably to see if typescript compilation is enabled). If this test fails, it apparently...

Related bug with the `--fix` option: With options `[2, "as-needed"]`, this rule suggests the following diff: ``` - lodashGet(obj, ['E', `foo_${a}_${b}`]) +lodashGet(obj, `E${`foo_${a}_${b}`}`) ``` This is, of course, incorrect (there...

@noahfinerp your PR was not in vain!

@benfred @kassiomaia any chance this could be merged and a new release published?

I opened [a PR](https://github.com/SortableJS/vue.draggable.next/pull/152) which should resolve this for `@vue/compat` users. As a workaround, you can shim the draggable component directly using code similar to the following: ```js import Draggable...

hey @posva - how do you want me to proceed on this? is there some issue with this fix as written, and if so can you clarify so that I...

I had to use [patch-package](https://www.npmjs.com/package/patch-package) in my project to pick up the latest changes (in particular, the positioning updates). I agree, it would be great if there was another release.