Write README.md for me:
Uncomplicate JavaScript
Run prettier
bash esmate fmt
bash esmate fmt --fix
Run eslint
bash esmate lint
bash esmate lint --fix
The task will be defined in package.json.
json { "tasks": { "build": "tsc && vite build" } }
json { "tasks": { "build": ["tsc", "vite build"] } }
json { "tasks": { "build": { "styles": "sass --watch input.scss output.css", "scripts": "tsc --watch" } } }