Jamie Kyle

Results 5 comments of Jamie Kyle

I'm translating the above as "How is this [adj: [鬼](https://translate.google.com/#view=home&op=translate&sl=auto&tl=en&text=%E9%AC%BC)] thing used?" (Sorry I can't translate 鬼 in context) --- From the `/generate` page on a "template" repository, you can...

I've written a shell script to solve my need here: ```sh index=0 split=-1 for arg in "$@" do if [ "$arg" = '--' ]; then split=$index break fi index=$(expr $index...

Never mind, the above script shits itself in different places

> The new configuration file `.parcelrc` is a JSON file That's actually not the case. Technically `.parcelrc` is JSON5 right now, although we are discussing using [JSONC](https://github.com/microsoft/node-jsonc-parser). ```jsonc { //...

> at the expense of a slightly nicer experience for devs using Parcel. I would argue that a `.js` file makes it a significantly worse experience for developers. Look at...