galbe 0.12.1 → 0.12.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (41) hide show
  1. package/package.json +6 -1
  2. package/.github/ISSUE_TEMPLATE/bug_report.md +0 -35
  3. package/.github/ISSUE_TEMPLATE/feature_request.md +0 -23
  4. package/.github/workflows/build_test.yml +0 -17
  5. package/.github/workflows/deploy_website.yml +0 -20
  6. package/.github/workflows/release.yml +0 -39
  7. package/.prettierrc +0 -10
  8. package/bun.lock +0 -904
  9. package/bunfig.toml +0 -2
  10. package/docs/CONTRIBUTING.md +0 -105
  11. package/docs/cli.md +0 -343
  12. package/docs/configuration.md +0 -80
  13. package/docs/context.md +0 -104
  14. package/docs/error-handler.md +0 -54
  15. package/docs/getting-started.md +0 -164
  16. package/docs/handler.md +0 -119
  17. package/docs/hooks.md +0 -90
  18. package/docs/plugins.md +0 -146
  19. package/docs/router.md +0 -10
  20. package/docs/routes.md +0 -133
  21. package/docs/schemas.md +0 -327
  22. package/test/hooks.test.ts +0 -200
  23. package/test/parser.test.ts +0 -1358
  24. package/test/plugins.test.ts +0 -239
  25. package/test/requests.test.ts +0 -917
  26. package/test/resources/image.png +0 -0
  27. package/test/resources/object.badSyntax.json +0 -8
  28. package/test/resources/object.json +0 -8
  29. package/test/resources/object.missing.json +0 -6
  30. package/test/resources/static/chameleon.png +0 -0
  31. package/test/resources/static/index.html +0 -13
  32. package/test/resources/static/sub/index.html +0 -13
  33. package/test/resources/static/sub/other.html +0 -13
  34. package/test/resources/test.route.comment.ts +0 -58
  35. package/test/resources/test.route.empty.ts +0 -9
  36. package/test/responses.test.ts +0 -483
  37. package/test/routeFiles.test.ts +0 -239
  38. package/test/router.test.ts +0 -231
  39. package/test/test.utils.ts +0 -109
  40. package/test/types.test.ts +0 -909
  41. package/tsconfig.json +0 -23
package/tsconfig.json DELETED
@@ -1,23 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "lib": ["ESNext"],
4
- "target": "ESNext",
5
- "module": "ESNext",
6
- "moduleDetection": "force",
7
- "jsx": "react-jsx",
8
- "allowJs": true,
9
- "declaration": true,
10
- "emitDeclarationOnly": true,
11
-
12
- "moduleResolution": "bundler",
13
- "allowImportingTsExtensions": true,
14
- "verbatimModuleSyntax": true,
15
-
16
- "skipLibCheck": true,
17
- "strict": true,
18
- "noFallthroughCasesInSwitch": true,
19
- "forceConsistentCasingInFileNames": true,
20
- },
21
- "include": ["src","test"],
22
- "exclude": ["node_modules"]
23
- }