chenjietao

Results 4 comments of chenjietao

Update on Apirl 7th ``` bash activ_win_pid=`xprop -id $activ_win_id | grep "_NET_WM_PID(CARDINAL)"` activ_win_pid=${activ_win_pid##* } ##Accidentally forgot to add this phrase before. ``` Update on Apirl 10th ``` bash activ_win_id=${activ_win_id:40:9} if...

https://github.com/kornelski/cavif-rs/issues/82#issuecomment-2234635159 运行`cargo update --precise 0.11.6 -p ravif`之后再build

My solution: ![Image](https://github.com/user-attachments/assets/77a9ddb9-2c1c-418d-850c-ef4cc600f119) Change the first `exports` item in `node_modules/css-tree/package.json`: ```diff "exports": { ".": { - "import": "./lib/index.js", + "import": "./cjs/index.cjs", "require": "./cjs/index.cjs" }, ... ```

> I make more minimal that works in node but not bun (using packages `tsx` and `css-tree`) > > import { register } from 'tsx/esm/api'; > register() > > await...