Bill Kerr
Bill Kerr
I installed the Svelte VS Code extension to see if they had the same problem. I set up Stylelint and got it to report errors through VS Code. Similar to...
@Coly010, thanks for linking that fix! I created a simple run-interactive-command executor and added **"outputCapture": "direct-nodejs"** in schema.json. Then, I was able to use execSync from child_process (instead of execa),...
After failing to get **postcss-lit** working with **rollup** to transform css within _static styles = css``_ (which **vite** uses in case that's relevant), I have also come to the conclusion...
I got inspired by: https://github.com/mwmcode/rollup-plugin-lit-tailwindcss/blob/main/src/index.js ChatGPT helped me come up with the following simple concept. vite.config.ts: ```typescript import postcss from 'postcss' import tailwindcss from 'tailwindcss' import { defineConfig } from...
> in the projects i've used tailwind in, we basically split the styles out in all non-trivial cases > > i.e. we have this: > > ```ts > // my-element.ts...
@DylanPiercey I watched [the YouTube video](https://www.youtube.com/watch?v=MWUZK_mbdlU) with you and Kelvin Omereshone. I'm very impressed with [Marko](https://markojs.com) syntax, and I think it looks the best. Keep up the good work! That...
I'm using Roo, but here's how I got a task like this to work: ``` Can you fetch @https://datatracker.ietf.org/doc/html/rfc8441 into file out.txt? ```` In **.devcontainer/devcontainer.json**: ``` "runArgs": ["--cap-add=SYS_ADMIN", ... ```...