aboutsummaryrefslogtreecommitdiff
path: root/src/api/schema.zig (follow)
AgeCommit message (Collapse)AuthorFilesLines
2022-05-19[wip] Solid.js support for Bun!Gravatar Jarred Sumner 1-0/+3
2022-05-05it can call functionsGravatar Jarred Sumner 1-0/+3
2022-03-11Source Maps for client-side errors & columnsGravatar Jarred Sumner 1-0/+5
2022-03-07source maps optimizationsGravatar Jarred Sumner 1-0/+25
2022-02-27WASMGravatar Jarred Sumner 1-0/+128
2022-02-24Add WASM modules but disable it for nowGravatar Jarred Sumner 1-0/+3
2022-02-12[bun install] Make global bin dir configurableGravatar Jarred Sumner 1-0/+10
2022-02-11[bun install] Implement global installsGravatar Jarred Sumner 1-0/+10
2022-02-11[bun install] Implement bunfig.toml configGravatar Jarred Sumner 1-0/+235
2022-01-28Implement TOML parserGravatar Jarred Sumner 1-0/+3
No Date/DateTime/Time/Local Time yet
2022-01-27[bunfig] Implement config file formatGravatar Jarred Sumner 1-0/+13
2022-01-19Bun.Transpiler – API for scanning imports/exports of JSX/TSX/TS/JS filesGravatar Jarred Sumner 1-0/+3
2022-01-01[bun dev] Improve filesystem watcher & HMR reliability (Linux + a little macOS)Gravatar Jarred SUmner 1-114/+19
Text editors like Replit save through atomic file updates. In an inotify filesystem watcher (Linux), that appears to be a delete followed by moving the file to the directory. Now when known files are moved into a directory, the watcher sends the file change notification to the browser(s). From there, the browser looks at it's files to determine whether or not Additionally, if an existing HMR connection does not know about a file ID passed to it, it asks the browser to reply with the file path and then starts watching that file. This improves HMR reliabiality if Bun had been restarted but the page hadn't been restarted.
2021-12-30[internal] Move network_thread into http packageGravatar Jarred Sumner 1-1/+1
2021-12-30Upgrade to latest Zig, remove dependency on patched version of Zig (#96)Gravatar Jarred Sumner 1-3/+3
* Prepare to upgrade zig * zig fmt * AllocGate * Update data_url.zig * wip * few files * just headers now? * I think everything works? * Update mimalloc * Update hash_map.zig * Perf improvements to compensate for Allocgate * Bump * :camera: * Update bun.lockb * Less branching * [js parser] Slightly reduce memory usage * Update js_parser.zig * WIP remove unused * [JS parser] WIP support for `with` keyword * Remove more dead code * Fix all the build errors! * cleanup * Move `network_thread` up * Bump peechy * Update README.md
2021-10-24Upgrade to latest peechyGravatar Jarred Sumner 1-2242/+1977
2021-10-20rewrote most of the routerGravatar Jarred Sumner 1-3/+3
2021-10-07SchemaGravatar Jarred Sumner 1-0/+10
2021-10-05Add `BUN_DISABLE_ANALYTICS` flag to disable analytics and automatically ↵Gravatar Jarred Sumner 1-1893/+2027
disable analytics when running inside `hyperfine`
2021-10-03Fix various macOS-specific compile errors and run `zig fmt`Gravatar Jarred Sumner 1-2027/+1893
2021-09-16Add flag to dev server to disable HMRGravatar Jarred Sumner 1-1884/+2028
2021-09-11bun:error.js into separate module, ensure we don't include fast refresh in ↵Gravatar Jarred Sumner 1-2018/+1884
Bun.js, log build errors to browser console, don't warn for node_modules,
2021-09-09currentjarred/fetch-experimentGravatar Jarred Sumner 1-0/+15
2021-09-07WIP error cssGravatar Jarred Sumner 1-0/+5
Former-commit-id: 36f03bf491cf274f68361e334a706538464ee271
2021-09-06expose top level dirGravatar Jarred Sumner 1-0/+10
Former-commit-id: 00c222c35a4460b21e095acc35a470fbb4778b19
2021-09-02latestGravatar Jarred Sumner 1-1858/+1992
Former-commit-id: 1086d4f894611c1171f57d9eaf82f9170e9de2d1
2021-08-31Add display name field to frameworks, improve logging, add counters, addGravatar Jarred Sumner 1-1977/+1858
Former-commit-id: b2cf011b6c6405a786fe22367e1cd4e6c2c4c90f
2021-08-31Fallback, fragments, printer compat, better errorsGravatar Jarred Sumner 1-1404/+2083
Former-commit-id: 486e8c9d460eeebea024e96dbabcb7f2bfaffafb
2021-08-29latestGravatar Jarred Sumner 1-1518/+1407
Former-commit-id: 096ec1222ad723d006b0151f10cb0c1b95e2bfd3
2021-08-26Fix unbundled importsGravatar Jarred Sumner 1-10/+10
Former-commit-id: f221da115c1afcd136648c9683d8e9907005a128
2021-08-26Fix file loader, automatically support CSS imports when a framework isn't setGravatar Jarred Sumner 1-0/+3
Former-commit-id: 94750e5987ea8f6e4c946bfc06715e09a48c0eec
2021-08-23Fix resolve bug with mixed-case node_modulesGravatar Jarred Sumner 1-1396/+1517
Former-commit-id: 5bdae0ee491e28b49ceed6136f04e0c1feddc808
2021-08-19Log level + onimportcssGravatar Jarred Sumner 1-1474/+1396
Former-commit-id: 12ba9b9bc288573e3a5099adfa14c486c4cc980c
2021-08-17alright thats the renameGravatar Jarred Sumner 1-19/+9
Former-commit-id: 0faf61249e76382dfb1aa8721249474eae920753
2021-08-15rename to bunGravatar Jarred Sumner 1-2/+2
Former-commit-id: f982fc85fac3f0120e1851ad4027dd8413216439
2021-08-15Support multiple route dirs, fix bundling JSX, fix cjs bug, remove warning ↵Gravatar Jarred Sumner 1-3/+3
about unbundled modules in speedy env, Former-commit-id: ae718dbd05397bed9bc49a77fae20de70b635e82
2021-08-14.env worksGravatar Jarred Sumner 1-44/+106
Former-commit-id: 45ee7874f2c8566c3034743161031b0859423f41
2021-08-14lotsGravatar Jarred Sumner 1-1276/+1449
Former-commit-id: 0b8128cb3b4db02f9d33331b4c2c1b595156e6c8
2021-08-10This is alotGravatar Jarred Sumner 1-21/+26
Former-commit-id: 4b2a396611ec03270dc768b70e488b0f5eee2a37
2021-08-09Split up + generate client & server bundles, support framework +router in ↵Gravatar Jarred Sumner 1-1260/+1273
GenerateNodeModulesBundle , read framework from package.json + rename "publicURL" to "origin" + add import.meta.filepath Former-commit-id: 1e76ebb5375247231181ec19a6396c6acf4684fb
2021-07-13alrightGravatar Jarred Sumner 1-5/+91
Former-commit-id: ab73c7b323c222e5d1172c07036653ca98aa8e6b
2021-07-01this kind of works, but there is a crash when bundling. I think its missing ↵Gravatar Jarred Sumner 1-0/+10
a Stmt.Data.Store.reset() Former-commit-id: 88aad6aeb19f3d1d73ced59a7a5aaddc2d7408ee
2021-06-26wipGravatar Jarred Sumner 1-1093/+1195
Former-commit-id: 506d9b81a7c9dac5dd870f6735c39df105e72fd4
2021-06-20Support live-reload and fallbackGravatar Jarred Sumner 1-1/+87
Former-commit-id: c3f9d77391589b65951616a632af87107fba469f
2021-06-18100x!!Gravatar Jarred Sumner 1-0/+103
Former-commit-id: e0fa2e78da8083dc590c4b1f3d016ba545261b84
2021-06-14HMR crashily works, started working on CSS ScannerGravatar Jarred Sumner 1-12/+6
Former-commit-id: d0f91082fcc8da17d224acb5432339c5d817e1c2
2021-06-14extremely close!!!!!Gravatar Jarred Sumner 1-9/+12
Former-commit-id: 44fce3c5e800f3fb3fbc139a38f14eae9e0c0225
2021-06-12I think thats the JS part of HMRGravatar Jarred Sumner 1-845/+988
Former-commit-id: 43380a4d68d57f3d78f5b1e00962a59461140967
2021-06-10cool!Gravatar Jarred Sumner 1-0/+5
Former-commit-id: 5ffd8e40b34c5b11e5632c5939d16dba6b7167f2
2021-06-09lotsGravatar Jarred Sumner 1-772/+876
Former-commit-id: 7346cdaa5a32ade26821ed97ef07f7c9ae87c0c2