૮༼⚆︿⚆༽つ

Results 61 comments of ૮༼⚆︿⚆༽つ

Is it really stabilize in v1.24? I didn't see it in the release notes 🤔 Also, the manual say it still require `--unstable` flag.

It's possible by extending the config similar to tailwind[^1] ```js /// windi.config.js export default { theme: { extend: { backgroundImage: { "gradient-radial": "radial-gradient(ellipse at center, var(--tw-gradient-stops))", "gradient-radial-at-t": "radial-gradient(ellipse at top,...

In Linux, does the min browser always run on single instance mode? I mean when I spawn multiple min browser it will share the same instance (similar on how `firefox...

@PalmerAL > @DrSensor Yes, that's done [here](https://github.com/minbrowser/min/blob/1cfbd1b40381052a8daa123f2406aa6c276e78fe/main/main.js#L60-L64). I mean sharing the same instance even though it spawned multiple times. From that source code, it means `min` doesn't allow me to...

Another case when spawned process not closed when deno task exit ```json { "importMap": "./import_map.json", "tasks": { "lume": "echo \"import 'lume/task.ts'\" | deno run --unstable --allow-read --allow-run --lock=lock.json -", "serve":...

While at it, I think a feature to limit the _max_ number of args can be handy too. The syntax would be something like: ~~~md ### watch build (files/2 option...)...

one of my use case to use [custom bundling _`a.k.a partial import`_ in mathjs](http://mathjs.org/docs/custom_bundling.html) ```ts // tslint:disable:no-var-requires import core from 'mathjs/core' // @ts-ignore import mathUnit from 'mathjs/lib/type/unit' // @ts-ignore import...

Since html attributes name can be anything other than `'">/=`, it would be interesting to leverage HTMLRewriter but with builtin cache. Supporting WebC or vue-like syntax as template engine would...

I've done some [experiment](https://github.com/DrSensor/orb/blob/4be2c5a88fb1af9156b544500501a7ec5c6fcf3c/shim.config.js#L62-L67) to integrate `@swc/wasm` with [es-module-shims](https://github.com/guybedford/es-module-shims) in the past. Hope that can help.

It's weird that Command have [`env_clear()`](https://doc.rust-lang.org/std/process/struct.Command.html#method.env_clear) while `args_clear()` is missing 🙁 I propose to add `arg_clear()` and `arg_remove(arg)` so it have the same parity with [`env_clear()`](https://doc.rust-lang.org/std/process/struct.Command.html#method.env_clear) and [`env_remove(env)`](https://doc.rust-lang.org/std/process/struct.Command.html#method.env_remove)