Jason

Results 109 comments of Jason
trafficstars

Although I see JS-based frameworks converging on Vite as the standard bundler long term, +1 for [rspack](https://rspack.dev/) as an easy way to speed iteration for developers in the near term....

@birkskyum I took a look at the unit test config as you requested. Looks good afaict. Coverage is in a separate command, `fileParallelism` is left at the default (true), etc....

I didn't run Vitest with Bun, I ported my tests to `bun:test` by changing the imports `import { expect, test } from "bun:test";`. In my case, it mostly just worked...

So it'd essentially be [an alias for `ts-node`](https://github.com/TypeStrong/ts-node#command-line)? ``` ts-node foo.ts OR npx ts-node foo.ts ```

> automatically resolve snarkyjs hmm that's encouraging some pretty sloppy coding and ts should be yelling at the dev for not having this. But could be convenient. > executing with...

The bug seems related to using `update_cache: true` like @eff917 said. I had to run `sudo mv /var/lib/dpkg/lock /var/lib/dpkg/lock.bak` to remove the lock, then Ansible proceeded successfully and apt-get also...

I'm not an npm private package user, but [here's](https://github.com/oven-sh/bun/issues/4978#issuecomment-1714616872) a similar one for Github private package repository. `bunfig.toml` ```toml [install.scopes] "@yourusername" = { token = "XXX", url = "https://npm.pkg.github.com/" }...

@sebastianbuechler You can use private npm packages. [Bun supports `.npmrc` now](https://bun.sh/docs/install/npmrc), in addition to its usual `bunfig.toml`. I keep both files and duplicate contents within each, until `bunfig.toml` is supported...