bkarlson

Results 26 comments of bkarlson

In recent node versions can simply use cross platform [os.setPriority](https://nodejs.org/api/os.html#os_os_setpriority_pid_priority) ```js os.setPriority(19) ``` All spawned children (gm or IM) will get parent node's process priority.

stderr from `identify()` is returned in `data.warning`

`overflow: visible` on parent element may help as well

PR: https://github.com/Wikiki/bulma-tooltip/pull/63/files

Just stumbled upon this as well, for those who come here googling: This works: ```js ...get('userStore/', {cart: 'carts[:lastShopId]'}), ...sync('userStore/', {syncCart: 'carts@:lastShopId'}), ``` While this does not: ```js ...get('userStore/', {cart: 'carts@:lastShopId'}),...

yes, correct, but the getter is created by pathify itself, i.e. I'm just trying to access a property in a storage using `...get()` with var expansion.

would be great to have this released, as I was going in circles in google trying to keep my code simple yet my state nested. Seems like with Vuex you...

It seems like Vue 3 is not supported by vue-class-component yet, their README is confusing. Gotta wait a bit more I guess.. https://yarnpkg.com/package/vue-class-component

I cannot find, has it been incorporated yet? Many releases since then, and seems like an easy fix. P.S. thanks a ton for this plugin, worked wonders with simplyfing vuex-related...

Node.js version: 15.1.0 OS & version: Windows 10 Just encountered the same, very hard to repro, looks like a race-condition, I will try to dig deeper, but is there any...