gitextract_9zkgrm11/ ├── .all-contributorsrc ├── .bundle.main.env ├── .bundle.pure.env ├── .codesandbox/ │ └── ci.json ├── .gitattributes ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── Bug_Report.md │ │ ├── Feature_Request.md │ │ └── Question.md │ ├── ISSUE_TEMPLATE.md │ ├── PULL_REQUEST_TEMPLATE.md │ └── workflows/ │ ├── release.yml │ └── validate.yml ├── .gitignore ├── .huskyrc.js ├── .npmrc ├── .prettierignore ├── .prettierrc.js ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── codecov.yml ├── dont-cleanup-after-each.js ├── jest.config.js ├── other/ │ ├── MAINTAINING.md │ ├── USERS.md │ ├── design files/ │ │ ├── README.txt │ │ └── cheat-sheet.afpub │ └── manual-releases.md ├── package.json ├── pure.d.ts ├── pure.js ├── src/ │ ├── __mocks__/ │ │ └── axios.js │ ├── __tests__/ │ │ ├── __snapshots__/ │ │ │ └── render.js.snap │ │ ├── act.js │ │ ├── auto-cleanup-skip.js │ │ ├── auto-cleanup.js │ │ ├── cleanup.js │ │ ├── config.js │ │ ├── debug.js │ │ ├── end-to-end.js │ │ ├── error-handlers.js │ │ ├── events.js │ │ ├── multi-base.js │ │ ├── new-act.js │ │ ├── render.js │ │ ├── renderHook.js │ │ ├── rerender.js │ │ └── stopwatch.js │ ├── act-compat.js │ ├── config.js │ ├── fire-event.js │ ├── index.js │ └── pure.js ├── tests/ │ ├── failOnUnexpectedConsoleCalls.js │ ├── setup-env.js │ ├── shouldIgnoreConsoleError.js │ └── toWarnDev.js ├── tsconfig.json └── types/ ├── index.d.ts ├── pure.d.ts ├── test.tsx └── tsconfig.json