BuilderIO / BuilderIO/micro-agent
Two problems in a rough test run.
- Dominant language
- TypeScript
- Stars
- 4.3k
- Forks
- 380
- PR merge metrics
- No merged PRs in 30d
Description
1. Micro-agent didn't help me changing my `package.json`.
I needed to install dependency (jest) by myself.
I asked to ChatGPT and it replied me that I should do following steps:
* `npm install --save-dev jest ts-jest @types/jest`
* Configure `package.json`:
```
"jest": {
"transform": {
"^.+\\.ts$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.ts$",
"moduleFileExtensions": ["ts", "js"],
"testEnvironment": "node"
}
```
Please automate it.
2. The generated code has unwanted `` on top and `` at the bottom.
Finally, the test passed. Congratulations! You made a significant step for Typescript, Builder-IO!
Contributor guide
Assessment
This issue has not been assessed yet.