We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Documentation is incorrect
This is the scripts section in package.json when generated using bun create elysia app
bun create elysia app
"scripts": { "test": "echo \"Error: no test specified\" && exit 1", "dev": "bun run --watch src/index.ts" }
This is what's currently what's written in manual installation section:
"scripts": { "dev": "bun --watch src/index.ts", "build": "bun build src/index.ts", "start": "NODE_ENV=production bun src/index.ts", "test": "bun test" }
Suggested changes:
bun test
https://elysiajs.com/quick-start.html
The text was updated successfully, but these errors were encountered:
If the suggested changes are good, I could make the PRs @SaltyAom
Sorry, something went wrong.
No branches or pull requests
What is the type of issue?
Documentation is incorrect
What is the issue?
This is the scripts section in package.json when generated using
bun create elysia app
This is what's currently what's written in manual installation section:
Suggested changes:
bun test
does its thing by defaultWhere did you find it?
https://elysiajs.com/quick-start.html
The text was updated successfully, but these errors were encountered: