/src/install/

ption> Unnamed repository; edit this file 'description' to name the repository.
aboutsummaryrefslogtreecommitdiff
path: root/entitlements.debug.plist (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2022-03-08Fix quoting console.logGravatar Jarred Sumner 3-42/+203
2022-03-08print size of headersGravatar Jarred Sumner 2-12/+20
2022-03-08sourcemappingsGravatar Jarred Sumner 60-0/+120
2022-03-08rename _global -> bunGravatar Jarred Sumner 88-2476/+1719
2022-03-08[bun.js] Support logging `Headers`, `Response`, and `Request`Gravatar Jarred Sumner 4-72/+270
2022-03-08Fix https://github.com/Jarred-Sumner/bun/issues/122Gravatar Jarred Sumner 2-2/+16
2022-03-08Update sourcemap.zigGravatar Jarred Sumner 1-6/+6
2022-03-08[bun.js] WIP sourcemap supportGravatar Jarred Sumner 3-249/+646
2022-03-07Add VLQ bench, improve decodeVLQ perfGravatar Jarred Sumner 3-3/+138
2022-03-07Optimize sourcemapsGravatar Jarred Sumner 6-90/+210
2022-03-07Update options.zigGravatar Jarred Sumner 1-4/+37
2022-03-07source maps optimizationsGravatar Jarred Sumner 11-85/+458
2022-03-07[JS] Don't make this inlineGravatar Jarred Sumner 1-2/+2
2022-03-07[JS] Slight optimization for newlinesGravatar Jarred Sumner 1-36/+2
2022-03-07[JS Parser] Fix bug with decoding escape sequencesGravatar Jarred Sumner 1-4/+4
2022-03-07[JS/JSON] Optimize parsing long stringsGravatar Jarred Sumner 1-1/+37
2022-03-07[JS Parser] Add optimization for JSX spreadGravatar Jarred Sumner 1-0/+11
2022-03-061.7x faster sourcemap printingGravatar Jarred Sumner 1-24/+32
2022-03-06source maps work for app code in `bun dev`!Gravatar Jarred Sumner 19-153/+1098
2022-03-05[JS Parser] dot property shorthand for JSXGravatar Jarred Sumner 3-10/+82
This is a non-standard backwards-compatible feature that I suspect other tooling will soon adopt (and expect to help other tooling adopt it) ```jsx var hello = {hi: 'yo'}; export const Foo = () => <Bar {hello.hi} /> ``` Desugars into: ```jsx var hello = {hi: 'yo'}; export const Foo = () => <Bar hi={hello.hi} /> ``` This works with defines and macros too. ```jsx export const Foo = () => <Bar {process.env.NODE_ENV} /> ``` ```jsx export const Foo = () => <Bar NODE_ENV="development" /> ```
2022-03-05Update README.mdGravatar Jarred Sumner 1-1/+1
2022-03-05Update README.mdGravatar Jarred Sumner 1-1/+1
2022-03-05Update README.mdGravatar Jarred Sumner 1-1/+12