@donkeylabs/server 0.2.6 → 0.2.9

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 (2067) hide show
  1. package/examples/starter/bun.lock +3 -125
  2. package/examples/starter/node_modules/@donkeylabs/server/README.md +15 -0
  3. package/examples/starter/node_modules/@donkeylabs/server/cli/commands/dev.ts +134 -0
  4. package/examples/starter/node_modules/@donkeylabs/server/cli/commands/generate.ts +445 -0
  5. package/examples/starter/node_modules/@donkeylabs/server/cli/commands/init.ts +205 -0
  6. package/examples/starter/node_modules/@donkeylabs/server/cli/commands/interactive.ts +417 -0
  7. package/examples/starter/node_modules/@donkeylabs/server/cli/commands/plugin.ts +192 -0
  8. package/examples/starter/node_modules/@donkeylabs/server/cli/commands/route.ts +195 -0
  9. package/examples/starter/node_modules/@donkeylabs/server/cli/donkeylabs +2 -0
  10. package/examples/starter/node_modules/@donkeylabs/server/cli/index.ts +114 -0
  11. package/examples/starter/node_modules/@donkeylabs/server/docs/api-client.md +520 -0
  12. package/examples/starter/node_modules/@donkeylabs/server/docs/cache.md +437 -0
  13. package/examples/starter/node_modules/@donkeylabs/server/docs/cli.md +353 -0
  14. package/examples/starter/node_modules/@donkeylabs/server/docs/core-services.md +338 -0
  15. package/examples/starter/node_modules/@donkeylabs/server/docs/cron.md +465 -0
  16. package/examples/starter/node_modules/@donkeylabs/server/docs/errors.md +303 -0
  17. package/examples/starter/node_modules/@donkeylabs/server/docs/events.md +460 -0
  18. package/examples/starter/node_modules/@donkeylabs/server/docs/handlers.md +549 -0
  19. package/examples/starter/node_modules/@donkeylabs/server/docs/jobs.md +556 -0
  20. package/examples/starter/node_modules/@donkeylabs/server/docs/logger.md +316 -0
  21. package/examples/starter/node_modules/@donkeylabs/server/docs/middleware.md +682 -0
  22. package/examples/starter/node_modules/@donkeylabs/server/docs/plugins.md +524 -0
  23. package/examples/starter/node_modules/@donkeylabs/server/docs/project-structure.md +493 -0
  24. package/examples/starter/node_modules/@donkeylabs/server/docs/rate-limiter.md +525 -0
  25. package/examples/starter/node_modules/@donkeylabs/server/docs/router.md +566 -0
  26. package/examples/starter/node_modules/@donkeylabs/server/docs/sse.md +542 -0
  27. package/examples/starter/node_modules/@donkeylabs/server/docs/svelte-frontend.md +324 -0
  28. package/examples/starter/node_modules/@donkeylabs/server/examples/starter/.@donkeylabs/server/context.d.ts +37 -0
  29. package/examples/starter/node_modules/@donkeylabs/server/examples/starter/.@donkeylabs/server/registry.d.ts +31 -0
  30. package/examples/starter/node_modules/@donkeylabs/server/examples/starter/.@donkeylabs/server/routes.ts +21 -0
  31. package/examples/starter/node_modules/@donkeylabs/server/examples/starter/.env.example +3 -0
  32. package/examples/starter/node_modules/@donkeylabs/server/examples/starter/.gitignore.template +4 -0
  33. package/examples/starter/node_modules/@donkeylabs/server/examples/starter/CLAUDE.md +144 -0
  34. package/examples/starter/node_modules/@donkeylabs/server/examples/starter/donkeylabs.config.ts +6 -0
  35. package/examples/starter/node_modules/@donkeylabs/server/examples/starter/package.json +20 -0
  36. package/examples/starter/node_modules/@donkeylabs/server/examples/starter/src/db.ts +9 -0
  37. package/examples/starter/node_modules/@donkeylabs/server/examples/starter/src/index.ts +32 -0
  38. package/examples/starter/node_modules/@donkeylabs/server/examples/starter/src/plugins/stats/index.ts +93 -0
  39. package/examples/starter/node_modules/@donkeylabs/server/examples/starter/src/routes/health/index.ts +5 -0
  40. package/examples/starter/node_modules/@donkeylabs/server/examples/starter/src/routes/health/ping/index.ts +13 -0
  41. package/examples/starter/node_modules/@donkeylabs/server/examples/starter/src/routes/health/ping/models/model.ts +23 -0
  42. package/examples/starter/node_modules/@donkeylabs/server/examples/starter/src/routes/health/ping/schema.ts +14 -0
  43. package/examples/starter/node_modules/@donkeylabs/server/examples/starter/src/routes/health/ping/tests/integ.test.ts +20 -0
  44. package/examples/starter/node_modules/@donkeylabs/server/examples/starter/src/routes/health/ping/tests/unit.test.ts +20 -0
  45. package/examples/starter/node_modules/@donkeylabs/server/examples/starter/tsconfig.json +27 -0
  46. package/examples/starter/node_modules/@donkeylabs/server/mcp/donkeylabs-mcp +3238 -0
  47. package/examples/starter/node_modules/@donkeylabs/server/mcp/server.ts +3238 -0
  48. package/examples/starter/node_modules/@donkeylabs/server/package.json +77 -0
  49. package/examples/starter/node_modules/@donkeylabs/server/src/client/base.ts +481 -0
  50. package/examples/starter/node_modules/@donkeylabs/server/src/client/index.ts +150 -0
  51. package/examples/starter/node_modules/@donkeylabs/server/src/core/cache.ts +183 -0
  52. package/examples/starter/node_modules/@donkeylabs/server/src/core/cron.ts +255 -0
  53. package/examples/starter/node_modules/@donkeylabs/server/src/core/errors.ts +320 -0
  54. package/examples/starter/node_modules/@donkeylabs/server/src/core/events.ts +163 -0
  55. package/examples/starter/node_modules/@donkeylabs/server/src/core/index.ts +94 -0
  56. package/examples/starter/node_modules/@donkeylabs/server/src/core/jobs.ts +334 -0
  57. package/examples/starter/node_modules/@donkeylabs/server/src/core/logger.ts +131 -0
  58. package/examples/starter/node_modules/@donkeylabs/server/src/core/rate-limiter.ts +193 -0
  59. package/examples/starter/node_modules/@donkeylabs/server/src/core/sse.ts +210 -0
  60. package/examples/starter/node_modules/@donkeylabs/server/src/core.ts +428 -0
  61. package/examples/starter/node_modules/@donkeylabs/server/src/handlers.ts +182 -0
  62. package/examples/starter/node_modules/@donkeylabs/server/src/harness.ts +70 -0
  63. package/examples/starter/node_modules/@donkeylabs/server/src/index.ts +51 -0
  64. package/examples/starter/node_modules/@donkeylabs/server/src/middleware.ts +34 -0
  65. package/examples/starter/node_modules/@donkeylabs/server/src/registry.ts +13 -0
  66. package/examples/starter/node_modules/@donkeylabs/server/src/router.ts +172 -0
  67. package/examples/starter/node_modules/@donkeylabs/server/src/server.ts +240 -0
  68. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/CLAUDE.md +105 -0
  69. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/README.md +33 -0
  70. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/bun.d.ts +7779 -0
  71. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/bun.ns.d.ts +5 -0
  72. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/bundle.d.ts +74 -0
  73. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/deprecated.d.ts +184 -0
  74. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/devserver.d.ts +187 -0
  75. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/README.md +28 -0
  76. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/bundler/bytecode.mdx +465 -0
  77. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/bundler/css.mdx +1024 -0
  78. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/bundler/esbuild.mdx +298 -0
  79. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/bundler/executables.mdx +1277 -0
  80. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/bundler/fullstack.mdx +1086 -0
  81. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/bundler/hot-reloading.mdx +229 -0
  82. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/bundler/html-static.mdx +488 -0
  83. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/bundler/index.mdx +1750 -0
  84. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/bundler/loaders.mdx +451 -0
  85. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/bundler/macros.mdx +328 -0
  86. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/bundler/minifier.mdx +1286 -0
  87. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/bundler/plugins.mdx +425 -0
  88. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/feedback.mdx +75 -0
  89. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/binary/arraybuffer-to-array.mdx +29 -0
  90. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/binary/arraybuffer-to-blob.mdx +26 -0
  91. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/binary/arraybuffer-to-buffer.mdx +27 -0
  92. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/binary/arraybuffer-to-string.mdx +17 -0
  93. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/binary/arraybuffer-to-typedarray.mdx +41 -0
  94. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/binary/blob-to-arraybuffer.mdx +16 -0
  95. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/binary/blob-to-dataview.mdx +16 -0
  96. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/binary/blob-to-stream.mdx +16 -0
  97. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/binary/blob-to-string.mdx +17 -0
  98. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/binary/blob-to-typedarray.mdx +16 -0
  99. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/binary/buffer-to-arraybuffer.mdx +16 -0
  100. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/binary/buffer-to-blob.mdx +16 -0
  101. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/binary/buffer-to-readablestream.mdx +43 -0
  102. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/binary/buffer-to-string.mdx +27 -0
  103. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/binary/buffer-to-typedarray.mdx +16 -0
  104. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/binary/dataview-to-string.mdx +17 -0
  105. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/binary/typedarray-to-arraybuffer.mdx +27 -0
  106. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/binary/typedarray-to-blob.mdx +18 -0
  107. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/binary/typedarray-to-buffer.mdx +16 -0
  108. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/binary/typedarray-to-dataview.mdx +16 -0
  109. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/binary/typedarray-to-readablestream.mdx +43 -0
  110. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/binary/typedarray-to-string.mdx +18 -0
  111. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/deployment/aws-lambda.mdx +204 -0
  112. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/deployment/digital-ocean.mdx +161 -0
  113. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/deployment/google-cloud-run.mdx +194 -0
  114. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/deployment/railway.mdx +145 -0
  115. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/deployment/render.mdx +82 -0
  116. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/deployment/vercel.mdx +97 -0
  117. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/ecosystem/astro.mdx +82 -0
  118. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/ecosystem/discordjs.mdx +80 -0
  119. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/ecosystem/docker.mdx +151 -0
  120. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/ecosystem/drizzle.mdx +195 -0
  121. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/ecosystem/elysia.mdx +31 -0
  122. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/ecosystem/express.mdx +43 -0
  123. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/ecosystem/gel.mdx +261 -0
  124. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/ecosystem/hono.mdx +47 -0
  125. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/ecosystem/mongoose.mdx +92 -0
  126. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/ecosystem/neon-drizzle.mdx +234 -0
  127. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/ecosystem/neon-serverless-postgres.mdx +60 -0
  128. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/ecosystem/nextjs.mdx +103 -0
  129. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/ecosystem/nuxt.mdx +96 -0
  130. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/ecosystem/pm2.mdx +55 -0
  131. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/ecosystem/prisma-postgres.mdx +169 -0
  132. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/ecosystem/prisma.mdx +164 -0
  133. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/ecosystem/qwik.mdx +114 -0
  134. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/ecosystem/react.mdx +52 -0
  135. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/ecosystem/remix.mdx +97 -0
  136. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/ecosystem/sentry.mdx +54 -0
  137. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/ecosystem/solidstart.mdx +62 -0
  138. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/ecosystem/ssr-react.mdx +49 -0
  139. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/ecosystem/stric.mdx +54 -0
  140. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/ecosystem/sveltekit.mdx +138 -0
  141. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/ecosystem/systemd.mdx +114 -0
  142. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/ecosystem/tanstack-start.mdx +791 -0
  143. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/ecosystem/upstash.mdx +87 -0
  144. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/ecosystem/vite.mdx +77 -0
  145. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/html-rewriter/extract-links.mdx +71 -0
  146. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/html-rewriter/extract-social-meta.mdx +97 -0
  147. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/http/cluster.mdx +69 -0
  148. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/http/fetch-unix.mdx +35 -0
  149. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/http/fetch.mdx +26 -0
  150. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/http/file-uploads.mdx +97 -0
  151. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/http/hot.mdx +28 -0
  152. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/http/proxy.mdx +50 -0
  153. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/http/server.mdx +48 -0
  154. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/http/simple.mdx +20 -0
  155. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/http/stream-file.mdx +50 -0
  156. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/http/stream-iterator.mdx +49 -0
  157. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/http/stream-node-streams-in-bun.mdx +22 -0
  158. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/http/tls.mdx +32 -0
  159. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/index.mdx +10 -0
  160. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/install/add-dev.mdx +28 -0
  161. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/install/add-git.mdx +40 -0
  162. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/install/add-optional.mdx +27 -0
  163. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/install/add-peer.mdx +45 -0
  164. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/install/add-tarball.mdx +35 -0
  165. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/install/add.mdx +44 -0
  166. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/install/azure-artifacts.mdx +76 -0
  167. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/install/cicd.mdx +43 -0
  168. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/install/custom-registry.mdx +32 -0
  169. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/install/from-npm-install-to-bun-install.mdx +230 -0
  170. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/install/git-diff-bun-lockfile.mdx +48 -0
  171. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/install/jfrog-artifactory.mdx +28 -0
  172. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/install/npm-alias.mdx +25 -0
  173. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/install/registry-scope.mdx +40 -0
  174. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/install/trusted.mdx +52 -0
  175. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/install/workspaces.mdx +70 -0
  176. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/install/yarnlock.mdx +51 -0
  177. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/process/argv.mdx +66 -0
  178. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/process/ctrl-c.mdx +18 -0
  179. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/process/ipc.mdx +69 -0
  180. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/process/nanoseconds.mdx +15 -0
  181. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/process/os-signals.mdx +31 -0
  182. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/process/spawn-stderr.mdx +34 -0
  183. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/process/spawn-stdout.mdx +28 -0
  184. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/process/spawn.mdx +43 -0
  185. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/process/stdin.mdx +62 -0
  186. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/read-file/arraybuffer.mdx +30 -0
  187. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/read-file/buffer.mdx +21 -0
  188. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/read-file/exists.mdx +18 -0
  189. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/read-file/json.mdx +19 -0
  190. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/read-file/mime.mdx +22 -0
  191. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/read-file/stream.mdx +28 -0
  192. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/read-file/string.mdx +24 -0
  193. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/read-file/uint8array.mdx +23 -0
  194. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/read-file/watch.mdx +66 -0
  195. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/runtime/build-time-constants.mdx +295 -0
  196. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/runtime/cicd.mdx +45 -0
  197. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/runtime/codesign-macos-executable.mdx +61 -0
  198. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/runtime/define-constant.mdx +149 -0
  199. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/runtime/delete-directory.mdx +39 -0
  200. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/runtime/delete-file.mdx +21 -0
  201. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/runtime/heap-snapshot.mdx +28 -0
  202. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/runtime/import-html.mdx +15 -0
  203. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/runtime/import-json.mdx +46 -0
  204. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/runtime/import-toml.mdx +32 -0
  205. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/runtime/import-yaml.mdx +104 -0
  206. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/runtime/read-env.mdx +37 -0
  207. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/runtime/set-env.mdx +51 -0
  208. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/runtime/shell.mdx +42 -0
  209. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/runtime/timezone.mdx +38 -0
  210. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/runtime/tsconfig-paths.mdx +31 -0
  211. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/runtime/typescript.mdx +51 -0
  212. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/runtime/vscode-debugger.mdx +47 -0
  213. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/runtime/web-debugger.mdx +103 -0
  214. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/streams/node-readable-to-arraybuffer.mdx +13 -0
  215. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/streams/node-readable-to-blob.mdx +13 -0
  216. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/streams/node-readable-to-json.mdx +14 -0
  217. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/streams/node-readable-to-string.mdx +14 -0
  218. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/streams/node-readable-to-uint8array.mdx +13 -0
  219. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/streams/to-array.mdx +16 -0
  220. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/streams/to-arraybuffer.mdx +16 -0
  221. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/streams/to-blob.mdx +16 -0
  222. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/streams/to-buffer.mdx +17 -0
  223. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/streams/to-json.mdx +16 -0
  224. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/streams/to-string.mdx +16 -0
  225. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/streams/to-typedarray.mdx +24 -0
  226. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/test/bail.mdx +24 -0
  227. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/test/concurrent-test-glob.mdx +146 -0
  228. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/test/coverage-threshold.mdx +67 -0
  229. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/test/coverage.mdx +49 -0
  230. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/test/happy-dom.mdx +73 -0
  231. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/test/migrate-from-jest.mdx +125 -0
  232. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/test/mock-clock.mdx +50 -0
  233. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/test/mock-functions.mdx +70 -0
  234. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/test/rerun-each.mdx +16 -0
  235. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/test/run-tests.mdx +116 -0
  236. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/test/skip-tests.mdx +43 -0
  237. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/test/snapshot.mdx +102 -0
  238. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/test/spy-on.mdx +49 -0
  239. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/test/svelte-test.mdx +113 -0
  240. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/test/testing-library.mdx +93 -0
  241. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/test/timeout.mdx +17 -0
  242. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/test/todo-tests.mdx +74 -0
  243. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/test/update-snapshots.mdx +49 -0
  244. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/test/watch-mode.mdx +24 -0
  245. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/util/base64.mdx +17 -0
  246. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/util/deep-equals.mdx +41 -0
  247. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/util/deflate.mdx +20 -0
  248. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/util/detect-bun.mdx +28 -0
  249. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/util/entrypoint.mdx +19 -0
  250. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/util/escape-html.mdx +24 -0
  251. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/util/file-url-to-path.mdx +16 -0
  252. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/util/gzip.mdx +20 -0
  253. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/util/hash-a-password.mdx +56 -0
  254. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/util/import-meta-dir.mdx +15 -0
  255. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/util/import-meta-file.mdx +15 -0
  256. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/util/import-meta-path.mdx +15 -0
  257. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/util/javascript-uuid.mdx +25 -0
  258. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/util/main.mdx +43 -0
  259. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/util/path-to-file-url.mdx +16 -0
  260. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/util/sleep.mdx +24 -0
  261. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/util/upgrade.mdx +93 -0
  262. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/util/version.mdx +23 -0
  263. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/util/which-path-to-executable-bin.mdx +17 -0
  264. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/websocket/compression.mdx +33 -0
  265. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/websocket/context.mdx +79 -0
  266. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/websocket/pubsub.mdx +43 -0
  267. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/websocket/simple.mdx +38 -0
  268. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/write-file/append.mdx +54 -0
  269. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/write-file/basic.mdx +46 -0
  270. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/write-file/blob.mdx +30 -0
  271. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/write-file/cat.mdx +19 -0
  272. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/write-file/file-cp.mdx +18 -0
  273. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/write-file/filesink.mdx +54 -0
  274. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/write-file/response.mdx +19 -0
  275. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/write-file/stdout.mdx +23 -0
  276. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/write-file/stream.mdx +19 -0
  277. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/guides/write-file/unlink.mdx +18 -0
  278. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/index.mdx +133 -0
  279. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/installation.mdx +365 -0
  280. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/pm/bunx.mdx +91 -0
  281. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/pm/catalogs.mdx +292 -0
  282. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/pm/cli/add.mdx +179 -0
  283. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/pm/cli/audit.mdx +60 -0
  284. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/pm/cli/info.mdx +70 -0
  285. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/pm/cli/install.mdx +606 -0
  286. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/pm/cli/link.mdx +61 -0
  287. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/pm/cli/outdated.mdx +197 -0
  288. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/pm/cli/patch.mdx +69 -0
  289. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/pm/cli/pm.mdx +323 -0
  290. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/pm/cli/publish.mdx +131 -0
  291. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/pm/cli/remove.mdx +16 -0
  292. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/pm/cli/update.mdx +140 -0
  293. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/pm/cli/why.mdx +84 -0
  294. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/pm/filter.mdx +102 -0
  295. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/pm/global-cache.mdx +72 -0
  296. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/pm/isolated-installs.mdx +220 -0
  297. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/pm/lifecycle.mdx +64 -0
  298. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/pm/lockfile.mdx +64 -0
  299. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/pm/npmrc.mdx +245 -0
  300. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/pm/overrides.mdx +83 -0
  301. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/pm/scopes-registries.mdx +35 -0
  302. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/pm/security-scanner-api.mdx +95 -0
  303. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/pm/workspaces.mdx +115 -0
  304. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/project/benchmarking.mdx +241 -0
  305. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/project/bindgen.mdx +223 -0
  306. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/project/building-windows.mdx +133 -0
  307. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/project/contributing.mdx +371 -0
  308. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/project/feedback.mdx +20 -0
  309. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/project/license.mdx +78 -0
  310. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/project/roadmap.mdx +8 -0
  311. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/quickstart.mdx +251 -0
  312. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/archive.mdx +452 -0
  313. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/auto-install.mdx +97 -0
  314. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/binary-data.mdx +846 -0
  315. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/bun-apis.mdx +59 -0
  316. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/bunfig.mdx +743 -0
  317. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/c-compiler.mdx +204 -0
  318. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/child-process.mdx +659 -0
  319. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/color.mdx +267 -0
  320. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/console.mdx +67 -0
  321. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/cookies.mdx +454 -0
  322. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/debugger.mdx +335 -0
  323. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/environment-variables.mdx +231 -0
  324. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/ffi.mdx +567 -0
  325. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/file-io.mdx +306 -0
  326. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/file-system-router.mdx +118 -0
  327. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/file-types.mdx +435 -0
  328. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/glob.mdx +181 -0
  329. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/globals.mdx +72 -0
  330. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/hashing.mdx +315 -0
  331. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/html-rewriter.mdx +333 -0
  332. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/http/cookies.mdx +79 -0
  333. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/http/error-handling.mdx +40 -0
  334. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/http/metrics.mdx +36 -0
  335. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/http/routing.mdx +289 -0
  336. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/http/server.mdx +645 -0
  337. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/http/tls.mdx +101 -0
  338. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/http/websockets.mdx +414 -0
  339. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/index.mdx +223 -0
  340. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/jsx.mdx +115 -0
  341. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/module-resolution.mdx +374 -0
  342. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/networking/dns.mdx +111 -0
  343. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/networking/fetch.mdx +484 -0
  344. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/networking/tcp.mdx +239 -0
  345. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/networking/udp.mdx +180 -0
  346. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/node-api.mdx +19 -0
  347. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/nodejs-compat.mdx +468 -0
  348. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/plugins.mdx +419 -0
  349. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/redis.mdx +583 -0
  350. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/s3.mdx +863 -0
  351. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/secrets.mdx +340 -0
  352. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/semver.mdx +57 -0
  353. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/shell.mdx +637 -0
  354. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/sql.mdx +1404 -0
  355. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/sqlite.mdx +721 -0
  356. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/streams.mdx +232 -0
  357. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/templating/create.mdx +269 -0
  358. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/templating/init.mdx +58 -0
  359. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/transpiler.mdx +288 -0
  360. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/typescript.mdx +58 -0
  361. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/utils.mdx +922 -0
  362. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/watch-mode.mdx +161 -0
  363. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/web-apis.mdx +29 -0
  364. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/workers.mdx +314 -0
  365. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/runtime/yaml.mdx +469 -0
  366. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/snippets/cli/add.mdx +166 -0
  367. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/snippets/cli/build.mdx +196 -0
  368. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/snippets/cli/bunx.mdx +49 -0
  369. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/snippets/cli/feedback.mdx +17 -0
  370. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/snippets/cli/init.mdx +84 -0
  371. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/snippets/cli/install.mdx +173 -0
  372. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/snippets/cli/link.mdx +163 -0
  373. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/snippets/cli/outdated.mdx +140 -0
  374. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/snippets/cli/patch.mdx +171 -0
  375. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/snippets/cli/publish.mdx +198 -0
  376. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/snippets/cli/remove.mdx +146 -0
  377. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/snippets/cli/run.mdx +293 -0
  378. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/snippets/cli/test.mdx +100 -0
  379. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/snippets/cli/update.mdx +144 -0
  380. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/test/code-coverage.mdx +409 -0
  381. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/test/configuration.mdx +509 -0
  382. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/test/dates-times.mdx +129 -0
  383. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/test/discovery.mdx +90 -0
  384. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/test/dom.mdx +226 -0
  385. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/test/index.mdx +380 -0
  386. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/test/lifecycle.mdx +366 -0
  387. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/test/mocks.mdx +637 -0
  388. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/test/reporters.mdx +126 -0
  389. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/test/runtime-behavior.mdx +342 -0
  390. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/test/snapshots.mdx +434 -0
  391. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/test/writing-tests.mdx +672 -0
  392. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/docs/typescript.mdx +54 -0
  393. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/extensions.d.ts +35 -0
  394. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/fetch.d.ts +79 -0
  395. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/ffi.d.ts +1154 -0
  396. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/globals.d.ts +2067 -0
  397. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/html-rewriter.d.ts +186 -0
  398. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/index.d.ts +32 -0
  399. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/jsc.d.ts +233 -0
  400. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/overrides.d.ts +376 -0
  401. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/package.json +37 -0
  402. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/redis.d.ts +3352 -0
  403. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/s3.d.ts +1335 -0
  404. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/security.d.ts +101 -0
  405. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/serve.d.ts +1296 -0
  406. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/shell.d.ts +380 -0
  407. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/sql.d.ts +887 -0
  408. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/sqlite.d.ts +1322 -0
  409. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/test-globals.d.ts +22 -0
  410. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/test.d.ts +2391 -0
  411. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/vendor/expect-type/branding.d.ts +283 -0
  412. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/vendor/expect-type/index.d.ts +1207 -0
  413. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/vendor/expect-type/messages.d.ts +395 -0
  414. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/vendor/expect-type/overloads.d.ts +669 -0
  415. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/vendor/expect-type/utils.d.ts +431 -0
  416. package/examples/starter/node_modules/kysely-bun-sqlite/node_modules/bun-types/wasm.d.ts +193 -0
  417. package/examples/starter/package.json +1 -1
  418. package/examples/starter/src/index.ts +1 -1
  419. package/package.json +1 -1
  420. package/src/router.ts +24 -9
  421. package/src/server.ts +6 -9
  422. package/context.d.ts +0 -27
  423. package/examples/starter/node_modules/.svelte2tsx-language-server-files/svelte-native-jsx.d.ts +0 -32
  424. package/examples/starter/node_modules/.svelte2tsx-language-server-files/svelte-shims-v4.d.ts +0 -290
  425. package/examples/starter/node_modules/@babel/code-frame/LICENSE +0 -22
  426. package/examples/starter/node_modules/@babel/code-frame/README.md +0 -19
  427. package/examples/starter/node_modules/@babel/code-frame/lib/index.js +0 -216
  428. package/examples/starter/node_modules/@babel/code-frame/lib/index.js.map +0 -1
  429. package/examples/starter/node_modules/@babel/code-frame/package.json +0 -32
  430. package/examples/starter/node_modules/@babel/helper-validator-identifier/LICENSE +0 -22
  431. package/examples/starter/node_modules/@babel/helper-validator-identifier/README.md +0 -19
  432. package/examples/starter/node_modules/@babel/helper-validator-identifier/lib/identifier.js +0 -70
  433. package/examples/starter/node_modules/@babel/helper-validator-identifier/lib/identifier.js.map +0 -1
  434. package/examples/starter/node_modules/@babel/helper-validator-identifier/lib/index.js +0 -57
  435. package/examples/starter/node_modules/@babel/helper-validator-identifier/lib/index.js.map +0 -1
  436. package/examples/starter/node_modules/@babel/helper-validator-identifier/lib/keyword.js +0 -35
  437. package/examples/starter/node_modules/@babel/helper-validator-identifier/lib/keyword.js.map +0 -1
  438. package/examples/starter/node_modules/@babel/helper-validator-identifier/package.json +0 -31
  439. package/examples/starter/node_modules/@types/prompts/LICENSE +0 -21
  440. package/examples/starter/node_modules/@types/prompts/README.md +0 -15
  441. package/examples/starter/node_modules/@types/prompts/index.d.ts +0 -123
  442. package/examples/starter/node_modules/@types/prompts/package.json +0 -58
  443. package/examples/starter/node_modules/ansi-styles/index.d.ts +0 -345
  444. package/examples/starter/node_modules/ansi-styles/index.js +0 -163
  445. package/examples/starter/node_modules/ansi-styles/license +0 -9
  446. package/examples/starter/node_modules/ansi-styles/package.json +0 -56
  447. package/examples/starter/node_modules/ansi-styles/readme.md +0 -152
  448. package/examples/starter/node_modules/argparse/CHANGELOG.md +0 -216
  449. package/examples/starter/node_modules/argparse/LICENSE +0 -254
  450. package/examples/starter/node_modules/argparse/README.md +0 -84
  451. package/examples/starter/node_modules/argparse/argparse.js +0 -3707
  452. package/examples/starter/node_modules/argparse/lib/sub.js +0 -67
  453. package/examples/starter/node_modules/argparse/lib/textwrap.js +0 -440
  454. package/examples/starter/node_modules/argparse/package.json +0 -31
  455. package/examples/starter/node_modules/balanced-match/.github/FUNDING.yml +0 -2
  456. package/examples/starter/node_modules/balanced-match/LICENSE.md +0 -21
  457. package/examples/starter/node_modules/balanced-match/README.md +0 -97
  458. package/examples/starter/node_modules/balanced-match/index.js +0 -62
  459. package/examples/starter/node_modules/balanced-match/package.json +0 -48
  460. package/examples/starter/node_modules/brace-expansion/LICENSE +0 -21
  461. package/examples/starter/node_modules/brace-expansion/README.md +0 -129
  462. package/examples/starter/node_modules/brace-expansion/index.js +0 -201
  463. package/examples/starter/node_modules/brace-expansion/package.json +0 -50
  464. package/examples/starter/node_modules/braces/LICENSE +0 -21
  465. package/examples/starter/node_modules/braces/README.md +0 -586
  466. package/examples/starter/node_modules/braces/index.js +0 -170
  467. package/examples/starter/node_modules/braces/lib/compile.js +0 -60
  468. package/examples/starter/node_modules/braces/lib/constants.js +0 -57
  469. package/examples/starter/node_modules/braces/lib/expand.js +0 -113
  470. package/examples/starter/node_modules/braces/lib/parse.js +0 -331
  471. package/examples/starter/node_modules/braces/lib/stringify.js +0 -32
  472. package/examples/starter/node_modules/braces/lib/utils.js +0 -122
  473. package/examples/starter/node_modules/braces/package.json +0 -77
  474. package/examples/starter/node_modules/callsites/index.d.ts +0 -96
  475. package/examples/starter/node_modules/callsites/index.js +0 -13
  476. package/examples/starter/node_modules/callsites/license +0 -9
  477. package/examples/starter/node_modules/callsites/package.json +0 -39
  478. package/examples/starter/node_modules/callsites/readme.md +0 -48
  479. package/examples/starter/node_modules/chalk/index.d.ts +0 -415
  480. package/examples/starter/node_modules/chalk/license +0 -9
  481. package/examples/starter/node_modules/chalk/package.json +0 -68
  482. package/examples/starter/node_modules/chalk/readme.md +0 -341
  483. package/examples/starter/node_modules/chalk/source/index.js +0 -229
  484. package/examples/starter/node_modules/chalk/source/templates.js +0 -134
  485. package/examples/starter/node_modules/chalk/source/util.js +0 -39
  486. package/examples/starter/node_modules/color-convert/CHANGELOG.md +0 -54
  487. package/examples/starter/node_modules/color-convert/LICENSE +0 -21
  488. package/examples/starter/node_modules/color-convert/README.md +0 -68
  489. package/examples/starter/node_modules/color-convert/conversions.js +0 -839
  490. package/examples/starter/node_modules/color-convert/index.js +0 -81
  491. package/examples/starter/node_modules/color-convert/package.json +0 -48
  492. package/examples/starter/node_modules/color-convert/route.js +0 -97
  493. package/examples/starter/node_modules/color-name/LICENSE +0 -8
  494. package/examples/starter/node_modules/color-name/README.md +0 -11
  495. package/examples/starter/node_modules/color-name/index.js +0 -152
  496. package/examples/starter/node_modules/color-name/package.json +0 -28
  497. package/examples/starter/node_modules/concat-map/.travis.yml +0 -4
  498. package/examples/starter/node_modules/concat-map/LICENSE +0 -18
  499. package/examples/starter/node_modules/concat-map/README.markdown +0 -62
  500. package/examples/starter/node_modules/concat-map/example/map.js +0 -6
  501. package/examples/starter/node_modules/concat-map/index.js +0 -13
  502. package/examples/starter/node_modules/concat-map/package.json +0 -43
  503. package/examples/starter/node_modules/concat-map/test/map.js +0 -39
  504. package/examples/starter/node_modules/cosmiconfig/LICENSE +0 -22
  505. package/examples/starter/node_modules/cosmiconfig/README.md +0 -782
  506. package/examples/starter/node_modules/cosmiconfig/dist/Explorer.d.ts +0 -2
  507. package/examples/starter/node_modules/cosmiconfig/dist/Explorer.d.ts.map +0 -1
  508. package/examples/starter/node_modules/cosmiconfig/dist/Explorer.js +0 -170
  509. package/examples/starter/node_modules/cosmiconfig/dist/Explorer.js.map +0 -1
  510. package/examples/starter/node_modules/cosmiconfig/dist/ExplorerBase.d.ts +0 -2
  511. package/examples/starter/node_modules/cosmiconfig/dist/ExplorerBase.d.ts.map +0 -1
  512. package/examples/starter/node_modules/cosmiconfig/dist/ExplorerBase.js +0 -126
  513. package/examples/starter/node_modules/cosmiconfig/dist/ExplorerBase.js.map +0 -1
  514. package/examples/starter/node_modules/cosmiconfig/dist/ExplorerSync.d.ts +0 -2
  515. package/examples/starter/node_modules/cosmiconfig/dist/ExplorerSync.d.ts.map +0 -1
  516. package/examples/starter/node_modules/cosmiconfig/dist/ExplorerSync.js +0 -184
  517. package/examples/starter/node_modules/cosmiconfig/dist/ExplorerSync.js.map +0 -1
  518. package/examples/starter/node_modules/cosmiconfig/dist/cacheWrapper.d.ts +0 -5
  519. package/examples/starter/node_modules/cosmiconfig/dist/cacheWrapper.d.ts.map +0 -1
  520. package/examples/starter/node_modules/cosmiconfig/dist/cacheWrapper.js +0 -32
  521. package/examples/starter/node_modules/cosmiconfig/dist/cacheWrapper.js.map +0 -1
  522. package/examples/starter/node_modules/cosmiconfig/dist/canUseDynamicImport.d.ts +0 -3
  523. package/examples/starter/node_modules/cosmiconfig/dist/canUseDynamicImport.d.ts.map +0 -1
  524. package/examples/starter/node_modules/cosmiconfig/dist/canUseDynamicImport.js +0 -23
  525. package/examples/starter/node_modules/cosmiconfig/dist/canUseDynamicImport.js.map +0 -1
  526. package/examples/starter/node_modules/cosmiconfig/dist/defaults.d.ts +0 -25
  527. package/examples/starter/node_modules/cosmiconfig/dist/defaults.d.ts.map +0 -1
  528. package/examples/starter/node_modules/cosmiconfig/dist/defaults.js +0 -105
  529. package/examples/starter/node_modules/cosmiconfig/dist/defaults.js.map +0 -1
  530. package/examples/starter/node_modules/cosmiconfig/dist/getDirectory.d.ts +0 -4
  531. package/examples/starter/node_modules/cosmiconfig/dist/getDirectory.d.ts.map +0 -1
  532. package/examples/starter/node_modules/cosmiconfig/dist/getDirectory.js +0 -38
  533. package/examples/starter/node_modules/cosmiconfig/dist/getDirectory.js.map +0 -1
  534. package/examples/starter/node_modules/cosmiconfig/dist/getPropertyByPath.d.ts +0 -5
  535. package/examples/starter/node_modules/cosmiconfig/dist/getPropertyByPath.d.ts.map +0 -1
  536. package/examples/starter/node_modules/cosmiconfig/dist/getPropertyByPath.js +0 -28
  537. package/examples/starter/node_modules/cosmiconfig/dist/getPropertyByPath.js.map +0 -1
  538. package/examples/starter/node_modules/cosmiconfig/dist/index.d.ts +0 -6
  539. package/examples/starter/node_modules/cosmiconfig/dist/index.d.ts.map +0 -1
  540. package/examples/starter/node_modules/cosmiconfig/dist/index.js +0 -148
  541. package/examples/starter/node_modules/cosmiconfig/dist/index.js.map +0 -1
  542. package/examples/starter/node_modules/cosmiconfig/dist/loaders.d.ts +0 -8
  543. package/examples/starter/node_modules/cosmiconfig/dist/loaders.d.ts.map +0 -1
  544. package/examples/starter/node_modules/cosmiconfig/dist/loaders.js +0 -148
  545. package/examples/starter/node_modules/cosmiconfig/dist/loaders.js.map +0 -1
  546. package/examples/starter/node_modules/cosmiconfig/dist/merge.d.ts +0 -9
  547. package/examples/starter/node_modules/cosmiconfig/dist/merge.d.ts.map +0 -1
  548. package/examples/starter/node_modules/cosmiconfig/dist/merge.js +0 -40
  549. package/examples/starter/node_modules/cosmiconfig/dist/merge.js.map +0 -1
  550. package/examples/starter/node_modules/cosmiconfig/dist/readFile.d.ts +0 -7
  551. package/examples/starter/node_modules/cosmiconfig/dist/readFile.d.ts.map +0 -1
  552. package/examples/starter/node_modules/cosmiconfig/dist/readFile.js +0 -56
  553. package/examples/starter/node_modules/cosmiconfig/dist/readFile.js.map +0 -1
  554. package/examples/starter/node_modules/cosmiconfig/dist/types.d.ts +0 -98
  555. package/examples/starter/node_modules/cosmiconfig/dist/types.d.ts.map +0 -1
  556. package/examples/starter/node_modules/cosmiconfig/dist/types.js +0 -3
  557. package/examples/starter/node_modules/cosmiconfig/dist/types.js.map +0 -1
  558. package/examples/starter/node_modules/cosmiconfig/dist/util.d.ts +0 -2
  559. package/examples/starter/node_modules/cosmiconfig/dist/util.d.ts.map +0 -1
  560. package/examples/starter/node_modules/cosmiconfig/dist/util.js +0 -99
  561. package/examples/starter/node_modules/cosmiconfig/dist/util.js.map +0 -1
  562. package/examples/starter/node_modules/cosmiconfig/package.json +0 -102
  563. package/examples/starter/node_modules/diff/CONTRIBUTING.md +0 -39
  564. package/examples/starter/node_modules/diff/LICENSE +0 -31
  565. package/examples/starter/node_modules/diff/README.md +0 -211
  566. package/examples/starter/node_modules/diff/dist/diff.js +0 -1843
  567. package/examples/starter/node_modules/diff/dist/diff.min.js +0 -416
  568. package/examples/starter/node_modules/diff/lib/convert/dmp.js +0 -24
  569. package/examples/starter/node_modules/diff/lib/convert/xml.js +0 -35
  570. package/examples/starter/node_modules/diff/lib/diff/array.js +0 -24
  571. package/examples/starter/node_modules/diff/lib/diff/base.js +0 -235
  572. package/examples/starter/node_modules/diff/lib/diff/character.js +0 -17
  573. package/examples/starter/node_modules/diff/lib/diff/css.js +0 -21
  574. package/examples/starter/node_modules/diff/lib/diff/json.js +0 -108
  575. package/examples/starter/node_modules/diff/lib/diff/line.js +0 -50
  576. package/examples/starter/node_modules/diff/lib/diff/sentence.js +0 -21
  577. package/examples/starter/node_modules/diff/lib/diff/word.js +0 -70
  578. package/examples/starter/node_modules/diff/lib/index.js +0 -74
  579. package/examples/starter/node_modules/diff/lib/patch/apply.js +0 -180
  580. package/examples/starter/node_modules/diff/lib/patch/create.js +0 -148
  581. package/examples/starter/node_modules/diff/lib/patch/merge.js +0 -396
  582. package/examples/starter/node_modules/diff/lib/patch/parse.js +0 -147
  583. package/examples/starter/node_modules/diff/lib/util/array.js +0 -27
  584. package/examples/starter/node_modules/diff/lib/util/distance-iterator.js +0 -47
  585. package/examples/starter/node_modules/diff/lib/util/params.js +0 -18
  586. package/examples/starter/node_modules/diff/package.json +0 -67
  587. package/examples/starter/node_modules/diff/release-notes.md +0 -247
  588. package/examples/starter/node_modules/diff/runtime.js +0 -3
  589. package/examples/starter/node_modules/diff/yarn.lock +0 -5729
  590. package/examples/starter/node_modules/dotenv/CHANGELOG.md +0 -598
  591. package/examples/starter/node_modules/dotenv/LICENSE +0 -23
  592. package/examples/starter/node_modules/dotenv/README-es.md +0 -405
  593. package/examples/starter/node_modules/dotenv/README.md +0 -692
  594. package/examples/starter/node_modules/dotenv/SECURITY.md +0 -1
  595. package/examples/starter/node_modules/dotenv/config.d.ts +0 -1
  596. package/examples/starter/node_modules/dotenv/config.js +0 -9
  597. package/examples/starter/node_modules/dotenv/lib/cli-options.js +0 -17
  598. package/examples/starter/node_modules/dotenv/lib/env-options.js +0 -28
  599. package/examples/starter/node_modules/dotenv/lib/main.d.ts +0 -179
  600. package/examples/starter/node_modules/dotenv/lib/main.js +0 -434
  601. package/examples/starter/node_modules/dotenv/package.json +0 -62
  602. package/examples/starter/node_modules/dotenv-expand/CHANGELOG.md +0 -177
  603. package/examples/starter/node_modules/dotenv-expand/LICENSE +0 -24
  604. package/examples/starter/node_modules/dotenv-expand/README.md +0 -174
  605. package/examples/starter/node_modules/dotenv-expand/config.d.ts +0 -1
  606. package/examples/starter/node_modules/dotenv-expand/config.js +0 -13
  607. package/examples/starter/node_modules/dotenv-expand/lib/main.d.ts +0 -50
  608. package/examples/starter/node_modules/dotenv-expand/lib/main.js +0 -98
  609. package/examples/starter/node_modules/dotenv-expand/node_modules/dotenv/CHANGELOG.md +0 -520
  610. package/examples/starter/node_modules/dotenv-expand/node_modules/dotenv/LICENSE +0 -23
  611. package/examples/starter/node_modules/dotenv-expand/node_modules/dotenv/README-es.md +0 -411
  612. package/examples/starter/node_modules/dotenv-expand/node_modules/dotenv/README.md +0 -645
  613. package/examples/starter/node_modules/dotenv-expand/node_modules/dotenv/SECURITY.md +0 -1
  614. package/examples/starter/node_modules/dotenv-expand/node_modules/dotenv/config.d.ts +0 -1
  615. package/examples/starter/node_modules/dotenv-expand/node_modules/dotenv/config.js +0 -9
  616. package/examples/starter/node_modules/dotenv-expand/node_modules/dotenv/lib/cli-options.js +0 -17
  617. package/examples/starter/node_modules/dotenv-expand/node_modules/dotenv/lib/env-options.js +0 -28
  618. package/examples/starter/node_modules/dotenv-expand/node_modules/dotenv/lib/main.d.ts +0 -162
  619. package/examples/starter/node_modules/dotenv-expand/node_modules/dotenv/lib/main.js +0 -386
  620. package/examples/starter/node_modules/dotenv-expand/node_modules/dotenv/package.json +0 -62
  621. package/examples/starter/node_modules/dotenv-expand/package.json +0 -56
  622. package/examples/starter/node_modules/env-paths/index.d.ts +0 -101
  623. package/examples/starter/node_modules/env-paths/index.js +0 -74
  624. package/examples/starter/node_modules/env-paths/license +0 -9
  625. package/examples/starter/node_modules/env-paths/package.json +0 -45
  626. package/examples/starter/node_modules/env-paths/readme.md +0 -115
  627. package/examples/starter/node_modules/error-ex/LICENSE +0 -21
  628. package/examples/starter/node_modules/error-ex/README.md +0 -144
  629. package/examples/starter/node_modules/error-ex/index.js +0 -141
  630. package/examples/starter/node_modules/error-ex/package.json +0 -46
  631. package/examples/starter/node_modules/escape-string-regexp/index.js +0 -11
  632. package/examples/starter/node_modules/escape-string-regexp/license +0 -21
  633. package/examples/starter/node_modules/escape-string-regexp/package.json +0 -41
  634. package/examples/starter/node_modules/escape-string-regexp/readme.md +0 -27
  635. package/examples/starter/node_modules/fill-range/LICENSE +0 -21
  636. package/examples/starter/node_modules/fill-range/README.md +0 -237
  637. package/examples/starter/node_modules/fill-range/index.js +0 -248
  638. package/examples/starter/node_modules/fill-range/package.json +0 -74
  639. package/examples/starter/node_modules/fs.realpath/LICENSE +0 -43
  640. package/examples/starter/node_modules/fs.realpath/README.md +0 -33
  641. package/examples/starter/node_modules/fs.realpath/index.js +0 -66
  642. package/examples/starter/node_modules/fs.realpath/old.js +0 -303
  643. package/examples/starter/node_modules/fs.realpath/package.json +0 -26
  644. package/examples/starter/node_modules/git-diff/.editorconfig +0 -10
  645. package/examples/starter/node_modules/git-diff/.eslintrc.json +0 -42
  646. package/examples/starter/node_modules/git-diff/.travis.yml +0 -9
  647. package/examples/starter/node_modules/git-diff/LICENSE.md +0 -24
  648. package/examples/starter/node_modules/git-diff/README.md +0 -218
  649. package/examples/starter/node_modules/git-diff/appveyor.yml +0 -17
  650. package/examples/starter/node_modules/git-diff/async.js +0 -14
  651. package/examples/starter/node_modules/git-diff/config.js +0 -8
  652. package/examples/starter/node_modules/git-diff/diffs.png +0 -0
  653. package/examples/starter/node_modules/git-diff/js/_shared/defaultOptions.js +0 -10
  654. package/examples/starter/node_modules/git-diff/js/gitDiffFake/color.js +0 -14
  655. package/examples/starter/node_modules/git-diff/js/gitDiffFake/index.js +0 -10
  656. package/examples/starter/node_modules/git-diff/js/gitDiffFake/index.spec.js +0 -74
  657. package/examples/starter/node_modules/git-diff/js/gitDiffFake/lineDiffFake/index.js +0 -56
  658. package/examples/starter/node_modules/git-diff/js/gitDiffFake/mostCommonLineEnding.js +0 -21
  659. package/examples/starter/node_modules/git-diff/js/gitDiffFake/wordDiffFake/index.js +0 -44
  660. package/examples/starter/node_modules/git-diff/js/gitDiffReal/bugFixes.spec.js +0 -25
  661. package/examples/starter/node_modules/git-diff/js/gitDiffReal/generateDiff/index.js +0 -105
  662. package/examples/starter/node_modules/git-diff/js/gitDiffReal/generateDiffNoRepo/index.js +0 -27
  663. package/examples/starter/node_modules/git-diff/js/gitDiffReal/index.js +0 -16
  664. package/examples/starter/node_modules/git-diff/js/gitDiffReal/index.spec.js +0 -222
  665. package/examples/starter/node_modules/git-diff/js/gitDiffReal/keepIt.js +0 -40
  666. package/examples/starter/node_modules/git-diff/js/normaliseOptions/index.js +0 -63
  667. package/examples/starter/node_modules/git-diff/js/normaliseOptions/index.spec.js +0 -93
  668. package/examples/starter/node_modules/git-diff/js/validate/index.js +0 -11
  669. package/examples/starter/node_modules/git-diff/js/validate/index.spec.js +0 -30
  670. package/examples/starter/node_modules/git-diff/node_modules/chalk/index.js +0 -228
  671. package/examples/starter/node_modules/git-diff/node_modules/chalk/index.js.flow +0 -93
  672. package/examples/starter/node_modules/git-diff/node_modules/chalk/license +0 -9
  673. package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/index.js +0 -165
  674. package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/license +0 -9
  675. package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/CHANGELOG.md +0 -54
  676. package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/LICENSE +0 -21
  677. package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/README.md +0 -68
  678. package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/conversions.js +0 -868
  679. package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/index.js +0 -78
  680. package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/node_modules/color-name/.eslintrc.json +0 -43
  681. package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/node_modules/color-name/LICENSE +0 -8
  682. package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/node_modules/color-name/README.md +0 -11
  683. package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/node_modules/color-name/index.js +0 -152
  684. package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/node_modules/color-name/package.json +0 -25
  685. package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/node_modules/color-name/test.js +0 -7
  686. package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/package.json +0 -46
  687. package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/node_modules/color-convert/route.js +0 -97
  688. package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/package.json +0 -56
  689. package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/ansi-styles/readme.md +0 -147
  690. package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/supports-color/browser.js +0 -5
  691. package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/supports-color/index.js +0 -131
  692. package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/supports-color/license +0 -9
  693. package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/supports-color/node_modules/has-flag/index.js +0 -8
  694. package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/supports-color/node_modules/has-flag/license +0 -9
  695. package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/supports-color/node_modules/has-flag/package.json +0 -44
  696. package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/supports-color/node_modules/has-flag/readme.md +0 -70
  697. package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/supports-color/package.json +0 -53
  698. package/examples/starter/node_modules/git-diff/node_modules/chalk/node_modules/supports-color/readme.md +0 -66
  699. package/examples/starter/node_modules/git-diff/node_modules/chalk/package.json +0 -71
  700. package/examples/starter/node_modules/git-diff/node_modules/chalk/readme.md +0 -314
  701. package/examples/starter/node_modules/git-diff/node_modules/chalk/templates.js +0 -128
  702. package/examples/starter/node_modules/git-diff/node_modules/chalk/types/index.d.ts +0 -97
  703. package/examples/starter/node_modules/git-diff/package.json +0 -75
  704. package/examples/starter/node_modules/git-diff/server.bootstrap.js +0 -4
  705. package/examples/starter/node_modules/git-diff/sync.js +0 -24
  706. package/examples/starter/node_modules/git-diff/test/_js/testImports.js +0 -31
  707. package/examples/starter/node_modules/git-diff/test/data/index.js +0 -29
  708. package/examples/starter/node_modules/git-diff/test/data/lineDiffVim.txt +0 -13
  709. package/examples/starter/node_modules/git-diff/test/data/shortstatReal.txt +0 -1
  710. package/examples/starter/node_modules/git-diff/test/data/str1.txt +0 -9
  711. package/examples/starter/node_modules/git-diff/test/data/str2.txt +0 -9
  712. package/examples/starter/node_modules/git-diff/test/data/wordDiffFake.txt +0 -10
  713. package/examples/starter/node_modules/git-diff/test/data/wordDiffReal.txt +0 -10
  714. package/examples/starter/node_modules/git-diff/test/examples/examples.spec.js +0 -105
  715. package/examples/starter/node_modules/git-diff/test/examples/newStr.txt +0 -9
  716. package/examples/starter/node_modules/git-diff/test/examples/oldStr.txt +0 -9
  717. package/examples/starter/node_modules/git-diff/test/gitDiffAsync/gitDiffAsync.spec.js +0 -50
  718. package/examples/starter/node_modules/git-diff/test/gitDiffSync/fake.spec.js +0 -126
  719. package/examples/starter/node_modules/git-diff/test/gitDiffSync/misc.spec.js +0 -62
  720. package/examples/starter/node_modules/git-diff/test/gitDiffSync/real.spec.js +0 -206
  721. package/examples/starter/node_modules/git-diff/test/mocha.opts +0 -8
  722. package/examples/starter/node_modules/git-diff/test/test.bootstrap.js +0 -1
  723. package/examples/starter/node_modules/git-diff/top.png +0 -0
  724. package/examples/starter/node_modules/git-diff/yarn.lock +0 -1829
  725. package/examples/starter/node_modules/glob/LICENSE +0 -21
  726. package/examples/starter/node_modules/glob/README.md +0 -378
  727. package/examples/starter/node_modules/glob/common.js +0 -238
  728. package/examples/starter/node_modules/glob/glob.js +0 -790
  729. package/examples/starter/node_modules/glob/package.json +0 -55
  730. package/examples/starter/node_modules/glob/sync.js +0 -486
  731. package/examples/starter/node_modules/has-flag/index.d.ts +0 -39
  732. package/examples/starter/node_modules/has-flag/index.js +0 -8
  733. package/examples/starter/node_modules/has-flag/license +0 -9
  734. package/examples/starter/node_modules/has-flag/package.json +0 -46
  735. package/examples/starter/node_modules/has-flag/readme.md +0 -89
  736. package/examples/starter/node_modules/import-fresh/index.d.ts +0 -30
  737. package/examples/starter/node_modules/import-fresh/index.js +0 -34
  738. package/examples/starter/node_modules/import-fresh/license +0 -9
  739. package/examples/starter/node_modules/import-fresh/package.json +0 -48
  740. package/examples/starter/node_modules/import-fresh/readme.md +0 -54
  741. package/examples/starter/node_modules/inflight/LICENSE +0 -15
  742. package/examples/starter/node_modules/inflight/README.md +0 -37
  743. package/examples/starter/node_modules/inflight/inflight.js +0 -54
  744. package/examples/starter/node_modules/inflight/package.json +0 -29
  745. package/examples/starter/node_modules/interpret/CHANGELOG +0 -115
  746. package/examples/starter/node_modules/interpret/LICENSE +0 -22
  747. package/examples/starter/node_modules/interpret/README.md +0 -187
  748. package/examples/starter/node_modules/interpret/index.js +0 -168
  749. package/examples/starter/node_modules/interpret/mjs-stub.js +0 -1
  750. package/examples/starter/node_modules/interpret/package.json +0 -75
  751. package/examples/starter/node_modules/is-arrayish/.editorconfig +0 -18
  752. package/examples/starter/node_modules/is-arrayish/.istanbul.yml +0 -4
  753. package/examples/starter/node_modules/is-arrayish/.travis.yml +0 -17
  754. package/examples/starter/node_modules/is-arrayish/LICENSE +0 -21
  755. package/examples/starter/node_modules/is-arrayish/README.md +0 -16
  756. package/examples/starter/node_modules/is-arrayish/index.js +0 -10
  757. package/examples/starter/node_modules/is-arrayish/package.json +0 -34
  758. package/examples/starter/node_modules/is-core-module/.eslintrc +0 -18
  759. package/examples/starter/node_modules/is-core-module/.nycrc +0 -9
  760. package/examples/starter/node_modules/is-core-module/CHANGELOG.md +0 -218
  761. package/examples/starter/node_modules/is-core-module/LICENSE +0 -20
  762. package/examples/starter/node_modules/is-core-module/README.md +0 -40
  763. package/examples/starter/node_modules/is-core-module/core.json +0 -162
  764. package/examples/starter/node_modules/is-core-module/index.js +0 -69
  765. package/examples/starter/node_modules/is-core-module/package.json +0 -76
  766. package/examples/starter/node_modules/is-core-module/test/index.js +0 -157
  767. package/examples/starter/node_modules/is-number/LICENSE +0 -21
  768. package/examples/starter/node_modules/is-number/README.md +0 -187
  769. package/examples/starter/node_modules/is-number/index.js +0 -18
  770. package/examples/starter/node_modules/is-number/package.json +0 -82
  771. package/examples/starter/node_modules/js-tokens/CHANGELOG.md +0 -151
  772. package/examples/starter/node_modules/js-tokens/LICENSE +0 -21
  773. package/examples/starter/node_modules/js-tokens/README.md +0 -240
  774. package/examples/starter/node_modules/js-tokens/index.js +0 -23
  775. package/examples/starter/node_modules/js-tokens/package.json +0 -30
  776. package/examples/starter/node_modules/js-yaml/LICENSE +0 -21
  777. package/examples/starter/node_modules/js-yaml/README.md +0 -247
  778. package/examples/starter/node_modules/js-yaml/bin/js-yaml.js +0 -126
  779. package/examples/starter/node_modules/js-yaml/dist/js-yaml.js +0 -3880
  780. package/examples/starter/node_modules/js-yaml/dist/js-yaml.min.js +0 -2
  781. package/examples/starter/node_modules/js-yaml/dist/js-yaml.mjs +0 -3856
  782. package/examples/starter/node_modules/js-yaml/index.js +0 -47
  783. package/examples/starter/node_modules/js-yaml/lib/common.js +0 -59
  784. package/examples/starter/node_modules/js-yaml/lib/dumper.js +0 -965
  785. package/examples/starter/node_modules/js-yaml/lib/exception.js +0 -55
  786. package/examples/starter/node_modules/js-yaml/lib/loader.js +0 -1733
  787. package/examples/starter/node_modules/js-yaml/lib/schema/core.js +0 -11
  788. package/examples/starter/node_modules/js-yaml/lib/schema/default.js +0 -22
  789. package/examples/starter/node_modules/js-yaml/lib/schema/failsafe.js +0 -17
  790. package/examples/starter/node_modules/js-yaml/lib/schema/json.js +0 -19
  791. package/examples/starter/node_modules/js-yaml/lib/schema.js +0 -121
  792. package/examples/starter/node_modules/js-yaml/lib/snippet.js +0 -101
  793. package/examples/starter/node_modules/js-yaml/lib/type/binary.js +0 -125
  794. package/examples/starter/node_modules/js-yaml/lib/type/bool.js +0 -35
  795. package/examples/starter/node_modules/js-yaml/lib/type/float.js +0 -97
  796. package/examples/starter/node_modules/js-yaml/lib/type/int.js +0 -156
  797. package/examples/starter/node_modules/js-yaml/lib/type/map.js +0 -8
  798. package/examples/starter/node_modules/js-yaml/lib/type/merge.js +0 -12
  799. package/examples/starter/node_modules/js-yaml/lib/type/null.js +0 -35
  800. package/examples/starter/node_modules/js-yaml/lib/type/omap.js +0 -44
  801. package/examples/starter/node_modules/js-yaml/lib/type/pairs.js +0 -53
  802. package/examples/starter/node_modules/js-yaml/lib/type/seq.js +0 -8
  803. package/examples/starter/node_modules/js-yaml/lib/type/set.js +0 -29
  804. package/examples/starter/node_modules/js-yaml/lib/type/str.js +0 -8
  805. package/examples/starter/node_modules/js-yaml/lib/type/timestamp.js +0 -88
  806. package/examples/starter/node_modules/js-yaml/lib/type.js +0 -66
  807. package/examples/starter/node_modules/js-yaml/package.json +0 -66
  808. package/examples/starter/node_modules/json-parse-even-better-errors/CHANGELOG.md +0 -50
  809. package/examples/starter/node_modules/json-parse-even-better-errors/LICENSE.md +0 -25
  810. package/examples/starter/node_modules/json-parse-even-better-errors/README.md +0 -96
  811. package/examples/starter/node_modules/json-parse-even-better-errors/index.js +0 -121
  812. package/examples/starter/node_modules/json-parse-even-better-errors/package.json +0 -33
  813. package/examples/starter/node_modules/kysely-codegen/.cspell.json +0 -97
  814. package/examples/starter/node_modules/kysely-codegen/.github/FUNDING.yml +0 -1
  815. package/examples/starter/node_modules/kysely-codegen/.kysely-codegenrc.json +0 -3
  816. package/examples/starter/node_modules/kysely-codegen/.ncurc.json +0 -3
  817. package/examples/starter/node_modules/kysely-codegen/.prettierignore +0 -1
  818. package/examples/starter/node_modules/kysely-codegen/LICENSE +0 -18
  819. package/examples/starter/node_modules/kysely-codegen/README.md +0 -456
  820. package/examples/starter/node_modules/kysely-codegen/assets/kysely-codegen-logo.svg +0 -28
  821. package/examples/starter/node_modules/kysely-codegen/dist/cli/bin.d.ts +0 -2
  822. package/examples/starter/node_modules/kysely-codegen/dist/cli/bin.js +0 -6
  823. package/examples/starter/node_modules/kysely-codegen/dist/cli/bin.js.map +0 -1
  824. package/examples/starter/node_modules/kysely-codegen/dist/cli/cli.d.ts +0 -17
  825. package/examples/starter/node_modules/kysely-codegen/dist/cli/cli.js +0 -246
  826. package/examples/starter/node_modules/kysely-codegen/dist/cli/cli.js.map +0 -1
  827. package/examples/starter/node_modules/kysely-codegen/dist/cli/config-error.d.ts +0 -6
  828. package/examples/starter/node_modules/kysely-codegen/dist/cli/config-error.js +0 -11
  829. package/examples/starter/node_modules/kysely-codegen/dist/cli/config-error.js.map +0 -1
  830. package/examples/starter/node_modules/kysely-codegen/dist/cli/config.d.ts +0 -106
  831. package/examples/starter/node_modules/kysely-codegen/dist/cli/config.js +0 -87
  832. package/examples/starter/node_modules/kysely-codegen/dist/cli/config.js.map +0 -1
  833. package/examples/starter/node_modules/kysely-codegen/dist/cli/constants.d.ts +0 -5
  834. package/examples/starter/node_modules/kysely-codegen/dist/cli/constants.js +0 -23
  835. package/examples/starter/node_modules/kysely-codegen/dist/cli/constants.js.map +0 -1
  836. package/examples/starter/node_modules/kysely-codegen/dist/cli/flags.d.ts +0 -76
  837. package/examples/starter/node_modules/kysely-codegen/dist/cli/flags.js +0 -152
  838. package/examples/starter/node_modules/kysely-codegen/dist/cli/flags.js.map +0 -1
  839. package/examples/starter/node_modules/kysely-codegen/dist/cli/index.d.ts +0 -4
  840. package/examples/starter/node_modules/kysely-codegen/dist/cli/index.js +0 -21
  841. package/examples/starter/node_modules/kysely-codegen/dist/cli/index.js.map +0 -1
  842. package/examples/starter/node_modules/kysely-codegen/dist/db.d.ts +0 -1
  843. package/examples/starter/node_modules/kysely-codegen/dist/db.js +0 -3
  844. package/examples/starter/node_modules/kysely-codegen/dist/db.js.map +0 -1
  845. package/examples/starter/node_modules/kysely-codegen/dist/generator/adapter.d.ts +0 -16
  846. package/examples/starter/node_modules/kysely-codegen/dist/generator/adapter.js +0 -18
  847. package/examples/starter/node_modules/kysely-codegen/dist/generator/adapter.js.map +0 -1
  848. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/alias-declaration-node.d.ts +0 -9
  849. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/alias-declaration-node.js +0 -13
  850. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/alias-declaration-node.js.map +0 -1
  851. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/array-expression-node.d.ts +0 -6
  852. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/array-expression-node.js +0 -11
  853. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/array-expression-node.js.map +0 -1
  854. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/column-type-node.d.ts +0 -5
  855. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/column-type-node.js +0 -11
  856. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/column-type-node.js.map +0 -1
  857. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/definition-node.d.ts +0 -3
  858. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/definition-node.js +0 -3
  859. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/definition-node.js.map +0 -1
  860. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/export-statement-node.d.ts +0 -10
  861. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/export-statement-node.js +0 -11
  862. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/export-statement-node.js.map +0 -1
  863. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/expression-node.d.ts +0 -11
  864. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/expression-node.js +0 -3
  865. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/expression-node.js.map +0 -1
  866. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/extends-clause-node.d.ts +0 -9
  867. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/extends-clause-node.js +0 -14
  868. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/extends-clause-node.js.map +0 -1
  869. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/generic-expression-node.d.ts +0 -7
  870. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/generic-expression-node.js +0 -12
  871. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/generic-expression-node.js.map +0 -1
  872. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/identifier-node.d.ts +0 -11
  873. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/identifier-node.js +0 -18
  874. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/identifier-node.js.map +0 -1
  875. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/import-clause-node.d.ts +0 -6
  876. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/import-clause-node.js +0 -12
  877. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/import-clause-node.js.map +0 -1
  878. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/import-statement-node.d.ts +0 -7
  879. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/import-statement-node.js +0 -12
  880. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/import-statement-node.js.map +0 -1
  881. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/infer-clause-node.d.ts +0 -5
  882. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/infer-clause-node.js +0 -11
  883. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/infer-clause-node.js.map +0 -1
  884. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/interface-declaration-node.d.ts +0 -8
  885. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/interface-declaration-node.js +0 -12
  886. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/interface-declaration-node.js.map +0 -1
  887. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/json-column-type-node.d.ts +0 -5
  888. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/json-column-type-node.js +0 -11
  889. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/json-column-type-node.js.map +0 -1
  890. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/literal-node.d.ts +0 -7
  891. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/literal-node.js +0 -11
  892. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/literal-node.js.map +0 -1
  893. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/mapped-type-node.d.ts +0 -6
  894. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/mapped-type-node.js +0 -11
  895. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/mapped-type-node.js.map +0 -1
  896. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/module-reference-node.d.ts +0 -15
  897. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/module-reference-node.js +0 -12
  898. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/module-reference-node.js.map +0 -1
  899. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/object-expression-node.d.ts +0 -6
  900. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/object-expression-node.js +0 -11
  901. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/object-expression-node.js.map +0 -1
  902. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/property-node.d.ts +0 -8
  903. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/property-node.js +0 -13
  904. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/property-node.js.map +0 -1
  905. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/raw-expression-node.d.ts +0 -5
  906. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/raw-expression-node.js +0 -11
  907. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/raw-expression-node.js.map +0 -1
  908. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/runtime-enum-declaration-node.d.ts +0 -13
  909. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/runtime-enum-declaration-node.js +0 -28
  910. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/runtime-enum-declaration-node.js.map +0 -1
  911. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/statement-node.d.ts +0 -3
  912. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/statement-node.js +0 -3
  913. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/statement-node.js.map +0 -1
  914. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/template-node.d.ts +0 -7
  915. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/template-node.js +0 -12
  916. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/template-node.js.map +0 -1
  917. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/union-expression-node.d.ts +0 -6
  918. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/union-expression-node.js +0 -11
  919. package/examples/starter/node_modules/kysely-codegen/dist/generator/ast/union-expression-node.js.map +0 -1
  920. package/examples/starter/node_modules/kysely-codegen/dist/generator/connection-string-parser.d.ts +0 -24
  921. package/examples/starter/node_modules/kysely-codegen/dist/generator/connection-string-parser.js +0 -94
  922. package/examples/starter/node_modules/kysely-codegen/dist/generator/connection-string-parser.js.map +0 -1
  923. package/examples/starter/node_modules/kysely-codegen/dist/generator/constants.d.ts +0 -1
  924. package/examples/starter/node_modules/kysely-codegen/dist/generator/constants.js +0 -6
  925. package/examples/starter/node_modules/kysely-codegen/dist/generator/constants.js.map +0 -1
  926. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialect.d.ts +0 -11
  927. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialect.js +0 -38
  928. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialect.js.map +0 -1
  929. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/kysely-bun-sqlite/kysely-bun-sqlite-adapter.d.ts +0 -3
  930. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/kysely-bun-sqlite/kysely-bun-sqlite-adapter.js +0 -8
  931. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/kysely-bun-sqlite/kysely-bun-sqlite-adapter.js.map +0 -1
  932. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/kysely-bun-sqlite/kysely-bun-sqlite-dialect.d.ts +0 -6
  933. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/kysely-bun-sqlite/kysely-bun-sqlite-dialect.js +0 -13
  934. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/kysely-bun-sqlite/kysely-bun-sqlite-dialect.js.map +0 -1
  935. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/libsql/libsql-adapter.d.ts +0 -3
  936. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/libsql/libsql-adapter.js +0 -8
  937. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/libsql/libsql-adapter.js.map +0 -1
  938. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/libsql/libsql-dialect.d.ts +0 -6
  939. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/libsql/libsql-dialect.js +0 -13
  940. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/libsql/libsql-dialect.js.map +0 -1
  941. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/mssql/mssql-adapter.d.ts +0 -36
  942. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/mssql/mssql-adapter.js +0 -45
  943. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/mssql/mssql-adapter.js.map +0 -1
  944. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/mssql/mssql-dialect.d.ts +0 -6
  945. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/mssql/mssql-dialect.js +0 -13
  946. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/mssql/mssql-dialect.js.map +0 -1
  947. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/mysql/mysql-adapter.d.ts +0 -58
  948. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/mysql/mysql-adapter.js +0 -80
  949. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/mysql/mysql-adapter.js.map +0 -1
  950. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/mysql/mysql-dialect.d.ts +0 -6
  951. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/mysql/mysql-dialect.js +0 -13
  952. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/mysql/mysql-dialect.js.map +0 -1
  953. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/postgres/postgres-adapter.d.ts +0 -72
  954. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/postgres/postgres-adapter.js +0 -137
  955. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/postgres/postgres-adapter.js.map +0 -1
  956. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/postgres/postgres-dialect.d.ts +0 -16
  957. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/postgres/postgres-dialect.js +0 -22
  958. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/postgres/postgres-dialect.js.map +0 -1
  959. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/sqlite/sqlite-adapter.d.ts +0 -14
  960. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/sqlite/sqlite-adapter.js +0 -22
  961. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/sqlite/sqlite-adapter.js.map +0 -1
  962. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/sqlite/sqlite-dialect.d.ts +0 -6
  963. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/sqlite/sqlite-dialect.js +0 -13
  964. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/sqlite/sqlite-dialect.js.map +0 -1
  965. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/worker-bun-sqlite/worker-bun-sqlite-dialect.d.ts +0 -6
  966. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/worker-bun-sqlite/worker-bun-sqlite-dialect.js +0 -13
  967. package/examples/starter/node_modules/kysely-codegen/dist/generator/dialects/worker-bun-sqlite/worker-bun-sqlite-dialect.js.map +0 -1
  968. package/examples/starter/node_modules/kysely-codegen/dist/generator/generator/diff-checker.d.ts +0 -4
  969. package/examples/starter/node_modules/kysely-codegen/dist/generator/generator/diff-checker.js +0 -27
  970. package/examples/starter/node_modules/kysely-codegen/dist/generator/generator/diff-checker.js.map +0 -1
  971. package/examples/starter/node_modules/kysely-codegen/dist/generator/generator/generate.d.ts +0 -34
  972. package/examples/starter/node_modules/kysely-codegen/dist/generator/generator/generate.js +0 -84
  973. package/examples/starter/node_modules/kysely-codegen/dist/generator/generator/generate.js.map +0 -1
  974. package/examples/starter/node_modules/kysely-codegen/dist/generator/generator/runtime-enums-style.d.ts +0 -1
  975. package/examples/starter/node_modules/kysely-codegen/dist/generator/generator/runtime-enums-style.js +0 -3
  976. package/examples/starter/node_modules/kysely-codegen/dist/generator/generator/runtime-enums-style.js.map +0 -1
  977. package/examples/starter/node_modules/kysely-codegen/dist/generator/generator/serializer.d.ts +0 -68
  978. package/examples/starter/node_modules/kysely-codegen/dist/generator/generator/serializer.js +0 -311
  979. package/examples/starter/node_modules/kysely-codegen/dist/generator/generator/serializer.js.map +0 -1
  980. package/examples/starter/node_modules/kysely-codegen/dist/generator/generator/singularizer.d.ts +0 -1
  981. package/examples/starter/node_modules/kysely-codegen/dist/generator/generator/singularizer.js +0 -32
  982. package/examples/starter/node_modules/kysely-codegen/dist/generator/generator/singularizer.js.map +0 -1
  983. package/examples/starter/node_modules/kysely-codegen/dist/generator/index.d.ts +0 -50
  984. package/examples/starter/node_modules/kysely-codegen/dist/generator/index.js +0 -67
  985. package/examples/starter/node_modules/kysely-codegen/dist/generator/index.js.map +0 -1
  986. package/examples/starter/node_modules/kysely-codegen/dist/generator/logger/log-level.d.ts +0 -8
  987. package/examples/starter/node_modules/kysely-codegen/dist/generator/logger/log-level.js +0 -14
  988. package/examples/starter/node_modules/kysely-codegen/dist/generator/logger/log-level.js.map +0 -1
  989. package/examples/starter/node_modules/kysely-codegen/dist/generator/logger/logger.d.ts +0 -12
  990. package/examples/starter/node_modules/kysely-codegen/dist/generator/logger/logger.js +0 -62
  991. package/examples/starter/node_modules/kysely-codegen/dist/generator/logger/logger.js.map +0 -1
  992. package/examples/starter/node_modules/kysely-codegen/dist/generator/transformer/definitions.d.ts +0 -18
  993. package/examples/starter/node_modules/kysely-codegen/dist/generator/transformer/definitions.js +0 -44
  994. package/examples/starter/node_modules/kysely-codegen/dist/generator/transformer/definitions.js.map +0 -1
  995. package/examples/starter/node_modules/kysely-codegen/dist/generator/transformer/identifier-style.d.ts +0 -1
  996. package/examples/starter/node_modules/kysely-codegen/dist/generator/transformer/identifier-style.js +0 -3
  997. package/examples/starter/node_modules/kysely-codegen/dist/generator/transformer/identifier-style.js.map +0 -1
  998. package/examples/starter/node_modules/kysely-codegen/dist/generator/transformer/imports.d.ts +0 -5
  999. package/examples/starter/node_modules/kysely-codegen/dist/generator/transformer/imports.js +0 -9
  1000. package/examples/starter/node_modules/kysely-codegen/dist/generator/transformer/imports.js.map +0 -1
  1001. package/examples/starter/node_modules/kysely-codegen/dist/generator/transformer/symbol-collection.d.ts +0 -44
  1002. package/examples/starter/node_modules/kysely-codegen/dist/generator/transformer/symbol-collection.js +0 -59
  1003. package/examples/starter/node_modules/kysely-codegen/dist/generator/transformer/symbol-collection.js.map +0 -1
  1004. package/examples/starter/node_modules/kysely-codegen/dist/generator/transformer/transformer.d.ts +0 -38
  1005. package/examples/starter/node_modules/kysely-codegen/dist/generator/transformer/transformer.js +0 -380
  1006. package/examples/starter/node_modules/kysely-codegen/dist/generator/transformer/transformer.js.map +0 -1
  1007. package/examples/starter/node_modules/kysely-codegen/dist/generator/utils/case-converter.d.ts +0 -30
  1008. package/examples/starter/node_modules/kysely-codegen/dist/generator/utils/case-converter.js +0 -67
  1009. package/examples/starter/node_modules/kysely-codegen/dist/generator/utils/case-converter.js.map +0 -1
  1010. package/examples/starter/node_modules/kysely-codegen/dist/index.d.ts +0 -4
  1011. package/examples/starter/node_modules/kysely-codegen/dist/index.js +0 -21
  1012. package/examples/starter/node_modules/kysely-codegen/dist/index.js.map +0 -1
  1013. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialect.d.ts +0 -19
  1014. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialect.js +0 -10
  1015. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialect.js.map +0 -1
  1016. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/kysely-bun-sqlite/kysely-bun-sqlite-dialect.d.ts +0 -7
  1017. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/kysely-bun-sqlite/kysely-bun-sqlite-dialect.js +0 -56
  1018. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/kysely-bun-sqlite/kysely-bun-sqlite-dialect.js.map +0 -1
  1019. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/kysely-bun-sqlite/kysely-bun-sqlite-introspector.d.ts +0 -6
  1020. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/kysely-bun-sqlite/kysely-bun-sqlite-introspector.js +0 -15
  1021. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/kysely-bun-sqlite/kysely-bun-sqlite-introspector.js.map +0 -1
  1022. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/libsql/libsql-dialect.d.ts +0 -7
  1023. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/libsql/libsql-dialect.js +0 -59
  1024. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/libsql/libsql-dialect.js.map +0 -1
  1025. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/libsql/libsql-introspector.d.ts +0 -6
  1026. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/libsql/libsql-introspector.js +0 -15
  1027. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/libsql/libsql-introspector.js.map +0 -1
  1028. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mssql/mssql-dialect.d.ts +0 -9
  1029. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mssql/mssql-dialect.js +0 -112
  1030. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mssql/mssql-dialect.js.map +0 -1
  1031. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mssql/mssql-introspector.d.ts +0 -6
  1032. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mssql/mssql-introspector.js +0 -15
  1033. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mssql/mssql-introspector.js.map +0 -1
  1034. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mysql/mysql-db.d.ts +0 -8
  1035. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mysql/mysql-db.js +0 -3
  1036. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mysql/mysql-db.js.map +0 -1
  1037. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mysql/mysql-dialect.d.ts +0 -8
  1038. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mysql/mysql-dialect.js +0 -55
  1039. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mysql/mysql-dialect.js.map +0 -1
  1040. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mysql/mysql-introspector.d.ts +0 -14
  1041. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mysql/mysql-introspector.js +0 -46
  1042. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mysql/mysql-introspector.js.map +0 -1
  1043. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mysql/mysql-parser.d.ts +0 -7
  1044. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mysql/mysql-parser.js +0 -66
  1045. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/mysql/mysql-parser.js.map +0 -1
  1046. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/postgres/date-parser.d.ts +0 -2
  1047. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/postgres/date-parser.js +0 -5
  1048. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/postgres/date-parser.js.map +0 -1
  1049. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/postgres/numeric-parser.d.ts +0 -2
  1050. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/postgres/numeric-parser.js +0 -5
  1051. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/postgres/numeric-parser.js.map +0 -1
  1052. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/postgres/postgres-db.d.ts +0 -15
  1053. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/postgres/postgres-db.js +0 -3
  1054. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/postgres/postgres-db.js.map +0 -1
  1055. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/postgres/postgres-dialect.d.ts +0 -20
  1056. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/postgres/postgres-dialect.js +0 -83
  1057. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/postgres/postgres-dialect.js.map +0 -1
  1058. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/postgres/postgres-introspector.d.ts +0 -35
  1059. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/postgres/postgres-introspector.js +0 -128
  1060. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/postgres/postgres-introspector.js.map +0 -1
  1061. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/sqlite/sqlite-dialect.d.ts +0 -8
  1062. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/sqlite/sqlite-dialect.js +0 -53
  1063. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/sqlite/sqlite-dialect.js.map +0 -1
  1064. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/sqlite/sqlite-introspector.d.ts +0 -6
  1065. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/sqlite/sqlite-introspector.js +0 -15
  1066. package/examples/starter/node_modules/kysely-codegen/dist/introspector/dialects/sqlite/sqlite-introspector.js.map +0 -1
  1067. package/examples/starter/node_modules/kysely-codegen/dist/introspector/enum-collection.d.ts +0 -10
  1068. package/examples/starter/node_modules/kysely-codegen/dist/introspector/enum-collection.js +0 -26
  1069. package/examples/starter/node_modules/kysely-codegen/dist/introspector/enum-collection.js.map +0 -1
  1070. package/examples/starter/node_modules/kysely-codegen/dist/introspector/index.d.ts +0 -24
  1071. package/examples/starter/node_modules/kysely-codegen/dist/introspector/index.js +0 -41
  1072. package/examples/starter/node_modules/kysely-codegen/dist/introspector/index.js.map +0 -1
  1073. package/examples/starter/node_modules/kysely-codegen/dist/introspector/introspector.d.ts +0 -23
  1074. package/examples/starter/node_modules/kysely-codegen/dist/introspector/introspector.fixtures.d.ts +0 -4
  1075. package/examples/starter/node_modules/kysely-codegen/dist/introspector/introspector.fixtures.js +0 -128
  1076. package/examples/starter/node_modules/kysely-codegen/dist/introspector/introspector.fixtures.js.map +0 -1
  1077. package/examples/starter/node_modules/kysely-codegen/dist/introspector/introspector.js +0 -50
  1078. package/examples/starter/node_modules/kysely-codegen/dist/introspector/introspector.js.map +0 -1
  1079. package/examples/starter/node_modules/kysely-codegen/dist/introspector/metadata/column-metadata.d.ts +0 -23
  1080. package/examples/starter/node_modules/kysely-codegen/dist/introspector/metadata/column-metadata.js +0 -18
  1081. package/examples/starter/node_modules/kysely-codegen/dist/introspector/metadata/column-metadata.js.map +0 -1
  1082. package/examples/starter/node_modules/kysely-codegen/dist/introspector/metadata/database-metadata.d.ts +0 -12
  1083. package/examples/starter/node_modules/kysely-codegen/dist/introspector/metadata/database-metadata.js +0 -13
  1084. package/examples/starter/node_modules/kysely-codegen/dist/introspector/metadata/database-metadata.js.map +0 -1
  1085. package/examples/starter/node_modules/kysely-codegen/dist/introspector/metadata/table-metadata.d.ts +0 -17
  1086. package/examples/starter/node_modules/kysely-codegen/dist/introspector/metadata/table-metadata.js +0 -15
  1087. package/examples/starter/node_modules/kysely-codegen/dist/introspector/metadata/table-metadata.js.map +0 -1
  1088. package/examples/starter/node_modules/kysely-codegen/dist/introspector/table-matcher.d.ts +0 -6
  1089. package/examples/starter/node_modules/kysely-codegen/dist/introspector/table-matcher.js +0 -16
  1090. package/examples/starter/node_modules/kysely-codegen/dist/introspector/table-matcher.js.map +0 -1
  1091. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/LICENSE +0 -21
  1092. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/README.md +0 -208
  1093. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/index.cjs +0 -33
  1094. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/index.d.cts +0 -4
  1095. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/index.d.ts +0 -4
  1096. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/index.js +0 -4
  1097. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/locales/index.cjs +0 -17
  1098. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/locales/index.d.cts +0 -1
  1099. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/locales/index.d.ts +0 -1
  1100. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/locales/index.js +0 -1
  1101. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/locales/package.json +0 -6
  1102. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/mini/index.cjs +0 -17
  1103. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/mini/index.d.cts +0 -1
  1104. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/mini/index.d.ts +0 -1
  1105. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/mini/index.js +0 -1
  1106. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/mini/package.json +0 -6
  1107. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/package.json +0 -135
  1108. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/index.ts +0 -4
  1109. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/locales/index.ts +0 -1
  1110. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/mini/index.ts +0 -1
  1111. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/ZodError.ts +0 -330
  1112. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/benchmarks/datetime.ts +0 -58
  1113. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/benchmarks/discriminatedUnion.ts +0 -80
  1114. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/benchmarks/index.ts +0 -59
  1115. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/benchmarks/ipv4.ts +0 -57
  1116. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/benchmarks/object.ts +0 -69
  1117. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/benchmarks/primitives.ts +0 -162
  1118. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/benchmarks/realworld.ts +0 -63
  1119. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/benchmarks/string.ts +0 -55
  1120. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/benchmarks/union.ts +0 -80
  1121. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/errors.ts +0 -13
  1122. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/external.ts +0 -6
  1123. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/helpers/enumUtil.ts +0 -17
  1124. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/helpers/errorUtil.ts +0 -8
  1125. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/helpers/parseUtil.ts +0 -176
  1126. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/helpers/partialUtil.ts +0 -34
  1127. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/helpers/typeAliases.ts +0 -2
  1128. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/helpers/util.ts +0 -224
  1129. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/index.ts +0 -4
  1130. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/locales/en.ts +0 -124
  1131. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/standard-schema.ts +0 -113
  1132. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/Mocker.ts +0 -54
  1133. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/all-errors.test.ts +0 -157
  1134. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/anyunknown.test.ts +0 -28
  1135. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/array.test.ts +0 -71
  1136. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/async-parsing.test.ts +0 -388
  1137. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/async-refinements.test.ts +0 -46
  1138. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/base.test.ts +0 -29
  1139. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/bigint.test.ts +0 -55
  1140. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/branded.test.ts +0 -53
  1141. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/catch.test.ts +0 -220
  1142. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/coerce.test.ts +0 -133
  1143. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/complex.test.ts +0 -70
  1144. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/custom.test.ts +0 -31
  1145. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/date.test.ts +0 -32
  1146. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/deepmasking.test.ts +0 -186
  1147. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/default.test.ts +0 -112
  1148. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/description.test.ts +0 -33
  1149. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/discriminated-unions.test.ts +0 -315
  1150. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/enum.test.ts +0 -80
  1151. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/error.test.ts +0 -551
  1152. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/firstparty.test.ts +0 -87
  1153. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/firstpartyschematypes.test.ts +0 -21
  1154. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/function.test.ts +0 -261
  1155. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/generics.test.ts +0 -48
  1156. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/instanceof.test.ts +0 -37
  1157. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/intersection.test.ts +0 -110
  1158. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/language-server.source.ts +0 -76
  1159. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/language-server.test.ts +0 -207
  1160. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/literal.test.ts +0 -36
  1161. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/map.test.ts +0 -110
  1162. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/masking.test.ts +0 -4
  1163. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/mocker.test.ts +0 -19
  1164. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/nan.test.ts +0 -24
  1165. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/nativeEnum.test.ts +0 -87
  1166. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/nullable.test.ts +0 -42
  1167. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/number.test.ts +0 -176
  1168. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/object-augmentation.test.ts +0 -29
  1169. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/object-in-es5-env.test.ts +0 -29
  1170. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/object.test.ts +0 -434
  1171. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/optional.test.ts +0 -42
  1172. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/parseUtil.test.ts +0 -23
  1173. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/parser.test.ts +0 -41
  1174. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/partials.test.ts +0 -243
  1175. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/pickomit.test.ts +0 -111
  1176. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/pipeline.test.ts +0 -29
  1177. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/preprocess.test.ts +0 -186
  1178. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/primitive.test.ts +0 -440
  1179. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/promise.test.ts +0 -90
  1180. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/readonly.test.ts +0 -194
  1181. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/record.test.ts +0 -171
  1182. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/recursive.test.ts +0 -197
  1183. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/refine.test.ts +0 -313
  1184. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/safeparse.test.ts +0 -27
  1185. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/set.test.ts +0 -142
  1186. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/standard-schema.test.ts +0 -83
  1187. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/string.test.ts +0 -916
  1188. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/transformer.test.ts +0 -233
  1189. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/tuple.test.ts +0 -90
  1190. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/unions.test.ts +0 -57
  1191. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/validations.test.ts +0 -133
  1192. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/tests/void.test.ts +0 -15
  1193. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v3/types.ts +0 -5138
  1194. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/checks.ts +0 -32
  1195. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/coerce.ts +0 -27
  1196. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/compat.ts +0 -70
  1197. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/errors.ts +0 -82
  1198. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/external.ts +0 -51
  1199. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/from-json-schema.ts +0 -643
  1200. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/index.ts +0 -5
  1201. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/iso.ts +0 -90
  1202. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/parse.ts +0 -82
  1203. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/schemas.ts +0 -2409
  1204. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/anyunknown.test.ts +0 -26
  1205. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/apply.test.ts +0 -59
  1206. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/array.test.ts +0 -264
  1207. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/assignability.test.ts +0 -210
  1208. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/async-parsing.test.ts +0 -381
  1209. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/async-refinements.test.ts +0 -68
  1210. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/base.test.ts +0 -7
  1211. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/bigint.test.ts +0 -54
  1212. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/brand.test.ts +0 -106
  1213. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/catch.test.ts +0 -276
  1214. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/coalesce.test.ts +0 -20
  1215. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/codec-examples.test.ts +0 -573
  1216. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/codec.test.ts +0 -562
  1217. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/coerce.test.ts +0 -160
  1218. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/continuability.test.ts +0 -374
  1219. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/custom.test.ts +0 -40
  1220. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/date.test.ts +0 -62
  1221. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/datetime.test.ts +0 -302
  1222. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/default.test.ts +0 -365
  1223. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/describe-meta-checks.test.ts +0 -27
  1224. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/description.test.ts +0 -32
  1225. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +0 -661
  1226. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/enum.test.ts +0 -285
  1227. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/error-utils.test.ts +0 -595
  1228. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/error.test.ts +0 -711
  1229. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/file.test.ts +0 -96
  1230. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/firstparty.test.ts +0 -179
  1231. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/fix-json-issue.test.ts +0 -26
  1232. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/from-json-schema.test.ts +0 -734
  1233. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/function.test.ts +0 -360
  1234. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/generics.test.ts +0 -72
  1235. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/hash.test.ts +0 -68
  1236. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/index.test.ts +0 -939
  1237. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +0 -60
  1238. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/intersection.test.ts +0 -198
  1239. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/json.test.ts +0 -109
  1240. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/lazy.test.ts +0 -227
  1241. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/literal.test.ts +0 -117
  1242. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/map.test.ts +0 -330
  1243. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/nan.test.ts +0 -21
  1244. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/nested-refine.test.ts +0 -168
  1245. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/nonoptional.test.ts +0 -101
  1246. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/nullable.test.ts +0 -22
  1247. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/number.test.ts +0 -270
  1248. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/object.test.ts +0 -640
  1249. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/optional.test.ts +0 -223
  1250. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/partial.test.ts +0 -427
  1251. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +0 -211
  1252. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/pipe.test.ts +0 -101
  1253. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/prefault.test.ts +0 -74
  1254. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/preprocess.test.ts +0 -282
  1255. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/primitive.test.ts +0 -175
  1256. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/promise.test.ts +0 -81
  1257. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/prototypes.test.ts +0 -23
  1258. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/readonly.test.ts +0 -252
  1259. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/record.test.ts +0 -600
  1260. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +0 -582
  1261. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/refine.test.ts +0 -570
  1262. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/registries.test.ts +0 -243
  1263. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/set.test.ts +0 -181
  1264. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +0 -134
  1265. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/string-formats.test.ts +0 -125
  1266. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/string.test.ts +0 -1175
  1267. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/stringbool.test.ts +0 -106
  1268. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +0 -771
  1269. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/to-json-schema-methods.test.ts +0 -438
  1270. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +0 -2975
  1271. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/transform.test.ts +0 -361
  1272. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/tuple.test.ts +0 -183
  1273. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/union.test.ts +0 -219
  1274. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/url.test.ts +0 -13
  1275. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/validations.test.ts +0 -283
  1276. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/classic/tests/void.test.ts +0 -12
  1277. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/api.ts +0 -1798
  1278. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/checks.ts +0 -1293
  1279. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/config.ts +0 -15
  1280. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/core.ts +0 -138
  1281. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/doc.ts +0 -44
  1282. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/errors.ts +0 -448
  1283. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/index.ts +0 -16
  1284. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/json-schema-generator.ts +0 -126
  1285. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/json-schema-processors.ts +0 -667
  1286. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/json-schema.ts +0 -147
  1287. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/parse.ts +0 -195
  1288. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/regexes.ts +0 -183
  1289. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/registries.ts +0 -105
  1290. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/schemas.ts +0 -4543
  1291. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/standard-schema.ts +0 -159
  1292. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/tests/extend.test.ts +0 -59
  1293. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/tests/index.test.ts +0 -46
  1294. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/tests/locales/be.test.ts +0 -124
  1295. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/tests/locales/en.test.ts +0 -22
  1296. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/tests/locales/es.test.ts +0 -181
  1297. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/tests/locales/he.test.ts +0 -379
  1298. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/tests/locales/nl.test.ts +0 -46
  1299. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/tests/locales/ru.test.ts +0 -128
  1300. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +0 -69
  1301. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/tests/locales/uz.test.ts +0 -83
  1302. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/tests/record-constructor.test.ts +0 -67
  1303. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/tests/recursive-tuples.test.ts +0 -45
  1304. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/to-json-schema.ts +0 -613
  1305. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/util.ts +0 -966
  1306. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/versions.ts +0 -5
  1307. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/core/zsf.ts +0 -323
  1308. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/index.ts +0 -4
  1309. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/ar.ts +0 -115
  1310. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/az.ts +0 -111
  1311. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/be.ts +0 -176
  1312. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/bg.ts +0 -128
  1313. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/ca.ts +0 -116
  1314. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/cs.ts +0 -118
  1315. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/da.ts +0 -123
  1316. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/de.ts +0 -116
  1317. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/en.ts +0 -119
  1318. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/eo.ts +0 -118
  1319. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/es.ts +0 -141
  1320. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/fa.ts +0 -126
  1321. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/fi.ts +0 -121
  1322. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/fr-CA.ts +0 -116
  1323. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/fr.ts +0 -116
  1324. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/he.ts +0 -246
  1325. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/hu.ts +0 -117
  1326. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/hy.ts +0 -164
  1327. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/id.ts +0 -115
  1328. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/index.ts +0 -49
  1329. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/is.ts +0 -119
  1330. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/it.ts +0 -116
  1331. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/ja.ts +0 -114
  1332. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/ka.ts +0 -123
  1333. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/kh.ts +0 -7
  1334. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/km.ts +0 -119
  1335. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/ko.ts +0 -121
  1336. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/lt.ts +0 -239
  1337. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/mk.ts +0 -118
  1338. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/ms.ts +0 -115
  1339. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/nl.ts +0 -121
  1340. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/no.ts +0 -116
  1341. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/ota.ts +0 -117
  1342. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/pl.ts +0 -118
  1343. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/ps.ts +0 -126
  1344. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/pt.ts +0 -116
  1345. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/ru.ts +0 -176
  1346. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/sl.ts +0 -118
  1347. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/sv.ts +0 -119
  1348. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/ta.ts +0 -118
  1349. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/th.ts +0 -119
  1350. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/tr.ts +0 -111
  1351. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/ua.ts +0 -7
  1352. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/uk.ts +0 -117
  1353. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/ur.ts +0 -119
  1354. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/uz.ts +0 -116
  1355. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/vi.ts +0 -117
  1356. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/yo.ts +0 -124
  1357. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/zh-CN.ts +0 -116
  1358. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/locales/zh-TW.ts +0 -115
  1359. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/checks.ts +0 -32
  1360. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/coerce.ts +0 -27
  1361. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/external.ts +0 -40
  1362. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/index.ts +0 -3
  1363. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/iso.ts +0 -66
  1364. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/parse.ts +0 -14
  1365. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/schemas.ts +0 -1916
  1366. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/tests/apply.test.ts +0 -24
  1367. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/tests/assignability.test.ts +0 -129
  1368. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/tests/brand.test.ts +0 -94
  1369. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/tests/checks.test.ts +0 -144
  1370. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/tests/codec.test.ts +0 -529
  1371. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/tests/computed.test.ts +0 -36
  1372. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/tests/error.test.ts +0 -22
  1373. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/tests/functions.test.ts +0 -5
  1374. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/tests/index.test.ts +0 -963
  1375. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/tests/number.test.ts +0 -95
  1376. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/tests/object.test.ts +0 -227
  1377. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/tests/prototypes.test.ts +0 -43
  1378. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/tests/recursive-types.test.ts +0 -275
  1379. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/tests/standard-schema.test.ts +0 -50
  1380. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4/mini/tests/string.test.ts +0 -347
  1381. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/src/v4-mini/index.ts +0 -1
  1382. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/ZodError.cjs +0 -138
  1383. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/ZodError.d.cts +0 -164
  1384. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/ZodError.d.ts +0 -164
  1385. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/ZodError.js +0 -133
  1386. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/errors.cjs +0 -17
  1387. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/errors.d.cts +0 -5
  1388. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/errors.d.ts +0 -5
  1389. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/errors.js +0 -9
  1390. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/external.cjs +0 -22
  1391. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/external.d.cts +0 -6
  1392. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/external.d.ts +0 -6
  1393. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/external.js +0 -6
  1394. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/enumUtil.cjs +0 -2
  1395. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/enumUtil.d.cts +0 -8
  1396. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/enumUtil.d.ts +0 -8
  1397. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/enumUtil.js +0 -1
  1398. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/errorUtil.cjs +0 -9
  1399. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/errorUtil.d.cts +0 -9
  1400. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/errorUtil.d.ts +0 -9
  1401. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/errorUtil.js +0 -6
  1402. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/parseUtil.cjs +0 -124
  1403. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/parseUtil.d.cts +0 -78
  1404. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/parseUtil.d.ts +0 -78
  1405. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/parseUtil.js +0 -109
  1406. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/partialUtil.cjs +0 -2
  1407. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/partialUtil.d.cts +0 -8
  1408. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/partialUtil.d.ts +0 -8
  1409. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/partialUtil.js +0 -1
  1410. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/typeAliases.cjs +0 -2
  1411. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/typeAliases.d.cts +0 -2
  1412. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/typeAliases.d.ts +0 -2
  1413. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/typeAliases.js +0 -1
  1414. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/util.cjs +0 -137
  1415. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/util.d.cts +0 -85
  1416. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/util.d.ts +0 -85
  1417. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/helpers/util.js +0 -133
  1418. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/index.cjs +0 -33
  1419. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/index.d.cts +0 -4
  1420. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/index.d.ts +0 -4
  1421. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/index.js +0 -4
  1422. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/locales/en.cjs +0 -112
  1423. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/locales/en.d.cts +0 -3
  1424. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/locales/en.d.ts +0 -3
  1425. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/locales/en.js +0 -109
  1426. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/package.json +0 -6
  1427. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/standard-schema.cjs +0 -2
  1428. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/standard-schema.d.cts +0 -102
  1429. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/standard-schema.d.ts +0 -102
  1430. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/standard-schema.js +0 -1
  1431. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/types.cjs +0 -3777
  1432. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/types.d.cts +0 -1034
  1433. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/types.d.ts +0 -1034
  1434. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v3/types.js +0 -3695
  1435. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/checks.cjs +0 -33
  1436. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/checks.d.cts +0 -1
  1437. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/checks.d.ts +0 -1
  1438. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/checks.js +0 -1
  1439. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/coerce.cjs +0 -47
  1440. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/coerce.d.cts +0 -17
  1441. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/coerce.d.ts +0 -17
  1442. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/coerce.js +0 -17
  1443. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/compat.cjs +0 -61
  1444. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/compat.d.cts +0 -50
  1445. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/compat.d.ts +0 -50
  1446. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/compat.js +0 -31
  1447. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/errors.cjs +0 -74
  1448. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/errors.d.cts +0 -30
  1449. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/errors.d.ts +0 -30
  1450. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/errors.js +0 -48
  1451. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/external.cjs +0 -73
  1452. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/external.d.cts +0 -15
  1453. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/external.d.ts +0 -15
  1454. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/external.js +0 -20
  1455. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/from-json-schema.cjs +0 -610
  1456. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/from-json-schema.d.cts +0 -12
  1457. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/from-json-schema.d.ts +0 -12
  1458. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/from-json-schema.js +0 -584
  1459. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/index.cjs +0 -33
  1460. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/index.d.cts +0 -4
  1461. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/index.d.ts +0 -4
  1462. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/index.js +0 -4
  1463. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/iso.cjs +0 -60
  1464. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/iso.d.cts +0 -22
  1465. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/iso.d.ts +0 -22
  1466. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/iso.js +0 -30
  1467. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/package.json +0 -6
  1468. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/parse.cjs +0 -41
  1469. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/parse.d.cts +0 -31
  1470. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/parse.d.ts +0 -31
  1471. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/parse.js +0 -15
  1472. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/schemas.cjs +0 -1272
  1473. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/schemas.d.cts +0 -739
  1474. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/schemas.d.ts +0 -739
  1475. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/classic/schemas.js +0 -1157
  1476. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/api.cjs +0 -1222
  1477. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/api.d.cts +0 -304
  1478. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/api.d.ts +0 -304
  1479. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/api.js +0 -1082
  1480. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/checks.cjs +0 -601
  1481. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/checks.d.cts +0 -278
  1482. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/checks.d.ts +0 -278
  1483. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/checks.js +0 -575
  1484. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/core.cjs +0 -83
  1485. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/core.d.cts +0 -70
  1486. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/core.d.ts +0 -70
  1487. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/core.js +0 -76
  1488. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/doc.cjs +0 -39
  1489. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/doc.d.cts +0 -14
  1490. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/doc.d.ts +0 -14
  1491. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/doc.js +0 -35
  1492. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/errors.cjs +0 -213
  1493. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/errors.d.cts +0 -220
  1494. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/errors.d.ts +0 -220
  1495. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/errors.js +0 -182
  1496. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/index.cjs +0 -47
  1497. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/index.d.cts +0 -16
  1498. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/index.d.ts +0 -16
  1499. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/index.js +0 -16
  1500. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/json-schema-generator.cjs +0 -99
  1501. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/json-schema-generator.d.cts +0 -65
  1502. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/json-schema-generator.d.ts +0 -65
  1503. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/json-schema-generator.js +0 -95
  1504. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/json-schema-processors.cjs +0 -648
  1505. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/json-schema-processors.d.cts +0 -49
  1506. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/json-schema-processors.d.ts +0 -49
  1507. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/json-schema-processors.js +0 -605
  1508. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/json-schema.cjs +0 -2
  1509. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/json-schema.d.cts +0 -88
  1510. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/json-schema.d.ts +0 -88
  1511. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/json-schema.js +0 -1
  1512. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/package.json +0 -6
  1513. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/parse.cjs +0 -131
  1514. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/parse.d.cts +0 -49
  1515. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/parse.d.ts +0 -49
  1516. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/parse.js +0 -93
  1517. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/regexes.cjs +0 -166
  1518. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/regexes.d.cts +0 -79
  1519. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/regexes.d.ts +0 -79
  1520. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/regexes.js +0 -133
  1521. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/registries.cjs +0 -56
  1522. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/registries.d.cts +0 -35
  1523. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/registries.d.ts +0 -35
  1524. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/registries.js +0 -51
  1525. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/schemas.cjs +0 -2126
  1526. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/schemas.d.cts +0 -1146
  1527. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/schemas.d.ts +0 -1146
  1528. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/schemas.js +0 -2095
  1529. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/standard-schema.cjs +0 -2
  1530. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/standard-schema.d.cts +0 -126
  1531. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/standard-schema.d.ts +0 -126
  1532. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/standard-schema.js +0 -1
  1533. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/to-json-schema.cjs +0 -446
  1534. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/to-json-schema.d.cts +0 -114
  1535. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/to-json-schema.d.ts +0 -114
  1536. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/to-json-schema.js +0 -437
  1537. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/util.cjs +0 -710
  1538. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/util.d.cts +0 -199
  1539. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/util.d.ts +0 -199
  1540. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/util.js +0 -651
  1541. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/versions.cjs +0 -8
  1542. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/versions.d.cts +0 -5
  1543. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/versions.d.ts +0 -5
  1544. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/core/versions.js +0 -5
  1545. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/index.cjs +0 -22
  1546. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/index.d.cts +0 -3
  1547. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/index.d.ts +0 -3
  1548. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/index.js +0 -3
  1549. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ar.cjs +0 -133
  1550. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ar.d.cts +0 -5
  1551. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ar.d.ts +0 -4
  1552. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ar.js +0 -106
  1553. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/az.cjs +0 -132
  1554. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/az.d.cts +0 -5
  1555. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/az.d.ts +0 -4
  1556. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/az.js +0 -105
  1557. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/be.cjs +0 -183
  1558. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/be.d.cts +0 -5
  1559. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/be.d.ts +0 -4
  1560. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/be.js +0 -156
  1561. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/bg.cjs +0 -147
  1562. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/bg.d.cts +0 -5
  1563. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/bg.d.ts +0 -4
  1564. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/bg.js +0 -120
  1565. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ca.cjs +0 -134
  1566. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ca.d.cts +0 -5
  1567. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ca.d.ts +0 -4
  1568. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ca.js +0 -107
  1569. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/cs.cjs +0 -138
  1570. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/cs.d.cts +0 -5
  1571. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/cs.d.ts +0 -4
  1572. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/cs.js +0 -111
  1573. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/da.cjs +0 -142
  1574. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/da.d.cts +0 -5
  1575. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/da.d.ts +0 -4
  1576. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/da.js +0 -115
  1577. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/de.cjs +0 -135
  1578. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/de.d.cts +0 -5
  1579. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/de.d.ts +0 -4
  1580. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/de.js +0 -108
  1581. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/en.cjs +0 -136
  1582. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/en.d.cts +0 -5
  1583. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/en.d.ts +0 -4
  1584. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/en.js +0 -109
  1585. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/eo.cjs +0 -136
  1586. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/eo.d.cts +0 -5
  1587. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/eo.d.ts +0 -4
  1588. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/eo.js +0 -109
  1589. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/es.cjs +0 -159
  1590. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/es.d.cts +0 -5
  1591. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/es.d.ts +0 -4
  1592. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/es.js +0 -132
  1593. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fa.cjs +0 -141
  1594. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fa.d.cts +0 -5
  1595. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fa.d.ts +0 -4
  1596. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fa.js +0 -114
  1597. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fi.cjs +0 -139
  1598. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fi.d.cts +0 -5
  1599. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fi.d.ts +0 -4
  1600. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fi.js +0 -112
  1601. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fr-CA.cjs +0 -134
  1602. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fr-CA.d.cts +0 -5
  1603. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fr-CA.d.ts +0 -4
  1604. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fr-CA.js +0 -107
  1605. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fr.cjs +0 -135
  1606. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fr.d.cts +0 -5
  1607. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fr.d.ts +0 -4
  1608. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/fr.js +0 -108
  1609. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/he.cjs +0 -241
  1610. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/he.d.cts +0 -5
  1611. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/he.d.ts +0 -4
  1612. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/he.js +0 -214
  1613. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/hu.cjs +0 -135
  1614. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/hu.d.cts +0 -5
  1615. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/hu.d.ts +0 -4
  1616. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/hu.js +0 -108
  1617. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/hy.cjs +0 -174
  1618. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/hy.d.cts +0 -5
  1619. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/hy.d.ts +0 -4
  1620. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/hy.js +0 -147
  1621. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/id.cjs +0 -133
  1622. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/id.d.cts +0 -5
  1623. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/id.d.ts +0 -4
  1624. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/id.js +0 -106
  1625. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/index.cjs +0 -104
  1626. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/index.d.cts +0 -49
  1627. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/index.d.ts +0 -49
  1628. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/index.js +0 -49
  1629. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/is.cjs +0 -136
  1630. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/is.d.cts +0 -5
  1631. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/is.d.ts +0 -4
  1632. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/is.js +0 -109
  1633. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/it.cjs +0 -135
  1634. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/it.d.cts +0 -5
  1635. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/it.d.ts +0 -4
  1636. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/it.js +0 -108
  1637. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ja.cjs +0 -134
  1638. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ja.d.cts +0 -5
  1639. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ja.d.ts +0 -4
  1640. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ja.js +0 -107
  1641. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ka.cjs +0 -139
  1642. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ka.d.cts +0 -5
  1643. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ka.d.ts +0 -4
  1644. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ka.js +0 -112
  1645. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/kh.cjs +0 -12
  1646. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/kh.d.cts +0 -5
  1647. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/kh.d.ts +0 -5
  1648. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/kh.js +0 -5
  1649. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/km.cjs +0 -137
  1650. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/km.d.cts +0 -5
  1651. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/km.d.ts +0 -4
  1652. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/km.js +0 -110
  1653. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ko.cjs +0 -138
  1654. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ko.d.cts +0 -5
  1655. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ko.d.ts +0 -4
  1656. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ko.js +0 -111
  1657. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/lt.cjs +0 -230
  1658. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/lt.d.cts +0 -5
  1659. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/lt.d.ts +0 -4
  1660. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/lt.js +0 -203
  1661. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/mk.cjs +0 -136
  1662. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/mk.d.cts +0 -5
  1663. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/mk.d.ts +0 -4
  1664. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/mk.js +0 -109
  1665. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ms.cjs +0 -134
  1666. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ms.d.cts +0 -5
  1667. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ms.d.ts +0 -4
  1668. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ms.js +0 -107
  1669. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/nl.cjs +0 -137
  1670. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/nl.d.cts +0 -5
  1671. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/nl.d.ts +0 -4
  1672. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/nl.js +0 -110
  1673. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/no.cjs +0 -135
  1674. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/no.d.cts +0 -5
  1675. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/no.d.ts +0 -4
  1676. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/no.js +0 -108
  1677. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ota.cjs +0 -136
  1678. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ota.d.cts +0 -5
  1679. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ota.d.ts +0 -4
  1680. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ota.js +0 -109
  1681. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/package.json +0 -6
  1682. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/pl.cjs +0 -136
  1683. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/pl.d.cts +0 -5
  1684. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/pl.d.ts +0 -4
  1685. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/pl.js +0 -109
  1686. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ps.cjs +0 -141
  1687. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ps.d.cts +0 -5
  1688. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ps.d.ts +0 -4
  1689. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ps.js +0 -114
  1690. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/pt.cjs +0 -135
  1691. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/pt.d.cts +0 -5
  1692. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/pt.d.ts +0 -4
  1693. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/pt.js +0 -108
  1694. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ru.cjs +0 -183
  1695. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ru.d.cts +0 -5
  1696. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ru.d.ts +0 -4
  1697. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ru.js +0 -156
  1698. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/sl.cjs +0 -136
  1699. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/sl.d.cts +0 -5
  1700. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/sl.d.ts +0 -4
  1701. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/sl.js +0 -109
  1702. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/sv.cjs +0 -137
  1703. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/sv.d.cts +0 -5
  1704. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/sv.d.ts +0 -4
  1705. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/sv.js +0 -110
  1706. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ta.cjs +0 -137
  1707. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ta.d.cts +0 -5
  1708. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ta.d.ts +0 -4
  1709. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ta.js +0 -110
  1710. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/th.cjs +0 -137
  1711. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/th.d.cts +0 -5
  1712. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/th.d.ts +0 -4
  1713. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/th.js +0 -110
  1714. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/tr.cjs +0 -132
  1715. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/tr.d.cts +0 -5
  1716. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/tr.d.ts +0 -4
  1717. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/tr.js +0 -105
  1718. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ua.cjs +0 -12
  1719. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ua.d.cts +0 -5
  1720. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ua.d.ts +0 -5
  1721. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ua.js +0 -5
  1722. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/uk.cjs +0 -135
  1723. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/uk.d.cts +0 -5
  1724. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/uk.d.ts +0 -4
  1725. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/uk.js +0 -108
  1726. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ur.cjs +0 -137
  1727. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ur.d.cts +0 -5
  1728. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ur.d.ts +0 -4
  1729. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/ur.js +0 -110
  1730. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/uz.cjs +0 -136
  1731. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/uz.d.cts +0 -5
  1732. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/uz.d.ts +0 -4
  1733. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/uz.js +0 -109
  1734. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/vi.cjs +0 -135
  1735. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/vi.d.cts +0 -5
  1736. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/vi.d.ts +0 -4
  1737. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/vi.js +0 -108
  1738. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/yo.cjs +0 -134
  1739. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/yo.d.cts +0 -5
  1740. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/yo.d.ts +0 -4
  1741. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/yo.js +0 -107
  1742. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/zh-CN.cjs +0 -136
  1743. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/zh-CN.d.cts +0 -5
  1744. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/zh-CN.d.ts +0 -4
  1745. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/zh-CN.js +0 -109
  1746. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/zh-TW.cjs +0 -134
  1747. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/zh-TW.d.cts +0 -5
  1748. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/zh-TW.d.ts +0 -4
  1749. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/locales/zh-TW.js +0 -107
  1750. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/checks.cjs +0 -34
  1751. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/checks.d.cts +0 -1
  1752. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/checks.d.ts +0 -1
  1753. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/checks.js +0 -1
  1754. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/coerce.cjs +0 -52
  1755. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/coerce.d.cts +0 -7
  1756. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/coerce.d.ts +0 -7
  1757. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/coerce.js +0 -22
  1758. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/external.cjs +0 -63
  1759. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/external.d.cts +0 -12
  1760. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/external.d.ts +0 -12
  1761. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/external.js +0 -14
  1762. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/index.cjs +0 -32
  1763. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/index.d.cts +0 -3
  1764. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/index.d.ts +0 -3
  1765. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/index.js +0 -3
  1766. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/iso.cjs +0 -64
  1767. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/iso.d.cts +0 -22
  1768. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/iso.d.ts +0 -22
  1769. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/iso.js +0 -34
  1770. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/package.json +0 -6
  1771. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/parse.cjs +0 -16
  1772. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/parse.d.cts +0 -1
  1773. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/parse.d.ts +0 -1
  1774. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/parse.js +0 -1
  1775. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/schemas.cjs +0 -1046
  1776. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/schemas.d.cts +0 -427
  1777. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/schemas.d.ts +0 -427
  1778. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/mini/schemas.js +0 -925
  1779. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4/package.json +0 -6
  1780. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4-mini/index.cjs +0 -17
  1781. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4-mini/index.d.cts +0 -1
  1782. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4-mini/index.d.ts +0 -1
  1783. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4-mini/index.js +0 -1
  1784. package/examples/starter/node_modules/kysely-codegen/node_modules/zod/v4-mini/package.json +0 -6
  1785. package/examples/starter/node_modules/kysely-codegen/package.json +0 -214
  1786. package/examples/starter/node_modules/kysely-codegen/pnpm-workspace.yaml +0 -3
  1787. package/examples/starter/node_modules/kysely-codegen/tsconfig.build.json +0 -5
  1788. package/examples/starter/node_modules/lines-and-columns/LICENSE +0 -21
  1789. package/examples/starter/node_modules/lines-and-columns/README.md +0 -33
  1790. package/examples/starter/node_modules/lines-and-columns/build/index.d.ts +0 -13
  1791. package/examples/starter/node_modules/lines-and-columns/build/index.js +0 -62
  1792. package/examples/starter/node_modules/lines-and-columns/package.json +0 -49
  1793. package/examples/starter/node_modules/loglevel/.editorconfig +0 -27
  1794. package/examples/starter/node_modules/loglevel/CONTRIBUTING.md +0 -98
  1795. package/examples/starter/node_modules/loglevel/Gruntfile.js +0 -165
  1796. package/examples/starter/node_modules/loglevel/LICENSE-MIT +0 -22
  1797. package/examples/starter/node_modules/loglevel/README.md +0 -408
  1798. package/examples/starter/node_modules/loglevel/_config.yml +0 -1
  1799. package/examples/starter/node_modules/loglevel/bower.json +0 -11
  1800. package/examples/starter/node_modules/loglevel/demo/index.html +0 -139
  1801. package/examples/starter/node_modules/loglevel/demo/script.js +0 -86
  1802. package/examples/starter/node_modules/loglevel/demo/styles.css +0 -107
  1803. package/examples/starter/node_modules/loglevel/dist/loglevel.js +0 -352
  1804. package/examples/starter/node_modules/loglevel/dist/loglevel.min.js +0 -3
  1805. package/examples/starter/node_modules/loglevel/index.d.ts +0 -203
  1806. package/examples/starter/node_modules/loglevel/lib/loglevel.js +0 -357
  1807. package/examples/starter/node_modules/loglevel/package.json +0 -63
  1808. package/examples/starter/node_modules/micromatch/LICENSE +0 -21
  1809. package/examples/starter/node_modules/micromatch/README.md +0 -1024
  1810. package/examples/starter/node_modules/micromatch/index.js +0 -474
  1811. package/examples/starter/node_modules/micromatch/package.json +0 -119
  1812. package/examples/starter/node_modules/minimatch/LICENSE +0 -15
  1813. package/examples/starter/node_modules/minimatch/README.md +0 -230
  1814. package/examples/starter/node_modules/minimatch/minimatch.js +0 -947
  1815. package/examples/starter/node_modules/minimatch/package.json +0 -33
  1816. package/examples/starter/node_modules/minimist/.eslintrc +0 -29
  1817. package/examples/starter/node_modules/minimist/.github/FUNDING.yml +0 -12
  1818. package/examples/starter/node_modules/minimist/.nycrc +0 -14
  1819. package/examples/starter/node_modules/minimist/CHANGELOG.md +0 -298
  1820. package/examples/starter/node_modules/minimist/LICENSE +0 -18
  1821. package/examples/starter/node_modules/minimist/README.md +0 -121
  1822. package/examples/starter/node_modules/minimist/example/parse.js +0 -4
  1823. package/examples/starter/node_modules/minimist/index.js +0 -263
  1824. package/examples/starter/node_modules/minimist/package.json +0 -75
  1825. package/examples/starter/node_modules/minimist/test/all_bool.js +0 -34
  1826. package/examples/starter/node_modules/minimist/test/bool.js +0 -177
  1827. package/examples/starter/node_modules/minimist/test/dash.js +0 -43
  1828. package/examples/starter/node_modules/minimist/test/default_bool.js +0 -37
  1829. package/examples/starter/node_modules/minimist/test/dotted.js +0 -24
  1830. package/examples/starter/node_modules/minimist/test/kv_short.js +0 -32
  1831. package/examples/starter/node_modules/minimist/test/long.js +0 -33
  1832. package/examples/starter/node_modules/minimist/test/num.js +0 -38
  1833. package/examples/starter/node_modules/minimist/test/parse.js +0 -209
  1834. package/examples/starter/node_modules/minimist/test/parse_modified.js +0 -11
  1835. package/examples/starter/node_modules/minimist/test/proto.js +0 -64
  1836. package/examples/starter/node_modules/minimist/test/short.js +0 -69
  1837. package/examples/starter/node_modules/minimist/test/stop_early.js +0 -17
  1838. package/examples/starter/node_modules/minimist/test/unknown.js +0 -104
  1839. package/examples/starter/node_modules/minimist/test/whitespace.js +0 -10
  1840. package/examples/starter/node_modules/parent-module/index.js +0 -37
  1841. package/examples/starter/node_modules/parent-module/license +0 -9
  1842. package/examples/starter/node_modules/parent-module/package.json +0 -46
  1843. package/examples/starter/node_modules/parent-module/readme.md +0 -67
  1844. package/examples/starter/node_modules/parse-json/index.js +0 -54
  1845. package/examples/starter/node_modules/parse-json/license +0 -9
  1846. package/examples/starter/node_modules/parse-json/package.json +0 -45
  1847. package/examples/starter/node_modules/parse-json/readme.md +0 -119
  1848. package/examples/starter/node_modules/path-is-absolute/index.js +0 -20
  1849. package/examples/starter/node_modules/path-is-absolute/license +0 -21
  1850. package/examples/starter/node_modules/path-is-absolute/package.json +0 -43
  1851. package/examples/starter/node_modules/path-is-absolute/readme.md +0 -59
  1852. package/examples/starter/node_modules/path-parse/LICENSE +0 -21
  1853. package/examples/starter/node_modules/path-parse/README.md +0 -42
  1854. package/examples/starter/node_modules/path-parse/index.js +0 -75
  1855. package/examples/starter/node_modules/path-parse/package.json +0 -33
  1856. package/examples/starter/node_modules/picomatch/CHANGELOG.md +0 -136
  1857. package/examples/starter/node_modules/picomatch/LICENSE +0 -21
  1858. package/examples/starter/node_modules/picomatch/README.md +0 -708
  1859. package/examples/starter/node_modules/picomatch/index.js +0 -3
  1860. package/examples/starter/node_modules/picomatch/lib/constants.js +0 -179
  1861. package/examples/starter/node_modules/picomatch/lib/parse.js +0 -1091
  1862. package/examples/starter/node_modules/picomatch/lib/picomatch.js +0 -342
  1863. package/examples/starter/node_modules/picomatch/lib/scan.js +0 -391
  1864. package/examples/starter/node_modules/picomatch/lib/utils.js +0 -64
  1865. package/examples/starter/node_modules/picomatch/package.json +0 -81
  1866. package/examples/starter/node_modules/pluralize/LICENSE +0 -21
  1867. package/examples/starter/node_modules/pluralize/Readme.md +0 -100
  1868. package/examples/starter/node_modules/pluralize/package.json +0 -40
  1869. package/examples/starter/node_modules/pluralize/pluralize.js +0 -503
  1870. package/examples/starter/node_modules/rechoir/.travis.yml +0 -24
  1871. package/examples/starter/node_modules/rechoir/CHANGELOG +0 -38
  1872. package/examples/starter/node_modules/rechoir/LICENSE +0 -22
  1873. package/examples/starter/node_modules/rechoir/README.md +0 -42
  1874. package/examples/starter/node_modules/rechoir/index.js +0 -59
  1875. package/examples/starter/node_modules/rechoir/lib/extension.js +0 -11
  1876. package/examples/starter/node_modules/rechoir/lib/normalize.js +0 -15
  1877. package/examples/starter/node_modules/rechoir/lib/register.js +0 -15
  1878. package/examples/starter/node_modules/rechoir/package.json +0 -88
  1879. package/examples/starter/node_modules/resolve/.editorconfig +0 -37
  1880. package/examples/starter/node_modules/resolve/.eslintrc +0 -65
  1881. package/examples/starter/node_modules/resolve/.github/FUNDING.yml +0 -12
  1882. package/examples/starter/node_modules/resolve/.github/INCIDENT_RESPONSE_PROCESS.md +0 -119
  1883. package/examples/starter/node_modules/resolve/.github/THREAT_MODEL.md +0 -74
  1884. package/examples/starter/node_modules/resolve/LICENSE +0 -21
  1885. package/examples/starter/node_modules/resolve/SECURITY.md +0 -11
  1886. package/examples/starter/node_modules/resolve/async.js +0 -3
  1887. package/examples/starter/node_modules/resolve/bin/resolve +0 -50
  1888. package/examples/starter/node_modules/resolve/example/async.js +0 -5
  1889. package/examples/starter/node_modules/resolve/example/sync.js +0 -3
  1890. package/examples/starter/node_modules/resolve/index.js +0 -6
  1891. package/examples/starter/node_modules/resolve/lib/async.js +0 -333
  1892. package/examples/starter/node_modules/resolve/lib/caller.js +0 -8
  1893. package/examples/starter/node_modules/resolve/lib/core.js +0 -12
  1894. package/examples/starter/node_modules/resolve/lib/core.json +0 -162
  1895. package/examples/starter/node_modules/resolve/lib/homedir.js +0 -24
  1896. package/examples/starter/node_modules/resolve/lib/is-core.js +0 -5
  1897. package/examples/starter/node_modules/resolve/lib/node-modules-paths.js +0 -45
  1898. package/examples/starter/node_modules/resolve/lib/normalize-options.js +0 -10
  1899. package/examples/starter/node_modules/resolve/lib/sync.js +0 -212
  1900. package/examples/starter/node_modules/resolve/package.json +0 -75
  1901. package/examples/starter/node_modules/resolve/readme.markdown +0 -301
  1902. package/examples/starter/node_modules/resolve/sync.js +0 -3
  1903. package/examples/starter/node_modules/resolve/test/core.js +0 -88
  1904. package/examples/starter/node_modules/resolve/test/dotdot/abc/index.js +0 -2
  1905. package/examples/starter/node_modules/resolve/test/dotdot/index.js +0 -1
  1906. package/examples/starter/node_modules/resolve/test/dotdot.js +0 -29
  1907. package/examples/starter/node_modules/resolve/test/faulty_basedir.js +0 -29
  1908. package/examples/starter/node_modules/resolve/test/filter.js +0 -34
  1909. package/examples/starter/node_modules/resolve/test/filter_sync.js +0 -33
  1910. package/examples/starter/node_modules/resolve/test/home_paths.js +0 -127
  1911. package/examples/starter/node_modules/resolve/test/home_paths_sync.js +0 -114
  1912. package/examples/starter/node_modules/resolve/test/mock.js +0 -315
  1913. package/examples/starter/node_modules/resolve/test/mock_sync.js +0 -214
  1914. package/examples/starter/node_modules/resolve/test/module_dir/xmodules/aaa/index.js +0 -1
  1915. package/examples/starter/node_modules/resolve/test/module_dir/ymodules/aaa/index.js +0 -1
  1916. package/examples/starter/node_modules/resolve/test/module_dir/zmodules/bbb/main.js +0 -1
  1917. package/examples/starter/node_modules/resolve/test/module_dir/zmodules/bbb/package.json +0 -3
  1918. package/examples/starter/node_modules/resolve/test/module_dir.js +0 -56
  1919. package/examples/starter/node_modules/resolve/test/node-modules-paths.js +0 -143
  1920. package/examples/starter/node_modules/resolve/test/node_path/x/aaa/index.js +0 -1
  1921. package/examples/starter/node_modules/resolve/test/node_path/x/ccc/index.js +0 -1
  1922. package/examples/starter/node_modules/resolve/test/node_path/y/bbb/index.js +0 -1
  1923. package/examples/starter/node_modules/resolve/test/node_path/y/ccc/index.js +0 -1
  1924. package/examples/starter/node_modules/resolve/test/node_path.js +0 -70
  1925. package/examples/starter/node_modules/resolve/test/nonstring.js +0 -9
  1926. package/examples/starter/node_modules/resolve/test/pathfilter/deep_ref/main.js +0 -0
  1927. package/examples/starter/node_modules/resolve/test/pathfilter.js +0 -75
  1928. package/examples/starter/node_modules/resolve/test/precedence/aaa/index.js +0 -1
  1929. package/examples/starter/node_modules/resolve/test/precedence/aaa/main.js +0 -1
  1930. package/examples/starter/node_modules/resolve/test/precedence/aaa.js +0 -1
  1931. package/examples/starter/node_modules/resolve/test/precedence/bbb/main.js +0 -1
  1932. package/examples/starter/node_modules/resolve/test/precedence/bbb.js +0 -1
  1933. package/examples/starter/node_modules/resolve/test/precedence.js +0 -23
  1934. package/examples/starter/node_modules/resolve/test/resolver/baz/doom.js +0 -0
  1935. package/examples/starter/node_modules/resolve/test/resolver/baz/package.json +0 -4
  1936. package/examples/starter/node_modules/resolve/test/resolver/baz/quux.js +0 -1
  1937. package/examples/starter/node_modules/resolve/test/resolver/browser_field/a.js +0 -0
  1938. package/examples/starter/node_modules/resolve/test/resolver/browser_field/b.js +0 -0
  1939. package/examples/starter/node_modules/resolve/test/resolver/browser_field/package.json +0 -5
  1940. package/examples/starter/node_modules/resolve/test/resolver/cup.coffee +0 -1
  1941. package/examples/starter/node_modules/resolve/test/resolver/dot_main/index.js +0 -1
  1942. package/examples/starter/node_modules/resolve/test/resolver/dot_main/package.json +0 -3
  1943. package/examples/starter/node_modules/resolve/test/resolver/dot_slash_main/index.js +0 -1
  1944. package/examples/starter/node_modules/resolve/test/resolver/dot_slash_main/package.json +0 -3
  1945. package/examples/starter/node_modules/resolve/test/resolver/false_main/index.js +0 -0
  1946. package/examples/starter/node_modules/resolve/test/resolver/false_main/package.json +0 -4
  1947. package/examples/starter/node_modules/resolve/test/resolver/foo.js +0 -1
  1948. package/examples/starter/node_modules/resolve/test/resolver/incorrect_main/index.js +0 -2
  1949. package/examples/starter/node_modules/resolve/test/resolver/incorrect_main/package.json +0 -3
  1950. package/examples/starter/node_modules/resolve/test/resolver/invalid_main/package.json +0 -7
  1951. package/examples/starter/node_modules/resolve/test/resolver/mug.coffee +0 -0
  1952. package/examples/starter/node_modules/resolve/test/resolver/mug.js +0 -0
  1953. package/examples/starter/node_modules/resolve/test/resolver/multirepo/lerna.json +0 -6
  1954. package/examples/starter/node_modules/resolve/test/resolver/multirepo/package.json +0 -20
  1955. package/examples/starter/node_modules/resolve/test/resolver/multirepo/packages/package-a/index.js +0 -35
  1956. package/examples/starter/node_modules/resolve/test/resolver/multirepo/packages/package-a/package.json +0 -14
  1957. package/examples/starter/node_modules/resolve/test/resolver/multirepo/packages/package-b/index.js +0 -0
  1958. package/examples/starter/node_modules/resolve/test/resolver/multirepo/packages/package-b/package.json +0 -14
  1959. package/examples/starter/node_modules/resolve/test/resolver/nested_symlinks/mylib/async.js +0 -26
  1960. package/examples/starter/node_modules/resolve/test/resolver/nested_symlinks/mylib/package.json +0 -15
  1961. package/examples/starter/node_modules/resolve/test/resolver/nested_symlinks/mylib/sync.js +0 -12
  1962. package/examples/starter/node_modules/resolve/test/resolver/other_path/lib/other-lib.js +0 -0
  1963. package/examples/starter/node_modules/resolve/test/resolver/other_path/root.js +0 -0
  1964. package/examples/starter/node_modules/resolve/test/resolver/quux/foo/index.js +0 -1
  1965. package/examples/starter/node_modules/resolve/test/resolver/same_names/foo/index.js +0 -1
  1966. package/examples/starter/node_modules/resolve/test/resolver/same_names/foo.js +0 -1
  1967. package/examples/starter/node_modules/resolve/test/resolver/symlinked/_/node_modules/foo.js +0 -0
  1968. package/examples/starter/node_modules/resolve/test/resolver/symlinked/_/symlink_target/.gitkeep +0 -0
  1969. package/examples/starter/node_modules/resolve/test/resolver/symlinked/package/bar.js +0 -1
  1970. package/examples/starter/node_modules/resolve/test/resolver/symlinked/package/package.json +0 -3
  1971. package/examples/starter/node_modules/resolve/test/resolver/without_basedir/main.js +0 -5
  1972. package/examples/starter/node_modules/resolve/test/resolver.js +0 -597
  1973. package/examples/starter/node_modules/resolve/test/resolver_sync.js +0 -730
  1974. package/examples/starter/node_modules/resolve/test/shadowed_core/node_modules/util/index.js +0 -0
  1975. package/examples/starter/node_modules/resolve/test/shadowed_core.js +0 -54
  1976. package/examples/starter/node_modules/resolve/test/subdirs.js +0 -13
  1977. package/examples/starter/node_modules/resolve/test/symlinks.js +0 -176
  1978. package/examples/starter/node_modules/resolve-from/index.js +0 -47
  1979. package/examples/starter/node_modules/resolve-from/license +0 -9
  1980. package/examples/starter/node_modules/resolve-from/package.json +0 -34
  1981. package/examples/starter/node_modules/resolve-from/readme.md +0 -72
  1982. package/examples/starter/node_modules/shelljs/CHANGELOG.md +0 -942
  1983. package/examples/starter/node_modules/shelljs/LICENSE +0 -26
  1984. package/examples/starter/node_modules/shelljs/README.md +0 -835
  1985. package/examples/starter/node_modules/shelljs/bin/shjs +0 -48
  1986. package/examples/starter/node_modules/shelljs/commands.js +0 -29
  1987. package/examples/starter/node_modules/shelljs/global.js +0 -12
  1988. package/examples/starter/node_modules/shelljs/make.js +0 -57
  1989. package/examples/starter/node_modules/shelljs/package.json +0 -79
  1990. package/examples/starter/node_modules/shelljs/plugin.js +0 -16
  1991. package/examples/starter/node_modules/shelljs/shell.js +0 -156
  1992. package/examples/starter/node_modules/shelljs/src/cat.js +0 -76
  1993. package/examples/starter/node_modules/shelljs/src/cd.js +0 -39
  1994. package/examples/starter/node_modules/shelljs/src/chmod.js +0 -216
  1995. package/examples/starter/node_modules/shelljs/src/common.js +0 -468
  1996. package/examples/starter/node_modules/shelljs/src/cp.js +0 -304
  1997. package/examples/starter/node_modules/shelljs/src/dirs.js +0 -212
  1998. package/examples/starter/node_modules/shelljs/src/echo.js +0 -63
  1999. package/examples/starter/node_modules/shelljs/src/error.js +0 -15
  2000. package/examples/starter/node_modules/shelljs/src/exec-child.js +0 -39
  2001. package/examples/starter/node_modules/shelljs/src/exec.js +0 -226
  2002. package/examples/starter/node_modules/shelljs/src/find.js +0 -61
  2003. package/examples/starter/node_modules/shelljs/src/grep.js +0 -73
  2004. package/examples/starter/node_modules/shelljs/src/head.js +0 -107
  2005. package/examples/starter/node_modules/shelljs/src/ln.js +0 -73
  2006. package/examples/starter/node_modules/shelljs/src/ls.js +0 -141
  2007. package/examples/starter/node_modules/shelljs/src/mkdir.js +0 -100
  2008. package/examples/starter/node_modules/shelljs/src/mv.js +0 -118
  2009. package/examples/starter/node_modules/shelljs/src/popd.js +0 -1
  2010. package/examples/starter/node_modules/shelljs/src/pushd.js +0 -1
  2011. package/examples/starter/node_modules/shelljs/src/pwd.js +0 -16
  2012. package/examples/starter/node_modules/shelljs/src/rm.js +0 -201
  2013. package/examples/starter/node_modules/shelljs/src/sed.js +0 -87
  2014. package/examples/starter/node_modules/shelljs/src/set.js +0 -56
  2015. package/examples/starter/node_modules/shelljs/src/sort.js +0 -97
  2016. package/examples/starter/node_modules/shelljs/src/tail.js +0 -80
  2017. package/examples/starter/node_modules/shelljs/src/tempdir.js +0 -75
  2018. package/examples/starter/node_modules/shelljs/src/test.js +0 -85
  2019. package/examples/starter/node_modules/shelljs/src/to.js +0 -37
  2020. package/examples/starter/node_modules/shelljs/src/toEnd.js +0 -36
  2021. package/examples/starter/node_modules/shelljs/src/touch.js +0 -111
  2022. package/examples/starter/node_modules/shelljs/src/uniq.js +0 -92
  2023. package/examples/starter/node_modules/shelljs/src/which.js +0 -118
  2024. package/examples/starter/node_modules/shelljs.exec/.editorconfig +0 -10
  2025. package/examples/starter/node_modules/shelljs.exec/.eslintrc.json +0 -37
  2026. package/examples/starter/node_modules/shelljs.exec/.travis.yml +0 -9
  2027. package/examples/starter/node_modules/shelljs.exec/LICENSE.md +0 -24
  2028. package/examples/starter/node_modules/shelljs.exec/README.md +0 -115
  2029. package/examples/starter/node_modules/shelljs.exec/appveyor.yml +0 -17
  2030. package/examples/starter/node_modules/shelljs.exec/benchmark-results-raw.txt +0 -74
  2031. package/examples/starter/node_modules/shelljs.exec/images/fast.png +0 -0
  2032. package/examples/starter/node_modules/shelljs.exec/images/linux.png +0 -0
  2033. package/examples/starter/node_modules/shelljs.exec/images/slow.png +0 -0
  2034. package/examples/starter/node_modules/shelljs.exec/images/table-linux.odt +0 -0
  2035. package/examples/starter/node_modules/shelljs.exec/images/table-windows.odt +0 -0
  2036. package/examples/starter/node_modules/shelljs.exec/images/windows.png +0 -0
  2037. package/examples/starter/node_modules/shelljs.exec/index.js +0 -35
  2038. package/examples/starter/node_modules/shelljs.exec/js/normaliseOptions/defaultOptions.js +0 -6
  2039. package/examples/starter/node_modules/shelljs.exec/js/normaliseOptions/index.js +0 -34
  2040. package/examples/starter/node_modules/shelljs.exec/js/normaliseOptions/index.spec.js +0 -68
  2041. package/examples/starter/node_modules/shelljs.exec/package.json +0 -58
  2042. package/examples/starter/node_modules/shelljs.exec/test/_js/testImports.js +0 -37
  2043. package/examples/starter/node_modules/shelljs.exec/test/benchmarks/benchmarks.spec.js +0 -288
  2044. package/examples/starter/node_modules/shelljs.exec/test/benchmarks/file1 +0 -1
  2045. package/examples/starter/node_modules/shelljs.exec/test/benchmarks/file2 +0 -1
  2046. package/examples/starter/node_modules/shelljs.exec/test/mocha.opts +0 -6
  2047. package/examples/starter/node_modules/shelljs.exec/test/shelljs.exec/shelljs.exec.spec.js +0 -176
  2048. package/examples/starter/node_modules/supports-color/browser.js +0 -5
  2049. package/examples/starter/node_modules/supports-color/index.js +0 -135
  2050. package/examples/starter/node_modules/supports-color/license +0 -9
  2051. package/examples/starter/node_modules/supports-color/package.json +0 -53
  2052. package/examples/starter/node_modules/supports-color/readme.md +0 -76
  2053. package/examples/starter/node_modules/supports-preserve-symlinks-flag/.eslintrc +0 -14
  2054. package/examples/starter/node_modules/supports-preserve-symlinks-flag/.github/FUNDING.yml +0 -12
  2055. package/examples/starter/node_modules/supports-preserve-symlinks-flag/.nycrc +0 -9
  2056. package/examples/starter/node_modules/supports-preserve-symlinks-flag/CHANGELOG.md +0 -22
  2057. package/examples/starter/node_modules/supports-preserve-symlinks-flag/LICENSE +0 -21
  2058. package/examples/starter/node_modules/supports-preserve-symlinks-flag/README.md +0 -42
  2059. package/examples/starter/node_modules/supports-preserve-symlinks-flag/browser.js +0 -3
  2060. package/examples/starter/node_modules/supports-preserve-symlinks-flag/index.js +0 -9
  2061. package/examples/starter/node_modules/supports-preserve-symlinks-flag/package.json +0 -70
  2062. package/examples/starter/node_modules/supports-preserve-symlinks-flag/test/index.js +0 -29
  2063. package/examples/starter/node_modules/to-regex-range/LICENSE +0 -21
  2064. package/examples/starter/node_modules/to-regex-range/README.md +0 -305
  2065. package/examples/starter/node_modules/to-regex-range/index.js +0 -288
  2066. package/examples/starter/node_modules/to-regex-range/package.json +0 -88
  2067. package/registry.d.ts +0 -11
@@ -1,942 +0,0 @@
1
- # Change Log
2
-
3
- ## [Unreleased](https://github.com/shelljs/shelljs/tree/HEAD)
4
-
5
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.8.2...HEAD)
6
-
7
- **Closed issues:**
8
-
9
- - Shelljs print stderr to console even if exec-only "silent" is true [\#905](https://github.com/shelljs/shelljs/issues/905)
10
- - refactor: remove common.state.tempDir [\#902](https://github.com/shelljs/shelljs/issues/902)
11
- - Can't suppress stdout for echo [\#899](https://github.com/shelljs/shelljs/issues/899)
12
- - exec\(\) doesn't apply the arguments correctly [\#895](https://github.com/shelljs/shelljs/issues/895)
13
- - Travis CI currently broken [\#893](https://github.com/shelljs/shelljs/issues/893)
14
- - shell.exec\('npm pack'\) painfully slow [\#885](https://github.com/shelljs/shelljs/issues/885)
15
- - shelljs.exec cannot find app.asar/node\_modules/shelljs/src/exec-child.js [\#881](https://github.com/shelljs/shelljs/issues/881)
16
- - test infra: mocks and skipOnWin conflict [\#862](https://github.com/shelljs/shelljs/issues/862)
17
- - Support for shell function completion on IDE [\#859](https://github.com/shelljs/shelljs/issues/859)
18
- - echo command shows options in stdout [\#855](https://github.com/shelljs/shelljs/issues/855)
19
- - silent does not always work [\#851](https://github.com/shelljs/shelljs/issues/851)
20
- - Appveyor installs the latest npm, instead of the latest compatible npm [\#844](https://github.com/shelljs/shelljs/issues/844)
21
- - Force symbolic link \(ln -sf\) does not overwrite/recreate existing destination [\#830](https://github.com/shelljs/shelljs/issues/830)
22
- - inconsistent result when trying to echo to a file [\#798](https://github.com/shelljs/shelljs/issues/798)
23
- - Prevent require\(\)ing executable-only files [\#789](https://github.com/shelljs/shelljs/issues/789)
24
- - Cannot set property to of \[object String\] which has only a getter [\#752](https://github.com/shelljs/shelljs/issues/752)
25
- - which\(\) should check executability before returning a value [\#657](https://github.com/shelljs/shelljs/issues/657)
26
- - Bad encoding experience [\#456](https://github.com/shelljs/shelljs/issues/456)
27
- - phpcs very slow [\#440](https://github.com/shelljs/shelljs/issues/440)
28
- - Error shown when triggering a sigint during shelljs.exec if process.on sigint is defined [\#254](https://github.com/shelljs/shelljs/issues/254)
29
- - `.to\(file\)` does not mute STDIO output [\#146](https://github.com/shelljs/shelljs/issues/146)
30
- - Escaping shell arguments to exec\(\) [\#143](https://github.com/shelljs/shelljs/issues/143)
31
- - Allow multiple string arguments for exec\(\) [\#103](https://github.com/shelljs/shelljs/issues/103)
32
- - cp does not recursively copy from readonly location [\#98](https://github.com/shelljs/shelljs/issues/98)
33
- - Handling permissions errors on file I/O [\#64](https://github.com/shelljs/shelljs/issues/64)
34
-
35
- **Merged pull requests:**
36
-
37
- - refactor: don't expose tempdir in common.state [\#903](https://github.com/shelljs/shelljs/pull/903) ([nfischer](https://github.com/nfischer))
38
- - chore\(ci\): fix codecov on travis [\#897](https://github.com/shelljs/shelljs/pull/897) ([nfischer](https://github.com/nfischer))
39
- - chore\(npm\): add ci-or-install script [\#896](https://github.com/shelljs/shelljs/pull/896) ([nfischer](https://github.com/nfischer))
40
- - Fix silent exec [\#892](https://github.com/shelljs/shelljs/pull/892) ([nfischer](https://github.com/nfischer))
41
- - chore\(appveyor\): run entire test matrix [\#886](https://github.com/shelljs/shelljs/pull/886) ([nfischer](https://github.com/nfischer))
42
- - docs: remove gitter badge [\#880](https://github.com/shelljs/shelljs/pull/880) ([nfischer](https://github.com/nfischer))
43
- - grep includes the i flag [\#876](https://github.com/shelljs/shelljs/pull/876) ([ppsleep](https://github.com/ppsleep))
44
- - Fix\(which\): match only executable files \(\#657\) [\#874](https://github.com/shelljs/shelljs/pull/874) ([termosa](https://github.com/termosa))
45
- - chore: rename some tests [\#871](https://github.com/shelljs/shelljs/pull/871) ([nfischer](https://github.com/nfischer))
46
- - Fix cp from readonly source [\#870](https://github.com/shelljs/shelljs/pull/870) ([nfischer](https://github.com/nfischer))
47
- - chore: bump dev dependencies and add package-lock [\#864](https://github.com/shelljs/shelljs/pull/864) ([nfischer](https://github.com/nfischer))
48
- - fix\(mocks\): fix conflict between mocks and skip [\#863](https://github.com/shelljs/shelljs/pull/863) ([nfischer](https://github.com/nfischer))
49
- - chore: output npm version in travis [\#850](https://github.com/shelljs/shelljs/pull/850) ([nfischer](https://github.com/nfischer))
50
- - Prevent require-ing bin/shjs [\#848](https://github.com/shelljs/shelljs/pull/848) ([freitagbr](https://github.com/freitagbr))
51
- - chore\(appveyor\): do not use latest npm [\#847](https://github.com/shelljs/shelljs/pull/847) ([nfischer](https://github.com/nfischer))
52
- - chore: update shelljs-release version [\#846](https://github.com/shelljs/shelljs/pull/846) ([nfischer](https://github.com/nfischer))
53
-
54
- ## [v0.8.2](https://github.com/shelljs/shelljs/tree/v0.8.2) (2018-05-08)
55
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.8.1...v0.8.2)
56
-
57
- **Closed issues:**
58
-
59
- - High severity vulnerability in shelljs 0.8.1 [\#842](https://github.com/shelljs/shelljs/issues/842)
60
- - Add test for ls\(\) on a symlink to a directory [\#795](https://github.com/shelljs/shelljs/issues/795)
61
- - Harden shell.exec by writing the child process in a source file [\#782](https://github.com/shelljs/shelljs/issues/782)
62
- - shell.exec\(\) doesn't respond correctly to config.fatal = true [\#735](https://github.com/shelljs/shelljs/issues/735)
63
- - Merge 'exec: internal error' with ShellJSInternalError [\#734](https://github.com/shelljs/shelljs/issues/734)
64
- - exec returning null from command [\#724](https://github.com/shelljs/shelljs/issues/724)
65
- - Only Get Stderr from Exec [\#371](https://github.com/shelljs/shelljs/issues/371)
66
- - Execute child.stdout.on before child.on\("exit"\) [\#224](https://github.com/shelljs/shelljs/issues/224)
67
-
68
- **Merged pull requests:**
69
-
70
- - Workaround codecov bug of miscalculation of coverage \(\#795\) [\#838](https://github.com/shelljs/shelljs/pull/838) ([dwi2](https://github.com/dwi2))
71
- - Update doc comments and regenerate README.md. [\#825](https://github.com/shelljs/shelljs/pull/825) ([Zearin](https://github.com/Zearin))
72
- - chore: update contributing guidelines [\#817](https://github.com/shelljs/shelljs/pull/817) ([nfischer](https://github.com/nfischer))
73
- - chore\(lint\): don't allow excess trailing newlines [\#816](https://github.com/shelljs/shelljs/pull/816) ([nfischer](https://github.com/nfischer))
74
- - Remove separate "internal error" from exec [\#802](https://github.com/shelljs/shelljs/pull/802) ([freitagbr](https://github.com/freitagbr))
75
-
76
- ## [v0.8.1](https://github.com/shelljs/shelljs/tree/v0.8.1) (2018-01-20)
77
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.8.0...v0.8.1)
78
-
79
- **Closed issues:**
80
-
81
- - Exec failing with internal error when piping large output [\#818](https://github.com/shelljs/shelljs/issues/818)
82
-
83
- **Merged pull requests:**
84
-
85
- - Revert "refactor\(exec\): remove paramsFile \(\#807\)" [\#819](https://github.com/shelljs/shelljs/pull/819) ([nfischer](https://github.com/nfischer))
86
-
87
- ## [v0.8.0](https://github.com/shelljs/shelljs/tree/v0.8.0) (2018-01-12)
88
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.7.8...v0.8.0)
89
-
90
- **Closed issues:**
91
-
92
- - Snyk vulnerability DB reporting command injection vulnerability in ShellJS [\#810](https://github.com/shelljs/shelljs/issues/810)
93
- - chore: upgrade nyc [\#803](https://github.com/shelljs/shelljs/issues/803)
94
- - Update CI to use Node v9 [\#799](https://github.com/shelljs/shelljs/issues/799)
95
- - Link to FAQ wiki section in our issue template [\#787](https://github.com/shelljs/shelljs/issues/787)
96
- - Is it possible to get a js library\(file\) for ShellJS [\#776](https://github.com/shelljs/shelljs/issues/776)
97
- - 48, [\#774](https://github.com/shelljs/shelljs/issues/774)
98
- - 47 [\#773](https://github.com/shelljs/shelljs/issues/773)
99
- - Exec function calls JSON.stringify on command [\#772](https://github.com/shelljs/shelljs/issues/772)
100
- - getting different result from terminal and with shelljs [\#769](https://github.com/shelljs/shelljs/issues/769)
101
- - test\(\) does not support -w and -x options [\#768](https://github.com/shelljs/shelljs/issues/768)
102
- - Snyk "high severity" issue [\#766](https://github.com/shelljs/shelljs/issues/766)
103
- - Snyk "high security [\#765](https://github.com/shelljs/shelljs/issues/765)
104
- - ShellJS doesn't respect NPM Registry being set outside of it [\#761](https://github.com/shelljs/shelljs/issues/761)
105
- - Run second shell script [\#756](https://github.com/shelljs/shelljs/issues/756)
106
- - shelljs seems NOT compatible with nexe under CentOS 6.5 [\#754](https://github.com/shelljs/shelljs/issues/754)
107
- - Feature request: pushd/popd -q option [\#753](https://github.com/shelljs/shelljs/issues/753)
108
- - cat doesn't support '-n' option [\#750](https://github.com/shelljs/shelljs/issues/750)
109
- - shelljs run xcodebuild error [\#749](https://github.com/shelljs/shelljs/issues/749)
110
- - Add wrappers around fs.statSync and fs.lstatSync [\#745](https://github.com/shelljs/shelljs/issues/745)
111
- - Improve coverage for exec\(\) [\#742](https://github.com/shelljs/shelljs/issues/742)
112
- - Improve coverage for head\(\) [\#741](https://github.com/shelljs/shelljs/issues/741)
113
- - shelljs is no longer used in PDF.js [\#737](https://github.com/shelljs/shelljs/issues/737)
114
- - ls doesn't follow links to directories [\#733](https://github.com/shelljs/shelljs/issues/733)
115
- - Add test for `ls regular-file.txt` [\#732](https://github.com/shelljs/shelljs/issues/732)
116
- - Clean up common tests [\#714](https://github.com/shelljs/shelljs/issues/714)
117
- - Cant get encoding buffer to work on exec [\#675](https://github.com/shelljs/shelljs/issues/675)
118
- - Set up Codecov for the project [\#671](https://github.com/shelljs/shelljs/issues/671)
119
- - ShellJS: internal error Error: EBUSY: resource busy or locked, lstat 'C:\pagefile.sys' [\#514](https://github.com/shelljs/shelljs/issues/514)
120
- - Feature request: provide a way to skip option parsing [\#778](https://github.com/shelljs/shelljs/issues/778)
121
- - Switch to os.homedir\(\) when we move to v4+ [\#683](https://github.com/shelljs/shelljs/issues/683)
122
- - Drop support for v0.12 [\#647](https://github.com/shelljs/shelljs/issues/647)
123
- - feature: echo -n [\#559](https://github.com/shelljs/shelljs/issues/559)
124
- - Don't kill the node process upon unexpected error [\#483](https://github.com/shelljs/shelljs/issues/483)
125
- - Echo doesn't return value ending in a trailing newline [\#476](https://github.com/shelljs/shelljs/issues/476)
126
- - Synchronous exec stalls permenantly when there is an error/w the shell [\#7](https://github.com/shelljs/shelljs/issues/7)
127
-
128
- **Merged pull requests:**
129
-
130
- - docs: announce plugin API [\#812](https://github.com/shelljs/shelljs/pull/812) ([nfischer](https://github.com/nfischer))
131
- - chore: update CI to Node v9 [\#811](https://github.com/shelljs/shelljs/pull/811) ([nfischer](https://github.com/nfischer))
132
- - refactor\(exec\): remove paramsFile [\#807](https://github.com/shelljs/shelljs/pull/807) ([nfischer](https://github.com/nfischer))
133
- - chore: update nyc dependency [\#805](https://github.com/shelljs/shelljs/pull/805) ([nfischer](https://github.com/nfischer))
134
- - refactor: harden plugins against unknown options [\#804](https://github.com/shelljs/shelljs/pull/804) ([nfischer](https://github.com/nfischer))
135
- - chore\(eslint\): use words instead of numbers [\#797](https://github.com/shelljs/shelljs/pull/797) ([nfischer](https://github.com/nfischer))
136
- - Add note to issue template about FAQ [\#794](https://github.com/shelljs/shelljs/pull/794) ([freitagbr](https://github.com/freitagbr))
137
- - Remove codeFile parameter [\#791](https://github.com/shelljs/shelljs/pull/791) ([nfischer](https://github.com/nfischer))
138
- - Use execFileSync to launch child process [\#790](https://github.com/shelljs/shelljs/pull/790) ([nfischer](https://github.com/nfischer))
139
- - refactor\(exec\): move child process to source file [\#786](https://github.com/shelljs/shelljs/pull/786) ([nfischer](https://github.com/nfischer))
140
- - Remove unnecessary shell.error checks from common tests [\#785](https://github.com/shelljs/shelljs/pull/785) ([freitagbr](https://github.com/freitagbr))
141
- - Add a test for ls for a single file [\#784](https://github.com/shelljs/shelljs/pull/784) ([freitagbr](https://github.com/freitagbr))
142
- - Wrap fs.statSync and fs.lstatSync [\#783](https://github.com/shelljs/shelljs/pull/783) ([freitagbr](https://github.com/freitagbr))
143
- - chore: set AVA options [\#780](https://github.com/shelljs/shelljs/pull/780) ([nfischer](https://github.com/nfischer))
144
- - chore: clean up refs to unsupported node versions [\#779](https://github.com/shelljs/shelljs/pull/779) ([nfischer](https://github.com/nfischer))
145
- - Added `-q` \(quiet\) option to `push`, `popd`, `dirs` functions. [\#777](https://github.com/shelljs/shelljs/pull/777) ([alexreg](https://github.com/alexreg))
146
- - feat\(cat\): number output lines \(\#750\) [\#775](https://github.com/shelljs/shelljs/pull/775) ([gcca](https://github.com/gcca))
147
- - refactor\(test\): update AVA and refactor tests [\#760](https://github.com/shelljs/shelljs/pull/760) ([nfischer](https://github.com/nfischer))
148
- - chore: add skipOnWin and skipOnUnix test helpers [\#746](https://github.com/shelljs/shelljs/pull/746) ([nfischer](https://github.com/nfischer))
149
- - test\(exec\): add tests for coverage [\#744](https://github.com/shelljs/shelljs/pull/744) ([nfischer](https://github.com/nfischer))
150
- - test\(head\): improve coverage [\#743](https://github.com/shelljs/shelljs/pull/743) ([nfischer](https://github.com/nfischer))
151
- - Remove PDF.js mention from README.md [\#738](https://github.com/shelljs/shelljs/pull/738) ([voy](https://github.com/voy))
152
- - Provide an API to pass parameters which resemble options [\#792](https://github.com/shelljs/shelljs/pull/792) ([nfischer](https://github.com/nfischer))
153
- - Fix ls not following links to directories by default [\#764](https://github.com/shelljs/shelljs/pull/764) ([freitagbr](https://github.com/freitagbr))
154
- - Add "encoding" option to exec [\#763](https://github.com/shelljs/shelljs/pull/763) ([freitagbr](https://github.com/freitagbr))
155
- - Merge dev into master [\#731](https://github.com/shelljs/shelljs/pull/731) ([freitagbr](https://github.com/freitagbr))
156
- - Deprecate common.getUserHome, advise using os.homedir instead [\#725](https://github.com/shelljs/shelljs/pull/725) ([freitagbr](https://github.com/freitagbr))
157
- - Echo test mocks [\#708](https://github.com/shelljs/shelljs/pull/708) ([freitagbr](https://github.com/freitagbr))
158
- - Safely exit by throwing an error [\#546](https://github.com/shelljs/shelljs/pull/546) ([freitagbr](https://github.com/freitagbr))
159
- - chore\(make\): depreciate shelljs/make [\#431](https://github.com/shelljs/shelljs/pull/431) ([ariporad](https://github.com/ariporad))
160
-
161
- ## [v0.7.8](https://github.com/shelljs/shelljs/tree/v0.7.8) (2017-06-07)
162
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.7.7...v0.7.8)
163
-
164
- **Closed issues:**
165
-
166
- - Add node v8 to CI [\#729](https://github.com/shelljs/shelljs/issues/729)
167
- - Exec not working in Electron ! [\#726](https://github.com/shelljs/shelljs/issues/726)
168
- - is rechoir used anywhere? [\#723](https://github.com/shelljs/shelljs/issues/723)
169
- - ShellJS: internal error on shelljs.mkdir\('myFile/myDir'\) [\#720](https://github.com/shelljs/shelljs/issues/720)
170
- - Can't make sed perform global replace [\#719](https://github.com/shelljs/shelljs/issues/719)
171
- - grep: option not recognized: l [\#717](https://github.com/shelljs/shelljs/issues/717)
172
- - Problems getting code, stdout, stderr [\#715](https://github.com/shelljs/shelljs/issues/715)
173
- - Copying hidden files fails on Windows 10 [\#711](https://github.com/shelljs/shelljs/issues/711)
174
- - How am I suppose to handle errors with ShellJS? [\#707](https://github.com/shelljs/shelljs/issues/707)
175
- - use cp\('-r', './src', './dist'\) bug [\#705](https://github.com/shelljs/shelljs/issues/705)
176
- - Way to ignore files in globs. [\#699](https://github.com/shelljs/shelljs/issues/699)
177
- - Buffer constructor is deprecated [\#694](https://github.com/shelljs/shelljs/issues/694)
178
- - source command not working via exec method. [\#693](https://github.com/shelljs/shelljs/issues/693)
179
- - Would you be interested in a PR for `open`? [\#692](https://github.com/shelljs/shelljs/issues/692)
180
- - Get rid of common.platform in favor of process.platform [\#670](https://github.com/shelljs/shelljs/issues/670)
181
- - Passing empty string to cp throws internal error [\#664](https://github.com/shelljs/shelljs/issues/664)
182
- - Why does sed split files into an array, call replace on each line and rejoin? [\#645](https://github.com/shelljs/shelljs/issues/645)
183
- - feat: cp & mv should not overwrite recently created files [\#631](https://github.com/shelljs/shelljs/issues/631)
184
- - Echo tests unnecessarily run tests in own process [\#622](https://github.com/shelljs/shelljs/issues/622)
185
- - rm -rf on a symbolic link to a dir deletes its contents [\#587](https://github.com/shelljs/shelljs/issues/587)
186
- - "Cannot extract package" with node-webkit [\#181](https://github.com/shelljs/shelljs/issues/181)
187
- - EBADF, bad file descriptor [\#180](https://github.com/shelljs/shelljs/issues/180)
188
-
189
- **Merged pull requests:**
190
-
191
- - Add node 8 to CI [\#730](https://github.com/shelljs/shelljs/pull/730) ([freitagbr](https://github.com/freitagbr))
192
- - fix\(mkdir\): improve error handling around files [\#721](https://github.com/shelljs/shelljs/pull/721) ([nfischer](https://github.com/nfischer))
193
- - Properly handle directories as arguments [\#713](https://github.com/shelljs/shelljs/pull/713) ([nfischer](https://github.com/nfischer))
194
- - Add common.buffer [\#710](https://github.com/shelljs/shelljs/pull/710) ([freitagbr](https://github.com/freitagbr))
195
- - Fix common.expand error [\#709](https://github.com/shelljs/shelljs/pull/709) ([freitagbr](https://github.com/freitagbr))
196
- - refactor: remove unnecessary common.js imports [\#703](https://github.com/shelljs/shelljs/pull/703) ([nfischer](https://github.com/nfischer))
197
- - Fix \#631 throw error when overwriting recently created file [\#702](https://github.com/shelljs/shelljs/pull/702) ([uttpal](https://github.com/uttpal))
198
- - Small clarification of verbose flag [\#691](https://github.com/shelljs/shelljs/pull/691) ([zommerfelds](https://github.com/zommerfelds))
199
- - fix\(grep, sed, sort, uniq\): Split only on newline characters [\#690](https://github.com/shelljs/shelljs/pull/690) ([freitagbr](https://github.com/freitagbr))
200
- - Refactor: Use process.platform across codebase [\#689](https://github.com/shelljs/shelljs/pull/689) ([freitagbr](https://github.com/freitagbr))
201
- - Remove contents of symlink to dir with rm -rf [\#688](https://github.com/shelljs/shelljs/pull/688) ([freitagbr](https://github.com/freitagbr))
202
- - Echo stdout [\#677](https://github.com/shelljs/shelljs/pull/677) ([nfischer](https://github.com/nfischer))
203
-
204
- ## [v0.7.7](https://github.com/shelljs/shelljs/tree/v0.7.7) (2017-03-09)
205
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.7.6...v0.7.7)
206
-
207
- **Closed issues:**
208
-
209
- - Error output should be consistent across all platforms. [\#681](https://github.com/shelljs/shelljs/issues/681)
210
- - \*CRITICAL data loss\* shell.cp\(\) Content of file is erased when trying to copy it to the folder it already belongs to [\#678](https://github.com/shelljs/shelljs/issues/678)
211
- - Use with webpack broken in 0.7.6 [\#667](https://github.com/shelljs/shelljs/issues/667)
212
- - Difference between bash ls -R and ShellJS ls -R with symlinks [\#666](https://github.com/shelljs/shelljs/issues/666)
213
- - Refactor which\(\) \(too many repeated code blocks\) [\#656](https://github.com/shelljs/shelljs/issues/656)
214
- - find\(\) raises error when unable to find any files matching, expected to return empty array. [\#653](https://github.com/shelljs/shelljs/issues/653)
215
- - Reformat the markdown in RELEASE.md [\#642](https://github.com/shelljs/shelljs/issues/642)
216
- - rm -rf doesn't work if the directory contains an asar archive in Electron [\#618](https://github.com/shelljs/shelljs/issues/618)
217
- - Add support for other file types in rm [\#617](https://github.com/shelljs/shelljs/issues/617)
218
- - Feature request: ls -L option [\#563](https://github.com/shelljs/shelljs/issues/563)
219
- - How to send SIGINT signal to child process launched with exec [\#518](https://github.com/shelljs/shelljs/issues/518)
220
- - feature request: option to add node\_modules to the path for shelljs scripts [\#469](https://github.com/shelljs/shelljs/issues/469)
221
- - high cpu usage during synchronous exec [\#167](https://github.com/shelljs/shelljs/issues/167)
222
-
223
- **Merged pull requests:**
224
-
225
- - Add support for removing fifos [\#687](https://github.com/shelljs/shelljs/pull/687) ([freitagbr](https://github.com/freitagbr))
226
- - chore: add codecov script to appveyor CI [\#686](https://github.com/shelljs/shelljs/pull/686) ([nfischer](https://github.com/nfischer))
227
- - Refactor tests to improve readability [\#685](https://github.com/shelljs/shelljs/pull/685) ([nfischer](https://github.com/nfischer))
228
- - fix: convert error output to be consistent cross-platform [\#684](https://github.com/shelljs/shelljs/pull/684) ([nfischer](https://github.com/nfischer))
229
- - chore: add codecov [\#682](https://github.com/shelljs/shelljs/pull/682) ([nfischer](https://github.com/nfischer))
230
- - Fix cp overwriting identical files [\#679](https://github.com/shelljs/shelljs/pull/679) ([freitagbr](https://github.com/freitagbr))
231
- - Modified glob pattern. Fixes \#666 [\#676](https://github.com/shelljs/shelljs/pull/676) ([frandiox](https://github.com/frandiox))
232
- - refactor\(parseOptions\): better handle errors [\#674](https://github.com/shelljs/shelljs/pull/674) ([nfischer](https://github.com/nfischer))
233
- - test: add misc. tests to improve coverage [\#673](https://github.com/shelljs/shelljs/pull/673) ([nfischer](https://github.com/nfischer))
234
- - test: don't count hard-to-test lines for coverage [\#672](https://github.com/shelljs/shelljs/pull/672) ([nfischer](https://github.com/nfischer))
235
- - fix: switch commands.json -\> commands.js [\#668](https://github.com/shelljs/shelljs/pull/668) ([nfischer](https://github.com/nfischer))
236
- - ls -L \(follow symlinks\) [\#665](https://github.com/shelljs/shelljs/pull/665) ([frandiox](https://github.com/frandiox))
237
- - docs\(chmod\): document `options` argument [\#663](https://github.com/shelljs/shelljs/pull/663) ([gkalpak](https://github.com/gkalpak))
238
- - docs: clean up RELEASE.md [\#662](https://github.com/shelljs/shelljs/pull/662) ([nfischer](https://github.com/nfischer))
239
- - docs: miscellaneous README changes [\#661](https://github.com/shelljs/shelljs/pull/661) ([nfischer](https://github.com/nfischer))
240
- - Fix typo in README [\#660](https://github.com/shelljs/shelljs/pull/660) ([faheel](https://github.com/faheel))
241
- - refactor: reduce repeated code in which\(\) [\#659](https://github.com/shelljs/shelljs/pull/659) ([nfischer](https://github.com/nfischer))
242
- - feature: add -a option for which command [\#655](https://github.com/shelljs/shelljs/pull/655) ([termosa](https://github.com/termosa))
243
- - Fix find ENOENT [\#654](https://github.com/shelljs/shelljs/pull/654) ([freitagbr](https://github.com/freitagbr))
244
- - Safely exit by throwing an error [\#649](https://github.com/shelljs/shelljs/pull/649) ([freitagbr](https://github.com/freitagbr))
245
- - Chore drop 0.12 [\#648](https://github.com/shelljs/shelljs/pull/648) ([nfischer](https://github.com/nfischer))
246
- - chore\(lint\): Enforce a trailing comma for multi-line [\#646](https://github.com/shelljs/shelljs/pull/646) ([nfischer](https://github.com/nfischer))
247
- - docs\(release\): use bulleted list [\#643](https://github.com/shelljs/shelljs/pull/643) ([freitagbr](https://github.com/freitagbr))
248
-
249
- ## [v0.7.6](https://github.com/shelljs/shelljs/tree/v0.7.6) (2017-01-08)
250
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.7.5...v0.7.6)
251
-
252
- **Closed issues:**
253
-
254
- - unable to execute ionic command with shell js [\#640](https://github.com/shelljs/shelljs/issues/640)
255
- - How to increase ShellJS buffer size? [\#639](https://github.com/shelljs/shelljs/issues/639)
256
- - mkdir fails with non-normalized path [\#634](https://github.com/shelljs/shelljs/issues/634)
257
- - Move execPath into common [\#633](https://github.com/shelljs/shelljs/issues/633)
258
- - QUESTION: Feedback while an operation is running? [\#629](https://github.com/shelljs/shelljs/issues/629)
259
- - Test setup/cleanup is broken [\#621](https://github.com/shelljs/shelljs/issues/621)
260
- - Ignore temp directories when running lint [\#620](https://github.com/shelljs/shelljs/issues/620)
261
- - parseOptions should throw an error if the option string doesn't start with '-' [\#614](https://github.com/shelljs/shelljs/issues/614)
262
- - chore: LGTM.co is gone [\#595](https://github.com/shelljs/shelljs/issues/595)
263
- - refactor: objectAssign should refer to Object.assign if it exists, or the internal polyfill otherwise [\#592](https://github.com/shelljs/shelljs/issues/592)
264
- - parseOptions: allow a way to keep errors silent \(exception only\) [\#591](https://github.com/shelljs/shelljs/issues/591)
265
- - \[Question\] commands with multiple options / arguments? [\#589](https://github.com/shelljs/shelljs/issues/589)
266
- - feature: GNU Parallel [\#585](https://github.com/shelljs/shelljs/issues/585)
267
- - write to file [\#568](https://github.com/shelljs/shelljs/issues/568)
268
- - Cannot figure out how to disable globbing for rm [\#567](https://github.com/shelljs/shelljs/issues/567)
269
- - Switch to the ava test framework [\#560](https://github.com/shelljs/shelljs/issues/560)
270
- - Option not recognized [\#556](https://github.com/shelljs/shelljs/issues/556)
271
- - chore: add @freitagbr to LGTM maintainers [\#552](https://github.com/shelljs/shelljs/issues/552)
272
- - chore: set up dev branch [\#548](https://github.com/shelljs/shelljs/issues/548)
273
- - bug: cp\(\) doesn't always copy everything [\#547](https://github.com/shelljs/shelljs/issues/547)
274
- - User-friendly lint command [\#544](https://github.com/shelljs/shelljs/issues/544)
275
- - Lint warning [\#542](https://github.com/shelljs/shelljs/issues/542)
276
- - chore: add nodejs v7 to CI [\#537](https://github.com/shelljs/shelljs/issues/537)
277
- - error.code is not always available [\#536](https://github.com/shelljs/shelljs/issues/536)
278
- - Add shx as a dependency for testing [\#525](https://github.com/shelljs/shelljs/issues/525)
279
- - Feature request: allow `common.error\(\)` to optionally not insert a prefix and optionally not print to console [\#523](https://github.com/shelljs/shelljs/issues/523)
280
- - Feature request: Add "shelljs.unlink" [\#519](https://github.com/shelljs/shelljs/issues/519)
281
- - Sed should allow a replacement string to contain `\1` for match groups [\#507](https://github.com/shelljs/shelljs/issues/507)
282
- - Usage with neodoc [\#445](https://github.com/shelljs/shelljs/issues/445)
283
- - \[ Feature idea \] synchronous sleep command [\#441](https://github.com/shelljs/shelljs/issues/441)
284
- - Improve test coverage [\#347](https://github.com/shelljs/shelljs/issues/347)
285
- - Add a way to prevent shell-expansion on commands \(this issue is not for exec\) [\#345](https://github.com/shelljs/shelljs/issues/345)
286
- - Chown [\#183](https://github.com/shelljs/shelljs/issues/183)
287
- - spawn EMFILE [\#81](https://github.com/shelljs/shelljs/issues/81)
288
- - Rewrite exec using execsync-ng \(which uses node-ffi\) [\#66](https://github.com/shelljs/shelljs/issues/66)
289
- - `exec` gets stuck on my Debian box [\#51](https://github.com/shelljs/shelljs/issues/51)
290
- - 100% cpu usage when a nodejs script goes side ways executing a command. [\#5](https://github.com/shelljs/shelljs/issues/5)
291
-
292
- **Merged pull requests:**
293
-
294
- - refactor: add config.reset\(\) and .resetForTesting\(\) [\#641](https://github.com/shelljs/shelljs/pull/641) ([nfischer](https://github.com/nfischer))
295
- - chore: set up test coverage [\#638](https://github.com/shelljs/shelljs/pull/638) ([nfischer](https://github.com/nfischer))
296
- - refactor: create common.execPath [\#636](https://github.com/shelljs/shelljs/pull/636) ([nfischer](https://github.com/nfischer))
297
- - fix: allow non-normalized paths as input to mkdir [\#635](https://github.com/shelljs/shelljs/pull/635) ([nfischer](https://github.com/nfischer))
298
- - Finalize moving to ava [\#630](https://github.com/shelljs/shelljs/pull/630) ([freitagbr](https://github.com/freitagbr))
299
- - test: refactor pushd tests to AVA [\#627](https://github.com/shelljs/shelljs/pull/627) ([nfischer](https://github.com/nfischer))
300
- - test: refactor popd tests to AVA [\#626](https://github.com/shelljs/shelljs/pull/626) ([nfischer](https://github.com/nfischer))
301
- - test: refactor shjs tests to AVA [\#625](https://github.com/shelljs/shelljs/pull/625) ([nfischer](https://github.com/nfischer))
302
- - test: remove tests for make \(deprecated\) [\#624](https://github.com/shelljs/shelljs/pull/624) ([nfischer](https://github.com/nfischer))
303
- - Ignore test temp directories during linting [\#623](https://github.com/shelljs/shelljs/pull/623) ([freitagbr](https://github.com/freitagbr))
304
- - refactor: list all commands in commands.json [\#616](https://github.com/shelljs/shelljs/pull/616) ([nfischer](https://github.com/nfischer))
305
- - Throw an error if the options string does not start with '-' [\#615](https://github.com/shelljs/shelljs/pull/615) ([freitagbr](https://github.com/freitagbr))
306
- - chore: switch to files attribute from npmignore [\#613](https://github.com/shelljs/shelljs/pull/613) ([nfischer](https://github.com/nfischer))
307
- - test: refactor 'test' command tests to AVA [\#612](https://github.com/shelljs/shelljs/pull/612) ([nfischer](https://github.com/nfischer))
308
- - test: refactor find tests to AVA [\#611](https://github.com/shelljs/shelljs/pull/611) ([nfischer](https://github.com/nfischer))
309
- - test: refactor ln tests to AVA [\#610](https://github.com/shelljs/shelljs/pull/610) ([nfischer](https://github.com/nfischer))
310
- - test: refactor ls to use AVA [\#609](https://github.com/shelljs/shelljs/pull/609) ([nfischer](https://github.com/nfischer))
311
- - test: refactor pipe tests to AVA [\#608](https://github.com/shelljs/shelljs/pull/608) ([nfischer](https://github.com/nfischer))
312
- - test: refactor sed tests to AVA [\#607](https://github.com/shelljs/shelljs/pull/607) ([nfischer](https://github.com/nfischer))
313
- - test: refactor grep tests to AVA [\#606](https://github.com/shelljs/shelljs/pull/606) ([nfischer](https://github.com/nfischer))
314
- - test: refactor global tests to AVA [\#605](https://github.com/shelljs/shelljs/pull/605) ([nfischer](https://github.com/nfischer))
315
- - test: refactor touch tests to AVA [\#604](https://github.com/shelljs/shelljs/pull/604) ([nfischer](https://github.com/nfischer))
316
- - test: refactor uniq tests to AVA [\#603](https://github.com/shelljs/shelljs/pull/603) ([nfischer](https://github.com/nfischer))
317
- - test: refactor sort tests to AVA [\#602](https://github.com/shelljs/shelljs/pull/602) ([nfischer](https://github.com/nfischer))
318
- - test: refactor tail tests to AVA [\#601](https://github.com/shelljs/shelljs/pull/601) ([nfischer](https://github.com/nfischer))
319
- - test: refactor head tests to AVA [\#600](https://github.com/shelljs/shelljs/pull/600) ([nfischer](https://github.com/nfischer))
320
- - test: refactor mkdir tests to AVA [\#599](https://github.com/shelljs/shelljs/pull/599) ([nfischer](https://github.com/nfischer))
321
- - Fix: rm behavior regarding symlinks [\#598](https://github.com/shelljs/shelljs/pull/598) ([freitagbr](https://github.com/freitagbr))
322
- - test: refactor mv tests to AVA [\#597](https://github.com/shelljs/shelljs/pull/597) ([nfischer](https://github.com/nfischer))
323
- - Remove files related to lgtm.co [\#596](https://github.com/shelljs/shelljs/pull/596) ([freitagbr](https://github.com/freitagbr))
324
- - Add ability to configure error from parseOptions [\#594](https://github.com/shelljs/shelljs/pull/594) ([freitagbr](https://github.com/freitagbr))
325
- - Use Object.assign if possible [\#593](https://github.com/shelljs/shelljs/pull/593) ([freitagbr](https://github.com/freitagbr))
326
- - Add "-n" option to echo [\#590](https://github.com/shelljs/shelljs/pull/590) ([freitagbr](https://github.com/freitagbr))
327
- - test: refactor rm tests to AVA [\#586](https://github.com/shelljs/shelljs/pull/586) ([nfischer](https://github.com/nfischer))
328
- - test: refactor pwd tests to AVA [\#582](https://github.com/shelljs/shelljs/pull/582) ([nfischer](https://github.com/nfischer))
329
- - test: refactor tempdir tests to AVA [\#581](https://github.com/shelljs/shelljs/pull/581) ([nfischer](https://github.com/nfischer))
330
- - test: refactor 'which' tests to AVA [\#580](https://github.com/shelljs/shelljs/pull/580) ([nfischer](https://github.com/nfischer))
331
- - test: refactor plugin tests to AVA [\#579](https://github.com/shelljs/shelljs/pull/579) ([nfischer](https://github.com/nfischer))
332
- - test: refactor toEnd tests to AVA [\#578](https://github.com/shelljs/shelljs/pull/578) ([nfischer](https://github.com/nfischer))
333
- - test: refactor to tests to AVA [\#577](https://github.com/shelljs/shelljs/pull/577) ([nfischer](https://github.com/nfischer))
334
- - test: refactor 'set' tests to AVA [\#576](https://github.com/shelljs/shelljs/pull/576) ([nfischer](https://github.com/nfischer))
335
- - test: refactor echo tests to AVA [\#575](https://github.com/shelljs/shelljs/pull/575) ([nfischer](https://github.com/nfischer))
336
- - test: refactor exec tests to AVA [\#574](https://github.com/shelljs/shelljs/pull/574) ([nfischer](https://github.com/nfischer))
337
- - test: refactor env tests to AVA [\#573](https://github.com/shelljs/shelljs/pull/573) ([nfischer](https://github.com/nfischer))
338
- - test: refactor dirs tests to AVA [\#572](https://github.com/shelljs/shelljs/pull/572) ([nfischer](https://github.com/nfischer))
339
- - test: refactor config tests to AVA [\#571](https://github.com/shelljs/shelljs/pull/571) ([nfischer](https://github.com/nfischer))
340
- - test: refactor common tests to AVA [\#570](https://github.com/shelljs/shelljs/pull/570) ([nfischer](https://github.com/nfischer))
341
- - test: refactor chmod tests to AVA [\#569](https://github.com/shelljs/shelljs/pull/569) ([nfischer](https://github.com/nfischer))
342
- - test: refactor cp tests to ava [\#565](https://github.com/shelljs/shelljs/pull/565) ([nfischer](https://github.com/nfischer))
343
- - test: refactor cat tests to ava [\#564](https://github.com/shelljs/shelljs/pull/564) ([nfischer](https://github.com/nfischer))
344
- - test: set up ava and move cd.js [\#561](https://github.com/shelljs/shelljs/pull/561) ([nfischer](https://github.com/nfischer))
345
- - Update sed documentation regarding capture groups [\#558](https://github.com/shelljs/shelljs/pull/558) ([freitagbr](https://github.com/freitagbr))
346
- - Add newline to output of echo [\#557](https://github.com/shelljs/shelljs/pull/557) ([freitagbr](https://github.com/freitagbr))
347
- - fix: handle code-less errors more carefully in exec [\#554](https://github.com/shelljs/shelljs/pull/554) ([nfischer](https://github.com/nfischer))
348
- - Add Brandon Freitag to maintainers/contributors [\#553](https://github.com/shelljs/shelljs/pull/553) ([freitagbr](https://github.com/freitagbr))
349
- - Get pipe tests running on Windows. [\#550](https://github.com/shelljs/shelljs/pull/550) ([binki](https://github.com/binki))
350
- - fix: maxdepth doesn't limit total number of copies [\#549](https://github.com/shelljs/shelljs/pull/549) ([nfischer](https://github.com/nfischer))
351
- - Fix lint warning [\#543](https://github.com/shelljs/shelljs/pull/543) ([freitagbr](https://github.com/freitagbr))
352
- - chore: remove v0.10 from Travis CI [\#540](https://github.com/shelljs/shelljs/pull/540) ([nfischer](https://github.com/nfischer))
353
- - chore: add Node v7 for CI [\#539](https://github.com/shelljs/shelljs/pull/539) ([nfischer](https://github.com/nfischer))
354
-
355
- ## [v0.7.5](https://github.com/shelljs/shelljs/tree/v0.7.5) (2016-10-27)
356
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.7.4...v0.7.5)
357
-
358
- **Closed issues:**
359
-
360
- - Project objectives: there is some higher goal to achieve? [\#533](https://github.com/shelljs/shelljs/issues/533)
361
- - fs.existsSync is un-deprecated [\#531](https://github.com/shelljs/shelljs/issues/531)
362
- - Inadvertent breaking change to shell.test\(\) [\#529](https://github.com/shelljs/shelljs/issues/529)
363
- - Add -u flag support for cp [\#526](https://github.com/shelljs/shelljs/issues/526)
364
- - API request: allow `plugin.error\(\)` to take an options parameter [\#522](https://github.com/shelljs/shelljs/issues/522)
365
- - FS Real Path error thrown when requiring shelljs [\#521](https://github.com/shelljs/shelljs/issues/521)
366
- - Question: passing code via pipe? [\#520](https://github.com/shelljs/shelljs/issues/520)
367
- - The performance in `cp` is different between `0.6.0` and `0.7.4` [\#517](https://github.com/shelljs/shelljs/issues/517)
368
- - ShellJS in Electron package don't find ffmpeg anymore [\#516](https://github.com/shelljs/shelljs/issues/516)
369
- - Exec issues with string option introduced in 0.7.4 [\#515](https://github.com/shelljs/shelljs/issues/515)
370
- - \[ Feature \] SSH command [\#435](https://github.com/shelljs/shelljs/issues/435)
371
-
372
- **Merged pull requests:**
373
-
374
- - feat: plugin.error\(\) takes an options parameter [\#535](https://github.com/shelljs/shelljs/pull/535) ([nfischer](https://github.com/nfischer))
375
- - Revert "refactor: replace fs.existsSync" fixes\(\#531\) [\#532](https://github.com/shelljs/shelljs/pull/532) ([gyandeeps](https://github.com/gyandeeps))
376
- - Fix: Remove default glob from shell.test \(fixes \#529\) [\#530](https://github.com/shelljs/shelljs/pull/530) ([gyandeeps](https://github.com/gyandeeps))
377
- - feat: cp -u option [\#527](https://github.com/shelljs/shelljs/pull/527) ([nfischer](https://github.com/nfischer))
378
- - chore: add downloads per month on README [\#513](https://github.com/shelljs/shelljs/pull/513) ([nfischer](https://github.com/nfischer))
379
-
380
- ## [v0.7.4](https://github.com/shelljs/shelljs/tree/v0.7.4) (2016-08-26)
381
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.7.3...v0.7.4)
382
-
383
- **Closed issues:**
384
-
385
- - fix: echo -e should not print "-e" [\#510](https://github.com/shelljs/shelljs/issues/510)
386
- - Wrong method signature in doc [\#498](https://github.com/shelljs/shelljs/issues/498)
387
- - readFromPipe should be a function with no arguments [\#485](https://github.com/shelljs/shelljs/issues/485)
388
- - TypeError: Cannot read property 'toString' of undefined [\#471](https://github.com/shelljs/shelljs/issues/471)
389
-
390
- **Merged pull requests:**
391
-
392
- - fix: echo supports -e option properly [\#511](https://github.com/shelljs/shelljs/pull/511) ([nfischer](https://github.com/nfischer))
393
- - refactor: replace fs.existsSync [\#509](https://github.com/shelljs/shelljs/pull/509) ([nfischer](https://github.com/nfischer))
394
- - refactor: readFromPipe\(\) requires no arguments [\#506](https://github.com/shelljs/shelljs/pull/506) ([nfischer](https://github.com/nfischer))
395
- - chore: switch to eslint [\#504](https://github.com/shelljs/shelljs/pull/504) ([nfischer](https://github.com/nfischer))
396
- - feat: add overWrite option for commands [\#503](https://github.com/shelljs/shelljs/pull/503) ([nfischer](https://github.com/nfischer))
397
- - chore: update issue template [\#502](https://github.com/shelljs/shelljs/pull/502) ([nfischer](https://github.com/nfischer))
398
- - fixed head/tail readme [\#499](https://github.com/shelljs/shelljs/pull/499) ([charlesread](https://github.com/charlesread))
399
-
400
- ## [v0.7.3](https://github.com/shelljs/shelljs/tree/v0.7.3) (2016-07-27)
401
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.7.2...v0.7.3)
402
-
403
- **Closed issues:**
404
-
405
- - expose execSync [\#494](https://github.com/shelljs/shelljs/issues/494)
406
- - Add a way to create commands that can receive from a pipe without being standalone commands [\#487](https://github.com/shelljs/shelljs/issues/487)
407
- - cp -r breaks when the directory contains a softlink [\#193](https://github.com/shelljs/shelljs/issues/193)
408
- - Redirect output to file fails [\#60](https://github.com/shelljs/shelljs/issues/60)
409
- - We need sed -n ? [\#38](https://github.com/shelljs/shelljs/issues/38)
410
-
411
- **Merged pull requests:**
412
-
413
- - refactor: allow pipeOnly commands \(methods on ShellStrings\) [\#493](https://github.com/shelljs/shelljs/pull/493) ([nfischer](https://github.com/nfischer))
414
- - refactor: glob by default for commands [\#492](https://github.com/shelljs/shelljs/pull/492) ([nfischer](https://github.com/nfischer))
415
- - refactor: switch from notUnix to unix in wrap\(\) [\#491](https://github.com/shelljs/shelljs/pull/491) ([nfischer](https://github.com/nfischer))
416
- - refactor: switch common.extend\(\) to Object.assign ponyfill [\#490](https://github.com/shelljs/shelljs/pull/490) ([nfischer](https://github.com/nfischer))
417
- - fix: conflicting options now properly override each other [\#489](https://github.com/shelljs/shelljs/pull/489) ([nfischer](https://github.com/nfischer))
418
- - refactor: expose plugin utils & add initial tests [\#484](https://github.com/shelljs/shelljs/pull/484) ([nfischer](https://github.com/nfischer))
419
-
420
- ## [v0.7.2](https://github.com/shelljs/shelljs/tree/v0.7.2) (2016-07-25)
421
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.7.1...v0.7.2)
422
-
423
- **Closed issues:**
424
-
425
- - shelljs should not kill process if node call throws exception [\#473](https://github.com/shelljs/shelljs/issues/473)
426
- - `cp` work incorrectly when folder name contains '@' [\#463](https://github.com/shelljs/shelljs/issues/463)
427
- - Something went wrong [\#158](https://github.com/shelljs/shelljs/issues/158)
428
-
429
- **Merged pull requests:**
430
-
431
- - fix: resolve a cylcic-dependency problem [\#482](https://github.com/shelljs/shelljs/pull/482) ([nfischer](https://github.com/nfischer))
432
- - refactor: add wrapOutput option to auto-ShellString-ify command output [\#481](https://github.com/shelljs/shelljs/pull/481) ([nfischer](https://github.com/nfischer))
433
- - refactor: move option parsing into common.wrap\(\) [\#479](https://github.com/shelljs/shelljs/pull/479) ([nfischer](https://github.com/nfischer))
434
- - refactor: hook new uniq\(\) command using new format [\#478](https://github.com/shelljs/shelljs/pull/478) ([nfischer](https://github.com/nfischer))
435
- - Fix mkdir malformed path [\#477](https://github.com/shelljs/shelljs/pull/477) ([nfischer](https://github.com/nfischer))
436
- - fix: mkdir for invalid perms does not kill process [\#474](https://github.com/shelljs/shelljs/pull/474) ([nfischer](https://github.com/nfischer))
437
- - feat\(command\): new command: uniq\(\) [\#453](https://github.com/shelljs/shelljs/pull/453) ([joshi-sh](https://github.com/joshi-sh))
438
-
439
- ## [v0.7.1](https://github.com/shelljs/shelljs/tree/v0.7.1) (2016-07-22)
440
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.7.0...v0.7.1)
441
-
442
- **Closed issues:**
443
-
444
- - cp -n doesn't work correctly [\#465](https://github.com/shelljs/shelljs/issues/465)
445
- - how can i run sudo apt-get install xtodotool by your plugin? [\#448](https://github.com/shelljs/shelljs/issues/448)
446
- - shell.js grep: internal error, Invalid regular expression [\#447](https://github.com/shelljs/shelljs/issues/447)
447
- - Stdout is empty on Git log command [\#439](https://github.com/shelljs/shelljs/issues/439)
448
- - Cannot read toString of null when using execSync [\#415](https://github.com/shelljs/shelljs/issues/415)
449
- - cp -R dir/ target fails to copy hidden files in dir [\#140](https://github.com/shelljs/shelljs/issues/140)
450
- - \#mv Won't Work Across Disks [\#1](https://github.com/shelljs/shelljs/issues/1)
451
-
452
- **Merged pull requests:**
453
-
454
- - refactor: commands now register themselves [\#475](https://github.com/shelljs/shelljs/pull/475) ([nfischer](https://github.com/nfischer))
455
- - chore: switch to shields.io, and add npm badge [\#470](https://github.com/shelljs/shelljs/pull/470) ([nfischer](https://github.com/nfischer))
456
- - fix\(cp\): -n option no longer raises error [\#466](https://github.com/shelljs/shelljs/pull/466) ([nfischer](https://github.com/nfischer))
457
- - refactor: expose pipe-ability to command configuration [\#464](https://github.com/shelljs/shelljs/pull/464) ([nfischer](https://github.com/nfischer))
458
- - fix\(mv\): works across partitions [\#461](https://github.com/shelljs/shelljs/pull/461) ([nfischer](https://github.com/nfischer))
459
- - chore: switch to shelljs-changelog [\#460](https://github.com/shelljs/shelljs/pull/460) ([nfischer](https://github.com/nfischer))
460
- - chore: update release process [\#459](https://github.com/shelljs/shelljs/pull/459) ([nfischer](https://github.com/nfischer))
461
- - chore: revert depreciate shelljs/make \(\#431\) [\#458](https://github.com/shelljs/shelljs/pull/458) ([zephraph](https://github.com/zephraph))
462
- - chore: clarify message for when docs are not generated [\#457](https://github.com/shelljs/shelljs/pull/457) ([nfischer](https://github.com/nfischer))
463
- - chore\(gendocs\): add `npm run gendocs` command [\#455](https://github.com/shelljs/shelljs/pull/455) ([nfischer](https://github.com/nfischer))
464
- - chore: update jshint and move it to an npm script [\#454](https://github.com/shelljs/shelljs/pull/454) ([nfischer](https://github.com/nfischer))
465
- - test\(ls\): add case for trailing slash on dir name [\#450](https://github.com/shelljs/shelljs/pull/450) ([nfischer](https://github.com/nfischer))
466
- - docs\(exec\): explicitly mention the `shell` option [\#449](https://github.com/shelljs/shelljs/pull/449) ([nfischer](https://github.com/nfischer))
467
- - chore: setup changelog [\#443](https://github.com/shelljs/shelljs/pull/443) ([levithomason](https://github.com/levithomason))
468
- - docs: comment code better to help contributors [\#437](https://github.com/shelljs/shelljs/pull/437) ([nfischer](https://github.com/nfischer))
469
- - chore\(CI\): update appveyor [\#436](https://github.com/shelljs/shelljs/pull/436) ([nfischer](https://github.com/nfischer))
470
- - chore: test against node v6 [\#433](https://github.com/shelljs/shelljs/pull/433) ([nfischer](https://github.com/nfischer))
471
- - docs: warn that README contains newest features [\#410](https://github.com/shelljs/shelljs/pull/410) ([nfischer](https://github.com/nfischer))
472
-
473
- ## [v0.7.0](https://github.com/shelljs/shelljs/tree/v0.7.0) (2016-04-25)
474
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.6.0...v0.7.0)
475
-
476
- **Closed issues:**
477
-
478
- - exec\('nohup node some.js &'\) [\#426](https://github.com/shelljs/shelljs/issues/426)
479
- - shelljs Breaks SemVer for Alpha and Pre-Release Versions [\#390](https://github.com/shelljs/shelljs/issues/390)
480
- - Copy not accepting source end with wildcards \* when using -r on v0.6.0 [\#389](https://github.com/shelljs/shelljs/issues/389)
481
- - Support globbing in `shjs` [\#388](https://github.com/shelljs/shelljs/issues/388)
482
- - Refactor more commands to return ShellString [\#373](https://github.com/shelljs/shelljs/issues/373)
483
- - ln\('-sf', './', '\<destination\>'\) is not linking the right folder [\#363](https://github.com/shelljs/shelljs/issues/363)
484
- - v0.6.0 - shell.cp\('r', '/foo/\*, '/bar'\) fails with /foo/\* no such file or directory [\#342](https://github.com/shelljs/shelljs/issues/342)
485
- - Add documentup as a webhook [\#327](https://github.com/shelljs/shelljs/issues/327)
486
- - Dir glob breaks when in the middle of path [\#245](https://github.com/shelljs/shelljs/issues/245)
487
- - could you switch off wiki page? [\#233](https://github.com/shelljs/shelljs/issues/233)
488
- - ls globbing does not behave like shell, consider using glob.sync [\#225](https://github.com/shelljs/shelljs/issues/225)
489
- - Cannot run shell.exec\('heroku config:push'\) -- just hangs [\#218](https://github.com/shelljs/shelljs/issues/218)
490
- - `cp` does not overwrite files by default [\#210](https://github.com/shelljs/shelljs/issues/210)
491
- - exec failed to return [\#208](https://github.com/shelljs/shelljs/issues/208)
492
- - CLI Version [\#202](https://github.com/shelljs/shelljs/issues/202)
493
- - Bracket expansion not working [\#176](https://github.com/shelljs/shelljs/issues/176)
494
- - "exec" causes LiveScript interpreter \(lsc\) to hang [\#160](https://github.com/shelljs/shelljs/issues/160)
495
- - Don't modify string prototype [\#159](https://github.com/shelljs/shelljs/issues/159)
496
- - `exec\(...\).to\(file\)` should work [\#154](https://github.com/shelljs/shelljs/issues/154)
497
- - Can't install shelljs locally instead of globally [\#136](https://github.com/shelljs/shelljs/issues/136)
498
- - shelljs and node 0.10.28 [\#125](https://github.com/shelljs/shelljs/issues/125)
499
- - Use case for global installed shelljs [\#123](https://github.com/shelljs/shelljs/issues/123)
500
- - Only get stdout from `exec` [\#92](https://github.com/shelljs/shelljs/issues/92)
501
- - What about other commands? [\#90](https://github.com/shelljs/shelljs/issues/90)
502
- - Flesh out example of exit\(\) [\#73](https://github.com/shelljs/shelljs/issues/73)
503
- - exec doesn't work with qualified paths on windows [\#41](https://github.com/shelljs/shelljs/issues/41)
504
- - exec does not working in mingw bash in windows [\#17](https://github.com/shelljs/shelljs/issues/17)
505
- - Add support for cp -P option [\#413](https://github.com/shelljs/shelljs/issues/413)
506
- - cp -L: Incorrect behavior for symlinks to regular files [\#407](https://github.com/shelljs/shelljs/issues/407)
507
- - Edit the docs to emphasize ShellStrings and Pipes [\#398](https://github.com/shelljs/shelljs/issues/398)
508
- - Error message isn't always printed [\#372](https://github.com/shelljs/shelljs/issues/372)
509
- - Standardize command output [\#356](https://github.com/shelljs/shelljs/issues/356)
510
- - exec\(\) doesn't clean up all temp files [\#353](https://github.com/shelljs/shelljs/issues/353)
511
- - Document that exec\(\) options don't work on early versions of node [\#350](https://github.com/shelljs/shelljs/issues/350)
512
- - Add -f option to set\(\) [\#344](https://github.com/shelljs/shelljs/issues/344)
513
- - Glob commands by default [\#343](https://github.com/shelljs/shelljs/issues/343)
514
- - rm -rf incorrect behaviour [\#332](https://github.com/shelljs/shelljs/issues/332)
515
- - Switch `exec\(\)` to use bash by default [\#281](https://github.com/shelljs/shelljs/issues/281)
516
- - pipe to proc [\#148](https://github.com/shelljs/shelljs/issues/148)
517
- - shell builtin [\#138](https://github.com/shelljs/shelljs/issues/138)
518
- - add timeout option for exec [\#132](https://github.com/shelljs/shelljs/issues/132)
519
- - shelljs cp handling symlinks badly [\#69](https://github.com/shelljs/shelljs/issues/69)
520
-
521
- **Merged pull requests:**
522
-
523
- - chore: add "Team" section to README [\#423](https://github.com/shelljs/shelljs/pull/423) ([nfischer](https://github.com/nfischer))
524
- - Contributing guidelines [\#422](https://github.com/shelljs/shelljs/pull/422) ([nfischer](https://github.com/nfischer))
525
- - feat\(glob\): expose config.globOptions. [\#400](https://github.com/shelljs/shelljs/pull/400) ([nfischer](https://github.com/nfischer))
526
- - Add shelljs as a keyword in package.json [\#393](https://github.com/shelljs/shelljs/pull/393) ([nfischer](https://github.com/nfischer))
527
- - docs: add link to wiki page [\#392](https://github.com/shelljs/shelljs/pull/392) ([nfischer](https://github.com/nfischer))
528
- - refactor\(cd\): use process.env.OLDPWD to store previous dir [\#383](https://github.com/shelljs/shelljs/pull/383) ([nfischer](https://github.com/nfischer))
529
- - chore\(appveyor\): add in node 4 for appveyor [\#381](https://github.com/shelljs/shelljs/pull/381) ([nfischer](https://github.com/nfischer))
530
- - Add Cash cross-reference [\#375](https://github.com/shelljs/shelljs/pull/375) ([dthree](https://github.com/dthree))
531
- - Ignore gitattributes from npm package [\#361](https://github.com/shelljs/shelljs/pull/361) ([nfischer](https://github.com/nfischer))
532
- - Consistently use LF line endings [\#355](https://github.com/shelljs/shelljs/pull/355) ([TimothyGu](https://github.com/TimothyGu))
533
- - Release v0.7.0 [\#429](https://github.com/shelljs/shelljs/pull/429) ([nfischer](https://github.com/nfischer))
534
- - fix: null is no longer confused for an object [\#428](https://github.com/shelljs/shelljs/pull/428) ([nfischer](https://github.com/nfischer))
535
- - fix\(ls\): no trailing newline for empty directories [\#425](https://github.com/shelljs/shelljs/pull/425) ([nfischer](https://github.com/nfischer))
536
- - feat\(cp\): -P option, plus better handling of symlinks [\#421](https://github.com/shelljs/shelljs/pull/421) ([nfischer](https://github.com/nfischer))
537
- - docs\(exec\): fix docs about exec return type [\#419](https://github.com/shelljs/shelljs/pull/419) ([nfischer](https://github.com/nfischer))
538
- - docs\(error\): deprecate relying on string value [\#418](https://github.com/shelljs/shelljs/pull/418) ([nfischer](https://github.com/nfischer))
539
- - fix: error message now printed for fatal failures [\#417](https://github.com/shelljs/shelljs/pull/417) ([nfischer](https://github.com/nfischer))
540
- - issue-407: Add regular files unit tests and fix symlink copy behavior [\#409](https://github.com/shelljs/shelljs/pull/409) ([charlesverge](https://github.com/charlesverge))
541
- - refactor\(rm\): Remove duplicate code [\#408](https://github.com/shelljs/shelljs/pull/408) ([nfischer](https://github.com/nfischer))
542
- - docs: wildcards for all commands, other docs cleanups [\#404](https://github.com/shelljs/shelljs/pull/404) ([nfischer](https://github.com/nfischer))
543
- - test\(rm\): add tests to prevent a future regression [\#403](https://github.com/shelljs/shelljs/pull/403) ([nfischer](https://github.com/nfischer))
544
- - refactor\(string\): modify string protoype, but only for shelljs/global [\#401](https://github.com/shelljs/shelljs/pull/401) ([nfischer](https://github.com/nfischer))
545
- - feat: adding error codes to ShellJS [\#394](https://github.com/shelljs/shelljs/pull/394) ([nfischer](https://github.com/nfischer))
546
- - feature: use rechoir [\#384](https://github.com/shelljs/shelljs/pull/384) ([nfischer](https://github.com/nfischer))
547
- - refactor\(cp\): clean up code and fix \#376 [\#380](https://github.com/shelljs/shelljs/pull/380) ([nfischer](https://github.com/nfischer))
548
- - New commands: sort\(\), head\(\), and tail\(\) [\#379](https://github.com/shelljs/shelljs/pull/379) ([nfischer](https://github.com/nfischer))
549
- - Add unit tests to prevent regression \(see \#376\) [\#378](https://github.com/shelljs/shelljs/pull/378) ([nfischer](https://github.com/nfischer))
550
- - feat\(pipe\): add support for pipes between commands [\#370](https://github.com/shelljs/shelljs/pull/370) ([nfischer](https://github.com/nfischer))
551
- - refactor\(ls\): greatly simplify ls implimentation [\#369](https://github.com/shelljs/shelljs/pull/369) ([ariporad](https://github.com/ariporad))
552
- - chore: drop node v0.10 support [\#368](https://github.com/shelljs/shelljs/pull/368) ([ariporad](https://github.com/ariporad))
553
- - perf\(cd\): only run `stat` once [\#367](https://github.com/shelljs/shelljs/pull/367) ([ariporad](https://github.com/ariporad))
554
- - fix\(exec\): properly handles paths with spaces and quotes [\#365](https://github.com/shelljs/shelljs/pull/365) ([nfischer](https://github.com/nfischer))
555
- - test\(ln\): add tests for linking to cwd [\#364](https://github.com/shelljs/shelljs/pull/364) ([nfischer](https://github.com/nfischer))
556
- - fix\(verbose\): verbose-style logging is consistent [\#362](https://github.com/shelljs/shelljs/pull/362) ([nfischer](https://github.com/nfischer))
557
- - Refactor shellstring [\#360](https://github.com/shelljs/shelljs/pull/360) ([nfischer](https://github.com/nfischer))
558
- - feat\(glob\): use glob module for globbing [\#359](https://github.com/shelljs/shelljs/pull/359) ([nfischer](https://github.com/nfischer))
559
- - feat\(set\): add -f option to disable globbing [\#358](https://github.com/shelljs/shelljs/pull/358) ([nfischer](https://github.com/nfischer))
560
- - config.fatal now throws an exception [\#357](https://github.com/shelljs/shelljs/pull/357) ([jrmclaurin](https://github.com/jrmclaurin))
561
- - fix\(exec\): temp files are now cleaned up [\#354](https://github.com/shelljs/shelljs/pull/354) ([nfischer](https://github.com/nfischer))
562
- - feat\(glob\): glob support for \(almost\) all commands [\#352](https://github.com/shelljs/shelljs/pull/352) ([nfischer](https://github.com/nfischer))
563
- - feat\(grep\): add -l option [\#349](https://github.com/shelljs/shelljs/pull/349) ([nfischer](https://github.com/nfischer))
564
- - fix\(exec\): now actually supports shell option [\#348](https://github.com/shelljs/shelljs/pull/348) ([nfischer](https://github.com/nfischer))
565
- - feat\(touch\): supports multiple files [\#346](https://github.com/shelljs/shelljs/pull/346) ([nfischer](https://github.com/nfischer))
566
-
567
- ## [v0.6.0](https://github.com/shelljs/shelljs/tree/v0.6.0) (2016-02-05)
568
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.5.3...v0.6.0)
569
-
570
- **Closed issues:**
571
-
572
- - option not recognized [\#334](https://github.com/shelljs/shelljs/issues/334)
573
- - Feature request: Metadata with `ls` [\#323](https://github.com/shelljs/shelljs/issues/323)
574
- - Gen-docs is broken [\#309](https://github.com/shelljs/shelljs/issues/309)
575
- - `link -s` is broken for files on Windows [\#301](https://github.com/shelljs/shelljs/issues/301)
576
- - Shelljs quits unexpectedly: [\#300](https://github.com/shelljs/shelljs/issues/300)
577
- - Failing tests on Windows [\#296](https://github.com/shelljs/shelljs/issues/296)
578
- - run-tests.js is broken for cmd.exe [\#294](https://github.com/shelljs/shelljs/issues/294)
579
- - Support echo-ing environment variables [\#291](https://github.com/shelljs/shelljs/issues/291)
580
- - Add Windows CI [\#287](https://github.com/shelljs/shelljs/issues/287)
581
- - Add tests for the shjs utility [\#280](https://github.com/shelljs/shelljs/issues/280)
582
- - Allow shjs utility to infer the extension for "filename." [\#278](https://github.com/shelljs/shelljs/issues/278)
583
- - Ability to read the stdout buffer line-by-line [\#277](https://github.com/shelljs/shelljs/issues/277)
584
- - Poor output for commands with multiple errors [\#267](https://github.com/shelljs/shelljs/issues/267)
585
- - Travis ci build status says "unknown" [\#266](https://github.com/shelljs/shelljs/issues/266)
586
- - wild card characters in filename not working as expected [\#262](https://github.com/shelljs/shelljs/issues/262)
587
- - shell.exec - read internal variable [\#260](https://github.com/shelljs/shelljs/issues/260)
588
- - cp and rename directory with -r doesn't match unix behavior [\#256](https://github.com/shelljs/shelljs/issues/256)
589
- - console.log.apply throwing TypeError: Illegal Invocation [\#255](https://github.com/shelljs/shelljs/issues/255)
590
- - How to exit on first error [\#253](https://github.com/shelljs/shelljs/issues/253)
591
- - why not support set 'cwd' when invoke execAsync ? [\#250](https://github.com/shelljs/shelljs/issues/250)
592
- - Not possible to check the failure of cd? [\#247](https://github.com/shelljs/shelljs/issues/247)
593
- - By default shelljs runs command in root [\#246](https://github.com/shelljs/shelljs/issues/246)
594
- - /usr/bin/env: node: No such file or directory [\#243](https://github.com/shelljs/shelljs/issues/243)
595
- - "Which" command not working properly on Windows Platform. [\#238](https://github.com/shelljs/shelljs/issues/238)
596
- - Arguments [\#237](https://github.com/shelljs/shelljs/issues/237)
597
- - sed\(\) should accept multiple file arguments [\#231](https://github.com/shelljs/shelljs/issues/231)
598
- - shelljs.exec\('aaa && bbb'\) blocks [\#229](https://github.com/shelljs/shelljs/issues/229)
599
- - Consider creating a GitHub Organization with more maintainers [\#223](https://github.com/shelljs/shelljs/issues/223)
600
- - \[idea\] Add chmodr function. [\#219](https://github.com/shelljs/shelljs/issues/219)
601
- - Execute a file [\#211](https://github.com/shelljs/shelljs/issues/211)
602
- - Where is standard error going to? [\#209](https://github.com/shelljs/shelljs/issues/209)
603
- - boolean return value for string.to\(\) [\#205](https://github.com/shelljs/shelljs/issues/205)
604
- - `common.error` doesn't throw [\#199](https://github.com/shelljs/shelljs/issues/199)
605
- - Problems with exec \(sync\) on 0.12/io.js [\#197](https://github.com/shelljs/shelljs/issues/197)
606
- - cp --update flag [\#172](https://github.com/shelljs/shelljs/issues/172)
607
- - Is there a way to suppress pushd/popd output? [\#171](https://github.com/shelljs/shelljs/issues/171)
608
- - Cannot recursively list all \*.js files [\#162](https://github.com/shelljs/shelljs/issues/162)
609
- - exec\(\) breaks if executed in a deleted directory [\#157](https://github.com/shelljs/shelljs/issues/157)
610
- - shjs command always exits with zero code [\#133](https://github.com/shelljs/shelljs/issues/133)
611
- - touch command [\#122](https://github.com/shelljs/shelljs/issues/122)
612
- - Symbolic links are broken! [\#100](https://github.com/shelljs/shelljs/issues/100)
613
- - interpret `--` as stdin [\#55](https://github.com/shelljs/shelljs/issues/55)
614
- - Error ENOTEMPTY when deleting a directory recursively. [\#49](https://github.com/shelljs/shelljs/issues/49)
615
- - Cross-platform way to add to PATH [\#32](https://github.com/shelljs/shelljs/issues/32)
616
- - `mv` fails on block, character, fifo [\#25](https://github.com/shelljs/shelljs/issues/25)
617
- - ls -l [\#22](https://github.com/shelljs/shelljs/issues/22)
618
-
619
- **Merged pull requests:**
620
-
621
- - feat\(set\): add new set\(\) command [\#329](https://github.com/shelljs/shelljs/pull/329) ([nfischer](https://github.com/nfischer))
622
- - Fix symlinking on Windows [\#322](https://github.com/shelljs/shelljs/pull/322) ([BYK](https://github.com/BYK))
623
- - Rewrite .gitignore to be more comprehensive [\#321](https://github.com/shelljs/shelljs/pull/321) ([BYK](https://github.com/BYK))
624
- - chore\(gitter/travis\): add gitter webhook to travis [\#313](https://github.com/shelljs/shelljs/pull/313) ([ariporad](https://github.com/ariporad))
625
- - chore\(LGTM\): add LGTM config files [\#312](https://github.com/shelljs/shelljs/pull/312) ([ariporad](https://github.com/ariporad))
626
- - feat\(ls\): add -d flag to ls\(\) [\#311](https://github.com/shelljs/shelljs/pull/311) ([nfischer](https://github.com/nfischer))
627
- - fix\(gen-docs\): fix issue where docs are generated wrong [\#310](https://github.com/shelljs/shelljs/pull/310) ([nfischer](https://github.com/nfischer))
628
- - chore\(package\): remove v0.8 from engines list [\#308](https://github.com/shelljs/shelljs/pull/308) ([nfischer](https://github.com/nfischer))
629
- - travis: Mark as not using `sudo` and do not test 0.11 [\#307](https://github.com/shelljs/shelljs/pull/307) ([TimothyGu](https://github.com/TimothyGu))
630
- - fix: jshint works on Windows [\#295](https://github.com/shelljs/shelljs/pull/295) ([nfischer](https://github.com/nfischer))
631
- - feat: add tilde expansion to expand\(\) [\#293](https://github.com/shelljs/shelljs/pull/293) ([nfischer](https://github.com/nfischer))
632
- - style: make docs more consistent [\#292](https://github.com/shelljs/shelljs/pull/292) ([nfischer](https://github.com/nfischer))
633
- - update `exec` docs to match implemented behaviour [\#289](https://github.com/shelljs/shelljs/pull/289) ([vise890](https://github.com/vise890))
634
- - chore: update github URL in package.json [\#288](https://github.com/shelljs/shelljs/pull/288) ([nfischer](https://github.com/nfischer))
635
- - docs\(spelling\): fix typo in source comment [\#285](https://github.com/shelljs/shelljs/pull/285) ([nfischer](https://github.com/nfischer))
636
- - chore\(travis\): add OS X to Travis CI [\#283](https://github.com/shelljs/shelljs/pull/283) ([nfischer](https://github.com/nfischer))
637
- - Don't do `console.log.apply\(this, ...\)`. [\#274](https://github.com/shelljs/shelljs/pull/274) ([ariporad](https://github.com/ariporad))
638
- - Implementing cd\('-'\) to behave like Bash's "cd -" [\#273](https://github.com/shelljs/shelljs/pull/273) ([nfischer](https://github.com/nfischer))
639
- - Fix cp to match unix behavior [\#271](https://github.com/shelljs/shelljs/pull/271) ([freitagbr](https://github.com/freitagbr))
640
- - Commands that have multiple errors now produce cleaner log output [\#268](https://github.com/shelljs/shelljs/pull/268) ([nfischer](https://github.com/nfischer))
641
- - Support exit code in shjs. [\#252](https://github.com/shelljs/shelljs/pull/252) ([bryce-gibson](https://github.com/bryce-gibson))
642
- - add touch\(1\) [\#249](https://github.com/shelljs/shelljs/pull/249) ([blockloop](https://github.com/blockloop))
643
- - Fix `os.tmpdir` bug [\#240](https://github.com/shelljs/shelljs/pull/240) ([BYK](https://github.com/BYK))
644
- - Make sure Which\(\) on Windows platform always return the command with … [\#239](https://github.com/shelljs/shelljs/pull/239) ([TingluoHuang](https://github.com/TingluoHuang))
645
- - Add target node.js \(iojs v1, v2, v3\) [\#230](https://github.com/shelljs/shelljs/pull/230) ([sanemat](https://github.com/sanemat))
646
- - feat-multisymbolic + Support for directory entry \(capital X in chmod terms\) [\#228](https://github.com/shelljs/shelljs/pull/228) ([rezonant](https://github.com/rezonant))
647
- - Fixes an issue with multi-symbolic mode specification \(ie a-rwx,u+rw\) [\#227](https://github.com/shelljs/shelljs/pull/227) ([rezonant](https://github.com/rezonant))
648
- - Memoized the result of target invocation [\#216](https://github.com/shelljs/shelljs/pull/216) ([rizowski](https://github.com/rizowski))
649
- - remove empty for loop and leaked i var [\#166](https://github.com/shelljs/shelljs/pull/166) ([ratbeard](https://github.com/ratbeard))
650
- - Wrap script name in double quotes [\#135](https://github.com/shelljs/shelljs/pull/135) ([ndelitski](https://github.com/ndelitski))
651
- - Fixed coffeescript syntax in top example [\#99](https://github.com/shelljs/shelljs/pull/99) ([maxnordlund](https://github.com/maxnordlund))
652
- - fix\(touch\): enhance parseOptions and fix touch's -r flag [\#341](https://github.com/shelljs/shelljs/pull/341) ([nfischer](https://github.com/nfischer))
653
- - chore\(.npmignore\): update npmignore [\#339](https://github.com/shelljs/shelljs/pull/339) ([ariporad](https://github.com/ariporad))
654
- - Release v0.6.0 [\#338](https://github.com/shelljs/shelljs/pull/338) ([ariporad](https://github.com/ariporad))
655
- - docs\(README\): remove coffeescript from README [\#337](https://github.com/shelljs/shelljs/pull/337) ([ariporad](https://github.com/ariporad))
656
- - fix\(cp\): add -n option, make -f default behavior [\#336](https://github.com/shelljs/shelljs/pull/336) ([nfischer](https://github.com/nfischer))
657
- - feat\(exec\): allow all exec options to pass through [\#335](https://github.com/shelljs/shelljs/pull/335) ([nfischer](https://github.com/nfischer))
658
- - fix\(mv\): add -n option, make -f default behavior [\#328](https://github.com/shelljs/shelljs/pull/328) ([nfischer](https://github.com/nfischer))
659
- - fix\(cat\): make behavior more like unix [\#326](https://github.com/shelljs/shelljs/pull/326) ([nfischer](https://github.com/nfischer))
660
- - feat\(ls\): add -l option [\#324](https://github.com/shelljs/shelljs/pull/324) ([nfischer](https://github.com/nfischer))
661
- - style\(test/which\): make test/which.js conform to the style guidelines [\#320](https://github.com/shelljs/shelljs/pull/320) ([ariporad](https://github.com/ariporad))
662
- - chore\(appveyor\): add badge [\#316](https://github.com/shelljs/shelljs/pull/316) ([nfischer](https://github.com/nfischer))
663
- - fix\(windows\): fix shjs commands for windows [\#315](https://github.com/shelljs/shelljs/pull/315) ([nfischer](https://github.com/nfischer))
664
- - feat\(sed\): support multiple file names [\#314](https://github.com/shelljs/shelljs/pull/314) ([nfischer](https://github.com/nfischer))
665
- - feat\(cd\): cd\(\) \(no args\) changes to home directory [\#306](https://github.com/shelljs/shelljs/pull/306) ([nfischer](https://github.com/nfischer))
666
- - test\(shjs\): add tests for shjs [\#304](https://github.com/shelljs/shelljs/pull/304) ([ariporad](https://github.com/ariporad))
667
- - fix: regexes are more consistent with sed and grep [\#303](https://github.com/shelljs/shelljs/pull/303) ([nfischer](https://github.com/nfischer))
668
- - Add appveyor.yml config file [\#299](https://github.com/shelljs/shelljs/pull/299) ([nfischer](https://github.com/nfischer))
669
- - Fix tests on Windows [\#297](https://github.com/shelljs/shelljs/pull/297) ([BYK](https://github.com/BYK))
670
- - Search PATHEXT instead of 3 hardcoded values [\#290](https://github.com/shelljs/shelljs/pull/290) ([isiahmeadows](https://github.com/isiahmeadows))
671
- - Fix relative symlinks [\#282](https://github.com/shelljs/shelljs/pull/282) ([freitagbr](https://github.com/freitagbr))
672
- - Make to and toEnd chainable [\#276](https://github.com/shelljs/shelljs/pull/276) ([TimothyGu](https://github.com/TimothyGu))
673
-
674
- ## [v0.5.3](https://github.com/shelljs/shelljs/tree/v0.5.3) (2015-08-11)
675
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.5.2...v0.5.3)
676
-
677
- **Merged pull requests:**
678
-
679
- - Manually closing streams [\#222](https://github.com/shelljs/shelljs/pull/222) ([JulianLaval](https://github.com/JulianLaval))
680
-
681
- ## [v0.5.2](https://github.com/shelljs/shelljs/tree/v0.5.2) (2015-08-10)
682
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.5.1...v0.5.2)
683
-
684
- **Closed issues:**
685
-
686
- - Cannot run shell.exec [\#217](https://github.com/shelljs/shelljs/issues/217)
687
- - write after end: internal error [\#206](https://github.com/shelljs/shelljs/issues/206)
688
-
689
- **Merged pull requests:**
690
-
691
- - Update README.md [\#221](https://github.com/shelljs/shelljs/pull/221) ([giosh94mhz](https://github.com/giosh94mhz))
692
- - prevent internal error: write after end [\#214](https://github.com/shelljs/shelljs/pull/214) ([charlierudolph](https://github.com/charlierudolph))
693
-
694
- ## [v0.5.1](https://github.com/shelljs/shelljs/tree/v0.5.1) (2015-06-05)
695
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.5.0...v0.5.1)
696
-
697
- **Closed issues:**
698
-
699
- - cd into home directory [\#9](https://github.com/shelljs/shelljs/issues/9)
700
-
701
- **Merged pull requests:**
702
-
703
- - Fix issue \#49: Retry rmdirSync on Windows for up to 1 second if files still exist. [\#179](https://github.com/shelljs/shelljs/pull/179) ([andreialecu](https://github.com/andreialecu))
704
-
705
- ## [v0.5.0](https://github.com/shelljs/shelljs/tree/v0.5.0) (2015-05-19)
706
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.3.0...v0.5.0)
707
-
708
- **Closed issues:**
709
-
710
- - Enter text to prompt [\#203](https://github.com/shelljs/shelljs/issues/203)
711
- - Find which shell is being used [\#195](https://github.com/shelljs/shelljs/issues/195)
712
- - Pass command line params to the make tool [\#188](https://github.com/shelljs/shelljs/issues/188)
713
- - Is it possible to call exec with a command containing new lines ? [\#177](https://github.com/shelljs/shelljs/issues/177)
714
- - The installation would break on Windows 7 [\#161](https://github.com/shelljs/shelljs/issues/161)
715
- - Q.ninvoke\(\) returns undefined [\#153](https://github.com/shelljs/shelljs/issues/153)
716
- - installed shelljs on osx but reported error: npm ERR! 404 '%5B-g%5D' is not in the npm registry. [\#124](https://github.com/shelljs/shelljs/issues/124)
717
- - "ln" not found \(OS X\) [\#106](https://github.com/shelljs/shelljs/issues/106)
718
- - Using shelljs in a CLI app. [\#91](https://github.com/shelljs/shelljs/issues/91)
719
-
720
- **Merged pull requests:**
721
-
722
- - Breaking: Allow -- as args separators \(fixes \#188\) [\#207](https://github.com/shelljs/shelljs/pull/207) ([nzakas](https://github.com/nzakas))
723
- - Update .travis.yml [\#190](https://github.com/shelljs/shelljs/pull/190) ([arturadib](https://github.com/arturadib))
724
- - Use new child\_process.execSync instead of busywaiting [\#189](https://github.com/shelljs/shelljs/pull/189) ([madd512](https://github.com/madd512))
725
- - Update README.md: explains how to access "config" [\#145](https://github.com/shelljs/shelljs/pull/145) ([kerphi](https://github.com/kerphi))
726
- - Fix to set state.error before throw the exception [\#120](https://github.com/shelljs/shelljs/pull/120) ([abdul-martinez](https://github.com/abdul-martinez))
727
- - Add -l and -s support to grep. [\#116](https://github.com/shelljs/shelljs/pull/116) ([idearat](https://github.com/idearat))
728
-
729
- ## [v0.3.0](https://github.com/shelljs/shelljs/tree/v0.3.0) (2014-05-08)
730
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.2.6...v0.3.0)
731
-
732
- **Closed issues:**
733
-
734
- - grep\(\) should fully support globing [\#118](https://github.com/shelljs/shelljs/issues/118)
735
- - sed\(\) could support replacement function [\#115](https://github.com/shelljs/shelljs/issues/115)
736
- - How would you close an exec process that runs indefinitely? [\#113](https://github.com/shelljs/shelljs/issues/113)
737
- - listen for intermittent output of a long-running child process [\#111](https://github.com/shelljs/shelljs/issues/111)
738
- - Cannot find module 'shelljs' after installing shelljs with npm [\#109](https://github.com/shelljs/shelljs/issues/109)
739
- - Massive CPU usage on exec\(\) windows [\#108](https://github.com/shelljs/shelljs/issues/108)
740
- - cp skipping dot files? [\#79](https://github.com/shelljs/shelljs/issues/79)
741
- - $variables in exec\(\) aren't handled correctly [\#11](https://github.com/shelljs/shelljs/issues/11)
742
- - debug flag that prints commands instead of executing [\#8](https://github.com/shelljs/shelljs/issues/8)
743
-
744
- **Merged pull requests:**
745
-
746
- - grep\(\) support for globing, fixes \#118 [\#119](https://github.com/shelljs/shelljs/pull/119) ([utensil](https://github.com/utensil))
747
- - make sed\(\) support replacement function, fixes \#115 [\#117](https://github.com/shelljs/shelljs/pull/117) ([utensil](https://github.com/utensil))
748
- - which\(\) should only find files, not directories [\#110](https://github.com/shelljs/shelljs/pull/110) ([panrafal](https://github.com/panrafal))
749
- - Added the New BSD license to the package.json. [\#105](https://github.com/shelljs/shelljs/pull/105) ([keskival](https://github.com/keskival))
750
- - Added win32 support to ln [\#104](https://github.com/shelljs/shelljs/pull/104) ([jamon](https://github.com/jamon))
751
- - Fix ln using bad paths when given abspaths. [\#89](https://github.com/shelljs/shelljs/pull/89) ([Schoonology](https://github.com/Schoonology))
752
- - Add ln support, including both -s and -f options. [\#88](https://github.com/shelljs/shelljs/pull/88) ([Schoonology](https://github.com/Schoonology))
753
- - add support for symlinking \(junctions\) on win32 [\#87](https://github.com/shelljs/shelljs/pull/87) ([jamon](https://github.com/jamon))
754
-
755
- ## [v0.2.6](https://github.com/shelljs/shelljs/tree/v0.2.6) (2013-09-22)
756
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.2.5...v0.2.6)
757
-
758
- **Closed issues:**
759
-
760
- - Versions 0.2.4 and 0.2.3 keep throwing strange errors [\#82](https://github.com/shelljs/shelljs/issues/82)
761
- - Add global pollution tests [\#33](https://github.com/shelljs/shelljs/issues/33)
762
-
763
- ## [v0.2.5](https://github.com/shelljs/shelljs/tree/v0.2.5) (2013-09-11)
764
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.2.4...v0.2.5)
765
-
766
- **Closed issues:**
767
-
768
- - shelljs.exec stalls on Red Hat when script is invoked with 'sudo -u username' [\#72](https://github.com/shelljs/shelljs/issues/72)
769
-
770
- ## [v0.2.4](https://github.com/shelljs/shelljs/tree/v0.2.4) (2013-09-11)
771
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.2.3...v0.2.4)
772
-
773
- ## [v0.2.3](https://github.com/shelljs/shelljs/tree/v0.2.3) (2013-09-09)
774
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.2.2...v0.2.3)
775
-
776
- **Merged pull requests:**
777
-
778
- - Make shell.exec\(\) treat process error return codes as shelljs errors [\#80](https://github.com/shelljs/shelljs/pull/80) ([nilsbunger](https://github.com/nilsbunger))
779
-
780
- ## [v0.2.2](https://github.com/shelljs/shelljs/tree/v0.2.2) (2013-09-02)
781
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.1.4...v0.2.2)
782
-
783
- **Closed issues:**
784
-
785
- - which and node\_modules [\#63](https://github.com/shelljs/shelljs/issues/63)
786
- - cannot install with nodejs 0.10.2 [\#57](https://github.com/shelljs/shelljs/issues/57)
787
-
788
- **Merged pull requests:**
789
-
790
- - Addition of a toEnd\(\) function modeled after the Unix \>\> pipe. [\#78](https://github.com/shelljs/shelljs/pull/78) ([a10y](https://github.com/a10y))
791
- - Added appendTo\(\) function to imitate '\>\>' redirect-and-append pipe. [\#75](https://github.com/shelljs/shelljs/pull/75) ([a10y](https://github.com/a10y))
792
- - Fix a small typo in README.md [\#71](https://github.com/shelljs/shelljs/pull/71) ([asmblah](https://github.com/asmblah))
793
- - adding an `.npmignore` file [\#70](https://github.com/shelljs/shelljs/pull/70) ([stephenmathieson](https://github.com/stephenmathieson))
794
- - tempdir: use `os.tmpDir` when possible [\#67](https://github.com/shelljs/shelljs/pull/67) ([stephenmathieson](https://github.com/stephenmathieson))
795
-
796
- ## [v0.1.4](https://github.com/shelljs/shelljs/tree/v0.1.4) (2013-05-10)
797
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.1.3...v0.1.4)
798
-
799
- **Merged pull requests:**
800
-
801
- - removing extra fs calls [\#62](https://github.com/shelljs/shelljs/pull/62) ([stephenmathieson](https://github.com/stephenmathieson))
802
- - moving \_jshint\_ to a development dependency [\#61](https://github.com/shelljs/shelljs/pull/61) ([stephenmathieson](https://github.com/stephenmathieson))
803
- - Make the maximum buffersize 20 MB. [\#59](https://github.com/shelljs/shelljs/pull/59) ([waddlesplash](https://github.com/waddlesplash))
804
-
805
- ## [v0.1.3](https://github.com/shelljs/shelljs/tree/v0.1.3) (2013-04-21)
806
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.1.2...v0.1.3)
807
-
808
- **Merged pull requests:**
809
-
810
- - test\('-L', badlink\) should return true [\#56](https://github.com/shelljs/shelljs/pull/56) ([lge88](https://github.com/lge88))
811
- - exec options now allows `silent:true` with callback. [\#54](https://github.com/shelljs/shelljs/pull/54) ([iapain](https://github.com/iapain))
812
- - Add Zepto to README [\#53](https://github.com/shelljs/shelljs/pull/53) ([madrobby](https://github.com/madrobby))
813
-
814
- ## [v0.1.2](https://github.com/shelljs/shelljs/tree/v0.1.2) (2013-01-08)
815
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.1.1...v0.1.2)
816
-
817
- **Closed issues:**
818
-
819
- - pushd/popd [\#24](https://github.com/shelljs/shelljs/issues/24)
820
-
821
- **Merged pull requests:**
822
-
823
- - Implemented chmod command. Github issue 35 [\#48](https://github.com/shelljs/shelljs/pull/48) ([brandonramirez](https://github.com/brandonramirez))
824
-
825
- ## [v0.1.1](https://github.com/shelljs/shelljs/tree/v0.1.1) (2013-01-01)
826
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.1.0...v0.1.1)
827
-
828
- **Merged pull requests:**
829
-
830
- - Work in progress: pushd/popd/dirs [\#47](https://github.com/shelljs/shelljs/pull/47) ([mstade](https://github.com/mstade))
831
-
832
- ## [v0.1.0](https://github.com/shelljs/shelljs/tree/v0.1.0) (2012-12-26)
833
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.0.9...v0.1.0)
834
-
835
- **Closed issues:**
836
-
837
- - test\(\) for binary file? [\#45](https://github.com/shelljs/shelljs/issues/45)
838
- - Inconsistent behaviour of cp command with directories. [\#44](https://github.com/shelljs/shelljs/issues/44)
839
- - Executing SSH with ShellJs [\#43](https://github.com/shelljs/shelljs/issues/43)
840
-
841
- **Merged pull requests:**
842
-
843
- - Fix for \#44 [\#46](https://github.com/shelljs/shelljs/pull/46) ([mstade](https://github.com/mstade))
844
- - Fix single/double quotes in exec [\#42](https://github.com/shelljs/shelljs/pull/42) ([danielepolencic](https://github.com/danielepolencic))
845
-
846
- ## [v0.0.9](https://github.com/shelljs/shelljs/tree/v0.0.9) (2012-12-01)
847
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.0.8...v0.0.9)
848
-
849
- **Closed issues:**
850
-
851
- - silent output [\#40](https://github.com/shelljs/shelljs/issues/40)
852
- - asynchronous exec [\#34](https://github.com/shelljs/shelljs/issues/34)
853
-
854
- **Merged pull requests:**
855
-
856
- - Passed process arguments to executable script [\#36](https://github.com/shelljs/shelljs/pull/36) ([Zanisimo](https://github.com/Zanisimo))
857
-
858
- ## [v0.0.8](https://github.com/shelljs/shelljs/tree/v0.0.8) (2012-10-11)
859
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.0.7...v0.0.8)
860
-
861
- **Closed issues:**
862
-
863
- - exec with callback should automatically be async [\#31](https://github.com/shelljs/shelljs/issues/31)
864
- - Exporting variables. [\#30](https://github.com/shelljs/shelljs/issues/30)
865
- - Detecting shelljs/node [\#27](https://github.com/shelljs/shelljs/issues/27)
866
-
867
- **Merged pull requests:**
868
-
869
- - fix: global leak 'stats' [\#29](https://github.com/shelljs/shelljs/pull/29) ([ando-takahiro](https://github.com/ando-takahiro))
870
- - -a includes . and ..; -A does not [\#28](https://github.com/shelljs/shelljs/pull/28) ([aeosynth](https://github.com/aeosynth))
871
-
872
- ## [v0.0.7](https://github.com/shelljs/shelljs/tree/v0.0.7) (2012-09-23)
873
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.0.6...v0.0.7)
874
-
875
- **Closed issues:**
876
-
877
- - gh-pages: clicking 'fork me' just reloads the page [\#26](https://github.com/shelljs/shelljs/issues/26)
878
- - Not declared local var implies possible memory leak [\#21](https://github.com/shelljs/shelljs/issues/21)
879
- - Cannot echo a string that starts with - [\#20](https://github.com/shelljs/shelljs/issues/20)
880
- - Unexpected cp behaviour with directories [\#15](https://github.com/shelljs/shelljs/issues/15)
881
-
882
- **Merged pull requests:**
883
-
884
- - add primaries to \_test [\#23](https://github.com/shelljs/shelljs/pull/23) ([aeosynth](https://github.com/aeosynth))
885
-
886
- ## [v0.0.6](https://github.com/shelljs/shelljs/tree/v0.0.6) (2012-08-07)
887
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.0.6pre2...v0.0.6)
888
-
889
- **Merged pull requests:**
890
-
891
- - Fixed a global variable leak [\#16](https://github.com/shelljs/shelljs/pull/16) ([dallonf](https://github.com/dallonf))
892
-
893
- ## [v0.0.6pre2](https://github.com/shelljs/shelljs/tree/v0.0.6pre2) (2012-05-25)
894
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.0.6pre1...v0.0.6pre2)
895
-
896
- ## [v0.0.6pre1](https://github.com/shelljs/shelljs/tree/v0.0.6pre1) (2012-05-25)
897
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.0.5...v0.0.6pre1)
898
-
899
- ## [v0.0.5](https://github.com/shelljs/shelljs/tree/v0.0.5) (2012-05-24)
900
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.0.5pre4...v0.0.5)
901
-
902
- **Closed issues:**
903
-
904
- - global.key assigned value 'async' as a result of shell.exec\(...\) [\#12](https://github.com/shelljs/shelljs/issues/12)
905
-
906
- **Merged pull requests:**
907
-
908
- - Add support for grep option -v. [\#13](https://github.com/shelljs/shelljs/pull/13) ([kkujala](https://github.com/kkujala))
909
-
910
- ## [v0.0.5pre4](https://github.com/shelljs/shelljs/tree/v0.0.5pre4) (2012-03-27)
911
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.0.5pre3...v0.0.5pre4)
912
-
913
- ## [v0.0.5pre3](https://github.com/shelljs/shelljs/tree/v0.0.5pre3) (2012-03-27)
914
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.0.5pre2...v0.0.5pre3)
915
-
916
- ## [v0.0.5pre2](https://github.com/shelljs/shelljs/tree/v0.0.5pre2) (2012-03-26)
917
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.0.5pre1...v0.0.5pre2)
918
-
919
- ## [v0.0.5pre1](https://github.com/shelljs/shelljs/tree/v0.0.5pre1) (2012-03-26)
920
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.0.4...v0.0.5pre1)
921
-
922
- **Closed issues:**
923
-
924
- - rm\(\) does not respect read/write modes [\#6](https://github.com/shelljs/shelljs/issues/6)
925
-
926
- ## [v0.0.4](https://github.com/shelljs/shelljs/tree/v0.0.4) (2012-03-22)
927
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.0.3...v0.0.4)
928
-
929
- **Closed issues:**
930
-
931
- - "For convenient iteration via `for in`, ..."? [\#4](https://github.com/shelljs/shelljs/issues/4)
932
-
933
- ## [v0.0.3](https://github.com/shelljs/shelljs/tree/v0.0.3) (2012-03-21)
934
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.0.2...v0.0.3)
935
-
936
- ## [v0.0.2](https://github.com/shelljs/shelljs/tree/v0.0.2) (2012-03-15)
937
- [Full Changelog](https://github.com/shelljs/shelljs/compare/v0.0.2pre1...v0.0.2)
938
-
939
- ## [v0.0.2pre1](https://github.com/shelljs/shelljs/tree/v0.0.2pre1) (2012-03-03)
940
-
941
-
942
- \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*