Andrei Luca

Results 98 comments of Andrei Luca

@SomeRandomDude32 what gradient background do you want to change?

@SomeRandomDude32 @synqit https://github.com/creativetimofficial/argon-design-system/blob/04ffdfb9b5a615e4368f27302fd7e54bbcb84fa3/assets/scss/custom/_section.scss#L290

I use this code to keep single line ```js onChange={e => { // strip html const node = document.createElement('div') node.innerHTML = e.target.value const value = node.innerText.replace(/(?:\r\n|\r|\n)/g, ' ') this.onChange(value) }}...

And if `--force-with-lease` fails, it stops, and can ask to execute something like ```bash git town continue merge # fallback strategy # or git town continue force # force push...

Or maybe we have something like eg: `git town pull-branch-strategy` ### SYNOPSIS ```bash git town sync-strategy [(merge | rebase)] ``` Default value will be `merge`. No breaking changes When `rebase`...

Temporary or maybe permanent solution :) ```bash alias towns='git-town sync && git rebase $(git config git-town.main-branch-name) && git push --force-with-lease' ``` It will do a sync using default merge strategy....

@sheldonhull try alias I recommended above, I use it almost half a year and it works very well. I have also git rerere enabled. In case of conflicts I fix...

I think this one is also good https://github.com/unjs/siroc

Also nowadays one can use https://nx.dev/ it works for single or monorepo

I looked more into the problem. - `@vue/compiler-sfc` allows to handle `srcset` via `transformAssetUrls` option, and has some defaults [link](https://github.com/vuejs/core/blob/4a3237ad9300693e465f82a6be3552565a1c4be3/packages/compiler-sfc/src/templateTransformAssetUrl.ts#L40) - `vite` is using that option to transform `source#srcset` [link](https://github.com/vitejs/vite/blob/5c1ee5abf987e25bd39d5af8013ed907a33d4d14/packages/vite/src/node/plugins/html.ts#L126)...