@effect/platform-bun 0.16.3 → 0.16.4

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 (362) hide show
  1. package/dist/cjs/BunContext.js +46 -0
  2. package/dist/cjs/BunContext.js.map +1 -0
  3. package/dist/cjs/Command.js +103 -0
  4. package/dist/cjs/Command.js.map +1 -0
  5. package/dist/cjs/CommandExecutor.js +19 -0
  6. package/dist/cjs/CommandExecutor.js.map +1 -0
  7. package/dist/cjs/Effectify.js +13 -0
  8. package/dist/cjs/Effectify.js.map +1 -0
  9. package/dist/cjs/Error.js +25 -0
  10. package/dist/cjs/Error.js.map +1 -0
  11. package/dist/cjs/FileSystem.js +25 -0
  12. package/dist/cjs/FileSystem.js.map +1 -0
  13. package/dist/cjs/Http/Platform.js +63 -0
  14. package/dist/cjs/Http/Platform.js.map +1 -0
  15. package/dist/cjs/Http/Server.js +69 -0
  16. package/dist/cjs/Http/Server.js.map +1 -0
  17. package/dist/cjs/Http/ServerRequest.js +57 -0
  18. package/dist/cjs/Http/ServerRequest.js.map +1 -0
  19. package/dist/cjs/HttpClient.js +46 -0
  20. package/dist/cjs/HttpClient.js.map +1 -0
  21. package/dist/cjs/HttpServer.js +56 -0
  22. package/dist/cjs/HttpServer.js.map +1 -0
  23. package/dist/cjs/KeyValueStore.js +28 -0
  24. package/dist/cjs/KeyValueStore.js.map +1 -0
  25. package/dist/cjs/Path.js +31 -0
  26. package/dist/cjs/Path.js.map +1 -0
  27. package/dist/cjs/Runtime.js +19 -0
  28. package/dist/cjs/Runtime.js.map +1 -0
  29. package/dist/cjs/Sink.js +13 -0
  30. package/dist/cjs/Sink.js.map +1 -0
  31. package/dist/cjs/Stream.js +43 -0
  32. package/dist/cjs/Stream.js.map +1 -0
  33. package/dist/cjs/Worker.js +75 -0
  34. package/dist/cjs/Worker.js.map +1 -0
  35. package/dist/cjs/WorkerRunner.js +63 -0
  36. package/dist/cjs/WorkerRunner.js.map +1 -0
  37. package/dist/cjs/index.js +62 -0
  38. package/dist/cjs/index.js.map +1 -0
  39. package/dist/cjs/internal/http/platform.js +61 -0
  40. package/dist/cjs/internal/http/platform.js.map +1 -0
  41. package/dist/cjs/internal/http/server.js +277 -0
  42. package/dist/cjs/internal/http/server.js.map +1 -0
  43. package/dist/cjs/internal/worker.js +87 -0
  44. package/dist/cjs/internal/worker.js.map +1 -0
  45. package/dist/cjs/internal/workerRunner.js +81 -0
  46. package/dist/cjs/internal/workerRunner.js.map +1 -0
  47. package/dist/dts/BunContext.d.ts.map +1 -0
  48. package/dist/dts/Command.d.ts.map +1 -0
  49. package/dist/dts/CommandExecutor.d.ts.map +1 -0
  50. package/dist/dts/Effectify.d.ts.map +1 -0
  51. package/dist/dts/Error.d.ts.map +1 -0
  52. package/dist/dts/FileSystem.d.ts.map +1 -0
  53. package/dist/dts/Http/Platform.d.ts.map +1 -0
  54. package/dist/dts/Http/Server.d.ts.map +1 -0
  55. package/dist/{declarations/src → dts}/Http/ServerRequest.d.ts +1 -1
  56. package/dist/dts/Http/ServerRequest.d.ts.map +1 -0
  57. package/dist/dts/HttpClient.d.ts.map +1 -0
  58. package/dist/{declarations/src → dts}/HttpServer.d.ts +1 -1
  59. package/dist/dts/HttpServer.d.ts.map +1 -0
  60. package/dist/dts/KeyValueStore.d.ts.map +1 -0
  61. package/dist/dts/Path.d.ts.map +1 -0
  62. package/dist/dts/Runtime.d.ts.map +1 -0
  63. package/dist/dts/Sink.d.ts.map +1 -0
  64. package/dist/dts/Stream.d.ts.map +1 -0
  65. package/dist/dts/Worker.d.ts.map +1 -0
  66. package/dist/dts/WorkerRunner.d.ts.map +1 -0
  67. package/dist/dts/index.d.ts.map +1 -0
  68. package/dist/dts/internal/http/platform.d.ts +2 -0
  69. package/dist/dts/internal/http/platform.d.ts.map +1 -0
  70. package/dist/dts/internal/http/server.d.ts +2 -0
  71. package/dist/dts/internal/http/server.d.ts.map +1 -0
  72. package/dist/dts/internal/worker.d.ts +2 -0
  73. package/dist/dts/internal/worker.d.ts.map +1 -0
  74. package/dist/dts/internal/workerRunner.d.ts +2 -0
  75. package/dist/dts/internal/workerRunner.d.ts.map +1 -0
  76. package/dist/esm/BunContext.js +14 -0
  77. package/dist/esm/BunContext.js.map +1 -0
  78. package/dist/esm/Command.js +85 -0
  79. package/dist/esm/Command.js.map +1 -0
  80. package/dist/esm/CommandExecutor.js +15 -0
  81. package/dist/esm/CommandExecutor.js.map +1 -0
  82. package/dist/esm/Effectify.js +10 -0
  83. package/dist/esm/Effectify.js.map +1 -0
  84. package/dist/esm/Error.js +20 -0
  85. package/dist/esm/Error.js.map +1 -0
  86. package/dist/esm/FileSystem.js +20 -0
  87. package/dist/esm/FileSystem.js.map +1 -0
  88. package/dist/esm/Http/Platform.js +16 -0
  89. package/dist/esm/Http/Platform.js.map +1 -0
  90. package/dist/esm/Http/Server.js +21 -0
  91. package/dist/esm/Http/Server.js.map +1 -0
  92. package/dist/esm/Http/ServerRequest.js +11 -0
  93. package/dist/esm/Http/ServerRequest.js.map +1 -0
  94. package/dist/esm/HttpClient.js +61 -0
  95. package/dist/esm/HttpClient.js.map +1 -0
  96. package/dist/esm/HttpServer.js +101 -0
  97. package/dist/esm/HttpServer.js.map +1 -0
  98. package/dist/esm/KeyValueStore.js +13 -0
  99. package/dist/esm/KeyValueStore.js.map +1 -0
  100. package/dist/esm/Path.js +25 -0
  101. package/dist/esm/Path.js.map +1 -0
  102. package/dist/esm/Runtime.js +15 -0
  103. package/dist/esm/Runtime.js.map +1 -0
  104. package/dist/esm/Sink.js +10 -0
  105. package/dist/esm/Sink.js.map +1 -0
  106. package/dist/esm/Stream.js +35 -0
  107. package/dist/esm/Stream.js.map +1 -0
  108. package/dist/esm/Worker.js +26 -0
  109. package/dist/esm/Worker.js.map +1 -0
  110. package/dist/esm/WorkerRunner.js +16 -0
  111. package/dist/esm/WorkerRunner.js.map +1 -0
  112. package/dist/esm/index.js +67 -0
  113. package/dist/esm/index.js.map +1 -0
  114. package/dist/esm/internal/http/platform.js +30 -0
  115. package/dist/esm/internal/http/platform.js.map +1 -0
  116. package/dist/{server-ef916cce.esm.js → esm/internal/http/server.js} +37 -30
  117. package/dist/esm/internal/http/server.js.map +1 -0
  118. package/{Worker/dist/effect-platform-bun-Worker.esm.js → dist/esm/internal/worker.js} +12 -49
  119. package/dist/esm/internal/worker.js.map +1 -0
  120. package/{WorkerRunner/dist/effect-platform-bun-WorkerRunner.esm.js → dist/esm/internal/workerRunner.js} +8 -31
  121. package/dist/esm/internal/workerRunner.js.map +1 -0
  122. package/dist/esm/package.json +4 -0
  123. package/package.json +105 -139
  124. package/src/BunContext.ts +3 -3
  125. package/src/Http/Platform.ts +2 -2
  126. package/src/Http/Server.ts +2 -2
  127. package/src/Http/ServerRequest.ts +1 -1
  128. package/src/HttpServer.ts +2 -2
  129. package/src/Worker.ts +1 -1
  130. package/src/WorkerRunner.ts +1 -1
  131. package/src/index.ts +15 -15
  132. package/src/internal/http/platform.ts +1 -1
  133. package/src/internal/http/server.ts +1 -1
  134. package/BunContext/dist/effect-platform-bun-BunContext.cjs.d.mts +0 -2
  135. package/BunContext/dist/effect-platform-bun-BunContext.cjs.d.mts.map +0 -1
  136. package/BunContext/dist/effect-platform-bun-BunContext.cjs.d.ts +0 -2
  137. package/BunContext/dist/effect-platform-bun-BunContext.cjs.d.ts.map +0 -1
  138. package/BunContext/dist/effect-platform-bun-BunContext.cjs.dev.js +0 -46
  139. package/BunContext/dist/effect-platform-bun-BunContext.cjs.js +0 -7
  140. package/BunContext/dist/effect-platform-bun-BunContext.cjs.mjs +0 -3
  141. package/BunContext/dist/effect-platform-bun-BunContext.cjs.prod.js +0 -46
  142. package/BunContext/dist/effect-platform-bun-BunContext.esm.js +0 -22
  143. package/BunContext/package.json +0 -4
  144. package/Command/dist/effect-platform-bun-Command.cjs.d.mts +0 -2
  145. package/Command/dist/effect-platform-bun-Command.cjs.d.mts.map +0 -1
  146. package/Command/dist/effect-platform-bun-Command.cjs.d.ts +0 -2
  147. package/Command/dist/effect-platform-bun-Command.cjs.d.ts.map +0 -1
  148. package/Command/dist/effect-platform-bun-Command.cjs.dev.js +0 -72
  149. package/Command/dist/effect-platform-bun-Command.cjs.js +0 -7
  150. package/Command/dist/effect-platform-bun-Command.cjs.mjs +0 -18
  151. package/Command/dist/effect-platform-bun-Command.cjs.prod.js +0 -72
  152. package/Command/dist/effect-platform-bun-Command.esm.js +0 -1
  153. package/Command/package.json +0 -4
  154. package/CommandExecutor/dist/effect-platform-bun-CommandExecutor.cjs.d.mts +0 -2
  155. package/CommandExecutor/dist/effect-platform-bun-CommandExecutor.cjs.d.mts.map +0 -1
  156. package/CommandExecutor/dist/effect-platform-bun-CommandExecutor.cjs.d.ts +0 -2
  157. package/CommandExecutor/dist/effect-platform-bun-CommandExecutor.cjs.d.ts.map +0 -1
  158. package/CommandExecutor/dist/effect-platform-bun-CommandExecutor.cjs.dev.js +0 -16
  159. package/CommandExecutor/dist/effect-platform-bun-CommandExecutor.cjs.js +0 -7
  160. package/CommandExecutor/dist/effect-platform-bun-CommandExecutor.cjs.mjs +0 -4
  161. package/CommandExecutor/dist/effect-platform-bun-CommandExecutor.cjs.prod.js +0 -16
  162. package/CommandExecutor/dist/effect-platform-bun-CommandExecutor.esm.js +0 -1
  163. package/CommandExecutor/package.json +0 -4
  164. package/Effectify/dist/effect-platform-bun-Effectify.cjs.d.mts +0 -2
  165. package/Effectify/dist/effect-platform-bun-Effectify.cjs.d.mts.map +0 -1
  166. package/Effectify/dist/effect-platform-bun-Effectify.cjs.d.ts +0 -2
  167. package/Effectify/dist/effect-platform-bun-Effectify.cjs.d.ts.map +0 -1
  168. package/Effectify/dist/effect-platform-bun-Effectify.cjs.dev.js +0 -12
  169. package/Effectify/dist/effect-platform-bun-Effectify.cjs.js +0 -7
  170. package/Effectify/dist/effect-platform-bun-Effectify.cjs.mjs +0 -3
  171. package/Effectify/dist/effect-platform-bun-Effectify.cjs.prod.js +0 -12
  172. package/Effectify/dist/effect-platform-bun-Effectify.esm.js +0 -1
  173. package/Effectify/package.json +0 -4
  174. package/Error/dist/effect-platform-bun-Error.cjs.d.mts +0 -2
  175. package/Error/dist/effect-platform-bun-Error.cjs.d.mts.map +0 -1
  176. package/Error/dist/effect-platform-bun-Error.cjs.d.ts +0 -2
  177. package/Error/dist/effect-platform-bun-Error.cjs.d.ts.map +0 -1
  178. package/Error/dist/effect-platform-bun-Error.cjs.dev.js +0 -20
  179. package/Error/dist/effect-platform-bun-Error.cjs.js +0 -7
  180. package/Error/dist/effect-platform-bun-Error.cjs.mjs +0 -5
  181. package/Error/dist/effect-platform-bun-Error.cjs.prod.js +0 -20
  182. package/Error/dist/effect-platform-bun-Error.esm.js +0 -1
  183. package/Error/package.json +0 -4
  184. package/FileSystem/dist/effect-platform-bun-FileSystem.cjs.d.mts +0 -2
  185. package/FileSystem/dist/effect-platform-bun-FileSystem.cjs.d.mts.map +0 -1
  186. package/FileSystem/dist/effect-platform-bun-FileSystem.cjs.d.ts +0 -2
  187. package/FileSystem/dist/effect-platform-bun-FileSystem.cjs.d.ts.map +0 -1
  188. package/FileSystem/dist/effect-platform-bun-FileSystem.cjs.dev.js +0 -20
  189. package/FileSystem/dist/effect-platform-bun-FileSystem.cjs.js +0 -7
  190. package/FileSystem/dist/effect-platform-bun-FileSystem.cjs.mjs +0 -5
  191. package/FileSystem/dist/effect-platform-bun-FileSystem.cjs.prod.js +0 -20
  192. package/FileSystem/dist/effect-platform-bun-FileSystem.esm.js +0 -1
  193. package/FileSystem/package.json +0 -4
  194. package/Http/Platform/dist/effect-platform-bun-Http-Platform.cjs.d.mts +0 -2
  195. package/Http/Platform/dist/effect-platform-bun-Http-Platform.cjs.d.mts.map +0 -1
  196. package/Http/Platform/dist/effect-platform-bun-Http-Platform.cjs.d.ts +0 -2
  197. package/Http/Platform/dist/effect-platform-bun-Http-Platform.cjs.d.ts.map +0 -1
  198. package/Http/Platform/dist/effect-platform-bun-Http-Platform.cjs.dev.js +0 -85
  199. package/Http/Platform/dist/effect-platform-bun-Http-Platform.cjs.js +0 -7
  200. package/Http/Platform/dist/effect-platform-bun-Http-Platform.cjs.mjs +0 -1
  201. package/Http/Platform/dist/effect-platform-bun-Http-Platform.cjs.prod.js +0 -85
  202. package/Http/Platform/dist/effect-platform-bun-Http-Platform.esm.js +0 -52
  203. package/Http/Platform/package.json +0 -4
  204. package/Http/Server/dist/effect-platform-bun-Http-Server.cjs.d.mts +0 -2
  205. package/Http/Server/dist/effect-platform-bun-Http-Server.cjs.d.mts.map +0 -1
  206. package/Http/Server/dist/effect-platform-bun-Http-Server.cjs.d.ts +0 -2
  207. package/Http/Server/dist/effect-platform-bun-Http-Server.cjs.d.ts.map +0 -1
  208. package/Http/Server/dist/effect-platform-bun-Http-Server.cjs.dev.js +0 -41
  209. package/Http/Server/dist/effect-platform-bun-Http-Server.cjs.js +0 -7
  210. package/Http/Server/dist/effect-platform-bun-Http-Server.cjs.mjs +0 -1
  211. package/Http/Server/dist/effect-platform-bun-Http-Server.cjs.prod.js +0 -41
  212. package/Http/Server/dist/effect-platform-bun-Http-Server.esm.js +0 -25
  213. package/Http/Server/package.json +0 -4
  214. package/Http/ServerRequest/dist/effect-platform-bun-Http-ServerRequest.cjs.d.mts +0 -2
  215. package/Http/ServerRequest/dist/effect-platform-bun-Http-ServerRequest.cjs.d.mts.map +0 -1
  216. package/Http/ServerRequest/dist/effect-platform-bun-Http-ServerRequest.cjs.d.ts +0 -2
  217. package/Http/ServerRequest/dist/effect-platform-bun-Http-ServerRequest.cjs.d.ts.map +0 -1
  218. package/Http/ServerRequest/dist/effect-platform-bun-Http-ServerRequest.cjs.dev.js +0 -48
  219. package/Http/ServerRequest/dist/effect-platform-bun-Http-ServerRequest.cjs.js +0 -7
  220. package/Http/ServerRequest/dist/effect-platform-bun-Http-ServerRequest.cjs.mjs +0 -1
  221. package/Http/ServerRequest/dist/effect-platform-bun-Http-ServerRequest.cjs.prod.js +0 -48
  222. package/Http/ServerRequest/dist/effect-platform-bun-Http-ServerRequest.esm.js +0 -38
  223. package/Http/ServerRequest/package.json +0 -4
  224. package/HttpClient/dist/effect-platform-bun-HttpClient.cjs.d.mts +0 -2
  225. package/HttpClient/dist/effect-platform-bun-HttpClient.cjs.d.mts.map +0 -1
  226. package/HttpClient/dist/effect-platform-bun-HttpClient.cjs.d.ts +0 -2
  227. package/HttpClient/dist/effect-platform-bun-HttpClient.cjs.d.ts.map +0 -1
  228. package/HttpClient/dist/effect-platform-bun-HttpClient.cjs.dev.js +0 -47
  229. package/HttpClient/dist/effect-platform-bun-HttpClient.cjs.js +0 -7
  230. package/HttpClient/dist/effect-platform-bun-HttpClient.cjs.mjs +0 -9
  231. package/HttpClient/dist/effect-platform-bun-HttpClient.cjs.prod.js +0 -47
  232. package/HttpClient/dist/effect-platform-bun-HttpClient.esm.js +0 -14
  233. package/HttpClient/package.json +0 -4
  234. package/HttpServer/dist/effect-platform-bun-HttpServer.cjs.d.mts +0 -2
  235. package/HttpServer/dist/effect-platform-bun-HttpServer.cjs.d.mts.map +0 -1
  236. package/HttpServer/dist/effect-platform-bun-HttpServer.cjs.d.ts +0 -2
  237. package/HttpServer/dist/effect-platform-bun-HttpServer.cjs.d.ts.map +0 -1
  238. package/HttpServer/dist/effect-platform-bun-HttpServer.cjs.dev.js +0 -77
  239. package/HttpServer/dist/effect-platform-bun-HttpServer.cjs.js +0 -7
  240. package/HttpServer/dist/effect-platform-bun-HttpServer.cjs.mjs +0 -14
  241. package/HttpServer/dist/effect-platform-bun-HttpServer.cjs.prod.js +0 -77
  242. package/HttpServer/dist/effect-platform-bun-HttpServer.esm.js +0 -39
  243. package/HttpServer/package.json +0 -4
  244. package/KeyValueStore/dist/effect-platform-bun-KeyValueStore.cjs.d.mts +0 -2
  245. package/KeyValueStore/dist/effect-platform-bun-KeyValueStore.cjs.d.mts.map +0 -1
  246. package/KeyValueStore/dist/effect-platform-bun-KeyValueStore.cjs.d.ts +0 -2
  247. package/KeyValueStore/dist/effect-platform-bun-KeyValueStore.cjs.d.ts.map +0 -1
  248. package/KeyValueStore/dist/effect-platform-bun-KeyValueStore.cjs.dev.js +0 -19
  249. package/KeyValueStore/dist/effect-platform-bun-KeyValueStore.cjs.js +0 -7
  250. package/KeyValueStore/dist/effect-platform-bun-KeyValueStore.cjs.mjs +0 -1
  251. package/KeyValueStore/dist/effect-platform-bun-KeyValueStore.cjs.prod.js +0 -19
  252. package/KeyValueStore/dist/effect-platform-bun-KeyValueStore.esm.js +0 -2
  253. package/KeyValueStore/package.json +0 -4
  254. package/Path/dist/effect-platform-bun-Path.cjs.d.mts +0 -2
  255. package/Path/dist/effect-platform-bun-Path.cjs.d.mts.map +0 -1
  256. package/Path/dist/effect-platform-bun-Path.cjs.d.ts +0 -2
  257. package/Path/dist/effect-platform-bun-Path.cjs.d.ts.map +0 -1
  258. package/Path/dist/effect-platform-bun-Path.cjs.dev.js +0 -24
  259. package/Path/dist/effect-platform-bun-Path.cjs.js +0 -7
  260. package/Path/dist/effect-platform-bun-Path.cjs.mjs +0 -6
  261. package/Path/dist/effect-platform-bun-Path.cjs.prod.js +0 -24
  262. package/Path/dist/effect-platform-bun-Path.esm.js +0 -1
  263. package/Path/package.json +0 -4
  264. package/Runtime/dist/effect-platform-bun-Runtime.cjs.d.mts +0 -2
  265. package/Runtime/dist/effect-platform-bun-Runtime.cjs.d.mts.map +0 -1
  266. package/Runtime/dist/effect-platform-bun-Runtime.cjs.d.ts +0 -2
  267. package/Runtime/dist/effect-platform-bun-Runtime.cjs.d.ts.map +0 -1
  268. package/Runtime/dist/effect-platform-bun-Runtime.cjs.dev.js +0 -16
  269. package/Runtime/dist/effect-platform-bun-Runtime.cjs.js +0 -7
  270. package/Runtime/dist/effect-platform-bun-Runtime.cjs.mjs +0 -4
  271. package/Runtime/dist/effect-platform-bun-Runtime.cjs.prod.js +0 -16
  272. package/Runtime/dist/effect-platform-bun-Runtime.esm.js +0 -1
  273. package/Runtime/package.json +0 -4
  274. package/Sink/dist/effect-platform-bun-Sink.cjs.d.mts +0 -2
  275. package/Sink/dist/effect-platform-bun-Sink.cjs.d.mts.map +0 -1
  276. package/Sink/dist/effect-platform-bun-Sink.cjs.d.ts +0 -2
  277. package/Sink/dist/effect-platform-bun-Sink.cjs.d.ts.map +0 -1
  278. package/Sink/dist/effect-platform-bun-Sink.cjs.dev.js +0 -12
  279. package/Sink/dist/effect-platform-bun-Sink.cjs.js +0 -7
  280. package/Sink/dist/effect-platform-bun-Sink.cjs.mjs +0 -3
  281. package/Sink/dist/effect-platform-bun-Sink.cjs.prod.js +0 -12
  282. package/Sink/dist/effect-platform-bun-Sink.esm.js +0 -1
  283. package/Sink/package.json +0 -4
  284. package/Stream/dist/effect-platform-bun-Stream.cjs.d.mts +0 -2
  285. package/Stream/dist/effect-platform-bun-Stream.cjs.d.mts.map +0 -1
  286. package/Stream/dist/effect-platform-bun-Stream.cjs.d.ts +0 -2
  287. package/Stream/dist/effect-platform-bun-Stream.cjs.d.ts.map +0 -1
  288. package/Stream/dist/effect-platform-bun-Stream.cjs.dev.js +0 -32
  289. package/Stream/dist/effect-platform-bun-Stream.cjs.js +0 -7
  290. package/Stream/dist/effect-platform-bun-Stream.cjs.mjs +0 -8
  291. package/Stream/dist/effect-platform-bun-Stream.cjs.prod.js +0 -32
  292. package/Stream/dist/effect-platform-bun-Stream.esm.js +0 -1
  293. package/Stream/package.json +0 -4
  294. package/Worker/dist/effect-platform-bun-Worker.cjs.d.mts +0 -2
  295. package/Worker/dist/effect-platform-bun-Worker.cjs.d.mts.map +0 -1
  296. package/Worker/dist/effect-platform-bun-Worker.cjs.d.ts +0 -2
  297. package/Worker/dist/effect-platform-bun-Worker.cjs.d.ts.map +0 -1
  298. package/Worker/dist/effect-platform-bun-Worker.cjs.dev.js +0 -129
  299. package/Worker/dist/effect-platform-bun-Worker.cjs.js +0 -7
  300. package/Worker/dist/effect-platform-bun-Worker.cjs.mjs +0 -1
  301. package/Worker/dist/effect-platform-bun-Worker.cjs.prod.js +0 -129
  302. package/Worker/package.json +0 -4
  303. package/WorkerRunner/dist/effect-platform-bun-WorkerRunner.cjs.d.mts +0 -2
  304. package/WorkerRunner/dist/effect-platform-bun-WorkerRunner.cjs.d.mts.map +0 -1
  305. package/WorkerRunner/dist/effect-platform-bun-WorkerRunner.cjs.d.ts +0 -2
  306. package/WorkerRunner/dist/effect-platform-bun-WorkerRunner.cjs.d.ts.map +0 -1
  307. package/WorkerRunner/dist/effect-platform-bun-WorkerRunner.cjs.dev.js +0 -105
  308. package/WorkerRunner/dist/effect-platform-bun-WorkerRunner.cjs.js +0 -7
  309. package/WorkerRunner/dist/effect-platform-bun-WorkerRunner.cjs.mjs +0 -1
  310. package/WorkerRunner/dist/effect-platform-bun-WorkerRunner.cjs.prod.js +0 -105
  311. package/WorkerRunner/package.json +0 -4
  312. package/dist/Server-20ce77d1.cjs.dev.js +0 -75
  313. package/dist/Server-567e4d4d.cjs.prod.js +0 -75
  314. package/dist/Server-7caed8e9.esm.js +0 -50
  315. package/dist/declarations/src/BunContext.d.ts.map +0 -1
  316. package/dist/declarations/src/Command.d.ts.map +0 -1
  317. package/dist/declarations/src/CommandExecutor.d.ts.map +0 -1
  318. package/dist/declarations/src/Effectify.d.ts.map +0 -1
  319. package/dist/declarations/src/Error.d.ts.map +0 -1
  320. package/dist/declarations/src/FileSystem.d.ts.map +0 -1
  321. package/dist/declarations/src/Http/Platform.d.ts.map +0 -1
  322. package/dist/declarations/src/Http/Server.d.ts.map +0 -1
  323. package/dist/declarations/src/Http/ServerRequest.d.ts.map +0 -1
  324. package/dist/declarations/src/HttpClient.d.ts.map +0 -1
  325. package/dist/declarations/src/HttpServer.d.ts.map +0 -1
  326. package/dist/declarations/src/KeyValueStore.d.ts.map +0 -1
  327. package/dist/declarations/src/Path.d.ts.map +0 -1
  328. package/dist/declarations/src/Runtime.d.ts.map +0 -1
  329. package/dist/declarations/src/Sink.d.ts.map +0 -1
  330. package/dist/declarations/src/Stream.d.ts.map +0 -1
  331. package/dist/declarations/src/Worker.d.ts.map +0 -1
  332. package/dist/declarations/src/WorkerRunner.d.ts.map +0 -1
  333. package/dist/declarations/src/index.d.ts.map +0 -1
  334. package/dist/effect-platform-bun.cjs.d.mts +0 -2
  335. package/dist/effect-platform-bun.cjs.d.mts.map +0 -1
  336. package/dist/effect-platform-bun.cjs.d.ts +0 -2
  337. package/dist/effect-platform-bun.cjs.d.ts.map +0 -1
  338. package/dist/effect-platform-bun.cjs.dev.js +0 -71
  339. package/dist/effect-platform-bun.cjs.js +0 -7
  340. package/dist/effect-platform-bun.cjs.mjs +0 -17
  341. package/dist/effect-platform-bun.cjs.prod.js +0 -71
  342. package/dist/effect-platform-bun.esm.js +0 -30
  343. package/dist/server-0ebea3db.cjs.dev.js +0 -274
  344. package/dist/server-2a10d1fb.cjs.prod.js +0 -274
  345. package/src/tsconfig.json +0 -48
  346. /package/dist/{declarations/src → dts}/BunContext.d.ts +0 -0
  347. /package/dist/{declarations/src → dts}/Command.d.ts +0 -0
  348. /package/dist/{declarations/src → dts}/CommandExecutor.d.ts +0 -0
  349. /package/dist/{declarations/src → dts}/Effectify.d.ts +0 -0
  350. /package/dist/{declarations/src → dts}/Error.d.ts +0 -0
  351. /package/dist/{declarations/src → dts}/FileSystem.d.ts +0 -0
  352. /package/dist/{declarations/src → dts}/Http/Platform.d.ts +0 -0
  353. /package/dist/{declarations/src → dts}/Http/Server.d.ts +0 -0
  354. /package/dist/{declarations/src → dts}/HttpClient.d.ts +0 -0
  355. /package/dist/{declarations/src → dts}/KeyValueStore.d.ts +0 -0
  356. /package/dist/{declarations/src → dts}/Path.d.ts +0 -0
  357. /package/dist/{declarations/src → dts}/Runtime.d.ts +0 -0
  358. /package/dist/{declarations/src → dts}/Sink.d.ts +0 -0
  359. /package/dist/{declarations/src → dts}/Stream.d.ts +0 -0
  360. /package/dist/{declarations/src → dts}/Worker.d.ts +0 -0
  361. /package/dist/{declarations/src → dts}/WorkerRunner.d.ts +0 -0
  362. /package/dist/{declarations/src → dts}/index.d.ts +0 -0
@@ -23,7 +23,7 @@ import * as Runtime from "effect/Runtime"
23
23
  import type * as Scope from "effect/Scope"
24
24
  import * as Stream from "effect/Stream"
25
25
  import { Readable } from "node:stream"
26
- import * as Platform from "../../Http/Platform"
26
+ import * as Platform from "../../Http/Platform.js"
27
27
 
28
28
  /** @internal */
29
29
  export const make = (
@@ -1,2 +0,0 @@
1
- export * from "../../dist/declarations/src/BunContext.js";
2
- //# sourceMappingURL=effect-platform-bun-BunContext.cjs.d.mts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"effect-platform-bun-BunContext.cjs.d.mts","sourceRoot":"","sources":["../../dist/declarations/src/BunContext.d.ts"],"names":[],"mappings":"AAAA"}
@@ -1,2 +0,0 @@
1
- export * from "../../dist/declarations/src/BunContext";
2
- //# sourceMappingURL=effect-platform-bun-BunContext.cjs.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"effect-platform-bun-BunContext.cjs.d.ts","sourceRoot":"","sources":["../../dist/declarations/src/BunContext.d.ts"],"names":[],"mappings":"AAAA"}
@@ -1,46 +0,0 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, '__esModule', { value: true });
4
-
5
- var Function = require('effect/Function');
6
- var Layer = require('effect/Layer');
7
- var FileSystem = require('@effect/platform-node/FileSystem');
8
- var Path = require('@effect/platform-node/Path');
9
- var CommandExecutor = require('@effect/platform-node/CommandExecutor');
10
-
11
- function _interopNamespace(e) {
12
- if (e && e.__esModule) return e;
13
- var n = Object.create(null);
14
- if (e) {
15
- Object.keys(e).forEach(function (k) {
16
- if (k !== 'default') {
17
- var d = Object.getOwnPropertyDescriptor(e, k);
18
- Object.defineProperty(n, k, d.get ? d : {
19
- enumerable: true,
20
- get: function () { return e[k]; }
21
- });
22
- }
23
- });
24
- }
25
- n["default"] = e;
26
- return Object.freeze(n);
27
- }
28
-
29
- var Layer__namespace = /*#__PURE__*/_interopNamespace(Layer);
30
-
31
- /**
32
- * @since 1.0.0
33
- */
34
-
35
- /**
36
- * @since 1.0.0
37
- * @category models
38
- */
39
-
40
- /**
41
- * @since 1.0.0
42
- * @category layer
43
- */
44
- const layer = /*#__PURE__*/Function.pipe(FileSystem.layer, /*#__PURE__*/Layer__namespace.merge(Path.layer), /*#__PURE__*/Layer__namespace.merge( /*#__PURE__*/Layer__namespace.provideMerge(FileSystem.layer, CommandExecutor.layer)));
45
-
46
- exports.layer = layer;
@@ -1,7 +0,0 @@
1
- 'use strict';
2
-
3
- if (process.env.NODE_ENV === "production") {
4
- module.exports = require("./effect-platform-bun-BunContext.cjs.prod.js");
5
- } else {
6
- module.exports = require("./effect-platform-bun-BunContext.cjs.dev.js");
7
- }
@@ -1,3 +0,0 @@
1
- export {
2
- layer
3
- } from "./effect-platform-bun-BunContext.cjs.js";
@@ -1,46 +0,0 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, '__esModule', { value: true });
4
-
5
- var Function = require('effect/Function');
6
- var Layer = require('effect/Layer');
7
- var FileSystem = require('@effect/platform-node/FileSystem');
8
- var Path = require('@effect/platform-node/Path');
9
- var CommandExecutor = require('@effect/platform-node/CommandExecutor');
10
-
11
- function _interopNamespace(e) {
12
- if (e && e.__esModule) return e;
13
- var n = Object.create(null);
14
- if (e) {
15
- Object.keys(e).forEach(function (k) {
16
- if (k !== 'default') {
17
- var d = Object.getOwnPropertyDescriptor(e, k);
18
- Object.defineProperty(n, k, d.get ? d : {
19
- enumerable: true,
20
- get: function () { return e[k]; }
21
- });
22
- }
23
- });
24
- }
25
- n["default"] = e;
26
- return Object.freeze(n);
27
- }
28
-
29
- var Layer__namespace = /*#__PURE__*/_interopNamespace(Layer);
30
-
31
- /**
32
- * @since 1.0.0
33
- */
34
-
35
- /**
36
- * @since 1.0.0
37
- * @category models
38
- */
39
-
40
- /**
41
- * @since 1.0.0
42
- * @category layer
43
- */
44
- const layer = /*#__PURE__*/Function.pipe(FileSystem.layer, /*#__PURE__*/Layer__namespace.merge(Path.layer), /*#__PURE__*/Layer__namespace.merge( /*#__PURE__*/Layer__namespace.provideMerge(FileSystem.layer, CommandExecutor.layer)));
45
-
46
- exports.layer = layer;
@@ -1,22 +0,0 @@
1
- import { pipe } from 'effect/Function';
2
- import * as Layer from 'effect/Layer';
3
- import { layer as layer$1 } from '@effect/platform-node/FileSystem';
4
- import { layer as layer$2 } from '@effect/platform-node/Path';
5
- import { layer as layer$3 } from '@effect/platform-node/CommandExecutor';
6
-
7
- /**
8
- * @since 1.0.0
9
- */
10
-
11
- /**
12
- * @since 1.0.0
13
- * @category models
14
- */
15
-
16
- /**
17
- * @since 1.0.0
18
- * @category layer
19
- */
20
- const layer = /*#__PURE__*/pipe(layer$1, /*#__PURE__*/Layer.merge(layer$2), /*#__PURE__*/Layer.merge( /*#__PURE__*/Layer.provideMerge(layer$1, layer$3)));
21
-
22
- export { layer };
@@ -1,4 +0,0 @@
1
- {
2
- "main": "dist/effect-platform-bun-BunContext.cjs.js",
3
- "module": "dist/effect-platform-bun-BunContext.esm.js"
4
- }
@@ -1,2 +0,0 @@
1
- export * from "../../dist/declarations/src/Command.js";
2
- //# sourceMappingURL=effect-platform-bun-Command.cjs.d.mts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"effect-platform-bun-Command.cjs.d.mts","sourceRoot":"","sources":["../../dist/declarations/src/Command.d.ts"],"names":[],"mappings":"AAAA"}
@@ -1,2 +0,0 @@
1
- export * from "../../dist/declarations/src/Command";
2
- //# sourceMappingURL=effect-platform-bun-Command.cjs.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"effect-platform-bun-Command.cjs.d.ts","sourceRoot":"","sources":["../../dist/declarations/src/Command.d.ts"],"names":[],"mappings":"AAAA"}
@@ -1,72 +0,0 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, '__esModule', { value: true });
4
-
5
- var Command = require('@effect/platform/Command');
6
-
7
-
8
-
9
- Object.defineProperty(exports, 'env', {
10
- enumerable: true,
11
- get: function () { return Command.env; }
12
- });
13
- Object.defineProperty(exports, 'exitCode', {
14
- enumerable: true,
15
- get: function () { return Command.exitCode; }
16
- });
17
- Object.defineProperty(exports, 'feed', {
18
- enumerable: true,
19
- get: function () { return Command.feed; }
20
- });
21
- Object.defineProperty(exports, 'flatten', {
22
- enumerable: true,
23
- get: function () { return Command.flatten; }
24
- });
25
- Object.defineProperty(exports, 'isCommand', {
26
- enumerable: true,
27
- get: function () { return Command.isCommand; }
28
- });
29
- Object.defineProperty(exports, 'lines', {
30
- enumerable: true,
31
- get: function () { return Command.lines; }
32
- });
33
- Object.defineProperty(exports, 'make', {
34
- enumerable: true,
35
- get: function () { return Command.make; }
36
- });
37
- Object.defineProperty(exports, 'pipeTo', {
38
- enumerable: true,
39
- get: function () { return Command.pipeTo; }
40
- });
41
- Object.defineProperty(exports, 'start', {
42
- enumerable: true,
43
- get: function () { return Command.start; }
44
- });
45
- Object.defineProperty(exports, 'stderr', {
46
- enumerable: true,
47
- get: function () { return Command.stderr; }
48
- });
49
- Object.defineProperty(exports, 'stdin', {
50
- enumerable: true,
51
- get: function () { return Command.stdin; }
52
- });
53
- Object.defineProperty(exports, 'stdout', {
54
- enumerable: true,
55
- get: function () { return Command.stdout; }
56
- });
57
- Object.defineProperty(exports, 'stream', {
58
- enumerable: true,
59
- get: function () { return Command.stream; }
60
- });
61
- Object.defineProperty(exports, 'streamLines', {
62
- enumerable: true,
63
- get: function () { return Command.streamLines; }
64
- });
65
- Object.defineProperty(exports, 'string', {
66
- enumerable: true,
67
- get: function () { return Command.string; }
68
- });
69
- Object.defineProperty(exports, 'workingDirectory', {
70
- enumerable: true,
71
- get: function () { return Command.workingDirectory; }
72
- });
@@ -1,7 +0,0 @@
1
- 'use strict';
2
-
3
- if (process.env.NODE_ENV === "production") {
4
- module.exports = require("./effect-platform-bun-Command.cjs.prod.js");
5
- } else {
6
- module.exports = require("./effect-platform-bun-Command.cjs.dev.js");
7
- }
@@ -1,18 +0,0 @@
1
- export {
2
- env,
3
- exitCode,
4
- feed,
5
- flatten,
6
- isCommand,
7
- lines,
8
- make,
9
- pipeTo,
10
- start,
11
- stderr,
12
- stdin,
13
- stdout,
14
- stream,
15
- streamLines,
16
- string,
17
- workingDirectory
18
- } from "./effect-platform-bun-Command.cjs.js";
@@ -1,72 +0,0 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, '__esModule', { value: true });
4
-
5
- var Command = require('@effect/platform/Command');
6
-
7
-
8
-
9
- Object.defineProperty(exports, 'env', {
10
- enumerable: true,
11
- get: function () { return Command.env; }
12
- });
13
- Object.defineProperty(exports, 'exitCode', {
14
- enumerable: true,
15
- get: function () { return Command.exitCode; }
16
- });
17
- Object.defineProperty(exports, 'feed', {
18
- enumerable: true,
19
- get: function () { return Command.feed; }
20
- });
21
- Object.defineProperty(exports, 'flatten', {
22
- enumerable: true,
23
- get: function () { return Command.flatten; }
24
- });
25
- Object.defineProperty(exports, 'isCommand', {
26
- enumerable: true,
27
- get: function () { return Command.isCommand; }
28
- });
29
- Object.defineProperty(exports, 'lines', {
30
- enumerable: true,
31
- get: function () { return Command.lines; }
32
- });
33
- Object.defineProperty(exports, 'make', {
34
- enumerable: true,
35
- get: function () { return Command.make; }
36
- });
37
- Object.defineProperty(exports, 'pipeTo', {
38
- enumerable: true,
39
- get: function () { return Command.pipeTo; }
40
- });
41
- Object.defineProperty(exports, 'start', {
42
- enumerable: true,
43
- get: function () { return Command.start; }
44
- });
45
- Object.defineProperty(exports, 'stderr', {
46
- enumerable: true,
47
- get: function () { return Command.stderr; }
48
- });
49
- Object.defineProperty(exports, 'stdin', {
50
- enumerable: true,
51
- get: function () { return Command.stdin; }
52
- });
53
- Object.defineProperty(exports, 'stdout', {
54
- enumerable: true,
55
- get: function () { return Command.stdout; }
56
- });
57
- Object.defineProperty(exports, 'stream', {
58
- enumerable: true,
59
- get: function () { return Command.stream; }
60
- });
61
- Object.defineProperty(exports, 'streamLines', {
62
- enumerable: true,
63
- get: function () { return Command.streamLines; }
64
- });
65
- Object.defineProperty(exports, 'string', {
66
- enumerable: true,
67
- get: function () { return Command.string; }
68
- });
69
- Object.defineProperty(exports, 'workingDirectory', {
70
- enumerable: true,
71
- get: function () { return Command.workingDirectory; }
72
- });
@@ -1 +0,0 @@
1
- export { env, exitCode, feed, flatten, isCommand, lines, make, pipeTo, start, stderr, stdin, stdout, stream, streamLines, string, workingDirectory } from '@effect/platform/Command';
@@ -1,4 +0,0 @@
1
- {
2
- "main": "dist/effect-platform-bun-Command.cjs.js",
3
- "module": "dist/effect-platform-bun-Command.esm.js"
4
- }
@@ -1,2 +0,0 @@
1
- export * from "../../dist/declarations/src/CommandExecutor.js";
2
- //# sourceMappingURL=effect-platform-bun-CommandExecutor.cjs.d.mts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"effect-platform-bun-CommandExecutor.cjs.d.mts","sourceRoot":"","sources":["../../dist/declarations/src/CommandExecutor.d.ts"],"names":[],"mappings":"AAAA"}
@@ -1,2 +0,0 @@
1
- export * from "../../dist/declarations/src/CommandExecutor";
2
- //# sourceMappingURL=effect-platform-bun-CommandExecutor.cjs.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"effect-platform-bun-CommandExecutor.cjs.d.ts","sourceRoot":"","sources":["../../dist/declarations/src/CommandExecutor.d.ts"],"names":[],"mappings":"AAAA"}
@@ -1,16 +0,0 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, '__esModule', { value: true });
4
-
5
- var CommandExecutor = require('@effect/platform-node/CommandExecutor');
6
-
7
-
8
-
9
- Object.defineProperty(exports, 'CommandExecutor', {
10
- enumerable: true,
11
- get: function () { return CommandExecutor.CommandExecutor; }
12
- });
13
- Object.defineProperty(exports, 'layer', {
14
- enumerable: true,
15
- get: function () { return CommandExecutor.layer; }
16
- });
@@ -1,7 +0,0 @@
1
- 'use strict';
2
-
3
- if (process.env.NODE_ENV === "production") {
4
- module.exports = require("./effect-platform-bun-CommandExecutor.cjs.prod.js");
5
- } else {
6
- module.exports = require("./effect-platform-bun-CommandExecutor.cjs.dev.js");
7
- }
@@ -1,4 +0,0 @@
1
- export {
2
- CommandExecutor,
3
- layer
4
- } from "./effect-platform-bun-CommandExecutor.cjs.js";
@@ -1,16 +0,0 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, '__esModule', { value: true });
4
-
5
- var CommandExecutor = require('@effect/platform-node/CommandExecutor');
6
-
7
-
8
-
9
- Object.defineProperty(exports, 'CommandExecutor', {
10
- enumerable: true,
11
- get: function () { return CommandExecutor.CommandExecutor; }
12
- });
13
- Object.defineProperty(exports, 'layer', {
14
- enumerable: true,
15
- get: function () { return CommandExecutor.layer; }
16
- });
@@ -1 +0,0 @@
1
- export { CommandExecutor, layer } from '@effect/platform-node/CommandExecutor';
@@ -1,4 +0,0 @@
1
- {
2
- "main": "dist/effect-platform-bun-CommandExecutor.cjs.js",
3
- "module": "dist/effect-platform-bun-CommandExecutor.esm.js"
4
- }
@@ -1,2 +0,0 @@
1
- export * from "../../dist/declarations/src/Effectify.js";
2
- //# sourceMappingURL=effect-platform-bun-Effectify.cjs.d.mts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"effect-platform-bun-Effectify.cjs.d.mts","sourceRoot":"","sources":["../../dist/declarations/src/Effectify.d.ts"],"names":[],"mappings":"AAAA"}
@@ -1,2 +0,0 @@
1
- export * from "../../dist/declarations/src/Effectify";
2
- //# sourceMappingURL=effect-platform-bun-Effectify.cjs.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"effect-platform-bun-Effectify.cjs.d.ts","sourceRoot":"","sources":["../../dist/declarations/src/Effectify.d.ts"],"names":[],"mappings":"AAAA"}
@@ -1,12 +0,0 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, '__esModule', { value: true });
4
-
5
- var Effectify = require('@effect/platform/Effectify');
6
-
7
-
8
-
9
- Object.defineProperty(exports, 'effectify', {
10
- enumerable: true,
11
- get: function () { return Effectify.effectify; }
12
- });
@@ -1,7 +0,0 @@
1
- 'use strict';
2
-
3
- if (process.env.NODE_ENV === "production") {
4
- module.exports = require("./effect-platform-bun-Effectify.cjs.prod.js");
5
- } else {
6
- module.exports = require("./effect-platform-bun-Effectify.cjs.dev.js");
7
- }
@@ -1,3 +0,0 @@
1
- export {
2
- effectify
3
- } from "./effect-platform-bun-Effectify.cjs.js";
@@ -1,12 +0,0 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, '__esModule', { value: true });
4
-
5
- var Effectify = require('@effect/platform/Effectify');
6
-
7
-
8
-
9
- Object.defineProperty(exports, 'effectify', {
10
- enumerable: true,
11
- get: function () { return Effectify.effectify; }
12
- });
@@ -1 +0,0 @@
1
- export { effectify } from '@effect/platform/Effectify';
@@ -1,4 +0,0 @@
1
- {
2
- "main": "dist/effect-platform-bun-Effectify.cjs.js",
3
- "module": "dist/effect-platform-bun-Effectify.esm.js"
4
- }
@@ -1,2 +0,0 @@
1
- export * from "../../dist/declarations/src/Error.js";
2
- //# sourceMappingURL=effect-platform-bun-Error.cjs.d.mts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"effect-platform-bun-Error.cjs.d.mts","sourceRoot":"","sources":["../../dist/declarations/src/Error.d.ts"],"names":[],"mappings":"AAAA"}
@@ -1,2 +0,0 @@
1
- export * from "../../dist/declarations/src/Error";
2
- //# sourceMappingURL=effect-platform-bun-Error.cjs.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"effect-platform-bun-Error.cjs.d.ts","sourceRoot":"","sources":["../../dist/declarations/src/Error.d.ts"],"names":[],"mappings":"AAAA"}
@@ -1,20 +0,0 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, '__esModule', { value: true });
4
-
5
- var Error = require('@effect/platform/Error');
6
-
7
-
8
-
9
- Object.defineProperty(exports, 'BadArgument', {
10
- enumerable: true,
11
- get: function () { return Error.BadArgument; }
12
- });
13
- Object.defineProperty(exports, 'PlatformErrorTypeId', {
14
- enumerable: true,
15
- get: function () { return Error.PlatformErrorTypeId; }
16
- });
17
- Object.defineProperty(exports, 'SystemError', {
18
- enumerable: true,
19
- get: function () { return Error.SystemError; }
20
- });
@@ -1,7 +0,0 @@
1
- 'use strict';
2
-
3
- if (process.env.NODE_ENV === "production") {
4
- module.exports = require("./effect-platform-bun-Error.cjs.prod.js");
5
- } else {
6
- module.exports = require("./effect-platform-bun-Error.cjs.dev.js");
7
- }
@@ -1,5 +0,0 @@
1
- export {
2
- BadArgument,
3
- PlatformErrorTypeId,
4
- SystemError
5
- } from "./effect-platform-bun-Error.cjs.js";
@@ -1,20 +0,0 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, '__esModule', { value: true });
4
-
5
- var Error = require('@effect/platform/Error');
6
-
7
-
8
-
9
- Object.defineProperty(exports, 'BadArgument', {
10
- enumerable: true,
11
- get: function () { return Error.BadArgument; }
12
- });
13
- Object.defineProperty(exports, 'PlatformErrorTypeId', {
14
- enumerable: true,
15
- get: function () { return Error.PlatformErrorTypeId; }
16
- });
17
- Object.defineProperty(exports, 'SystemError', {
18
- enumerable: true,
19
- get: function () { return Error.SystemError; }
20
- });
@@ -1 +0,0 @@
1
- export { BadArgument, PlatformErrorTypeId, SystemError } from '@effect/platform/Error';
@@ -1,4 +0,0 @@
1
- {
2
- "main": "dist/effect-platform-bun-Error.cjs.js",
3
- "module": "dist/effect-platform-bun-Error.esm.js"
4
- }
@@ -1,2 +0,0 @@
1
- export * from "../../dist/declarations/src/FileSystem.js";
2
- //# sourceMappingURL=effect-platform-bun-FileSystem.cjs.d.mts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"effect-platform-bun-FileSystem.cjs.d.mts","sourceRoot":"","sources":["../../dist/declarations/src/FileSystem.d.ts"],"names":[],"mappings":"AAAA"}
@@ -1,2 +0,0 @@
1
- export * from "../../dist/declarations/src/FileSystem";
2
- //# sourceMappingURL=effect-platform-bun-FileSystem.cjs.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"effect-platform-bun-FileSystem.cjs.d.ts","sourceRoot":"","sources":["../../dist/declarations/src/FileSystem.d.ts"],"names":[],"mappings":"AAAA"}
@@ -1,20 +0,0 @@
1
- 'use strict';
2
-
3
- Object.defineProperty(exports, '__esModule', { value: true });
4
-
5
- var FileSystem = require('@effect/platform-node/FileSystem');
6
-
7
-
8
-
9
- Object.defineProperty(exports, 'FileSystem', {
10
- enumerable: true,
11
- get: function () { return FileSystem.FileSystem; }
12
- });
13
- Object.defineProperty(exports, 'Size', {
14
- enumerable: true,
15
- get: function () { return FileSystem.Size; }
16
- });
17
- Object.defineProperty(exports, 'layer', {
18
- enumerable: true,
19
- get: function () { return FileSystem.layer; }
20
- });
@@ -1,7 +0,0 @@
1
- 'use strict';
2
-
3
- if (process.env.NODE_ENV === "production") {
4
- module.exports = require("./effect-platform-bun-FileSystem.cjs.prod.js");
5
- } else {
6
- module.exports = require("./effect-platform-bun-FileSystem.cjs.dev.js");
7
- }
@@ -1,5 +0,0 @@
1
- export {
2
- FileSystem,
3
- Size,
4
- layer
5
- } from "./effect-platform-bun-FileSystem.cjs.js";