aboutsummaryrefslogtreecommitdiff
path: root/integration/snippets/bundled-entry-point.js (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2021-09-25Add integration test that checks styled-components renders successfully and ↵bun-v0.0.24Gravatar Jarred Sumner 4-1/+68
no incorrect unicode characters are present in the `style` tag
2021-09-25Bump versionGravatar Jarred Sumner 1-1/+1
2021-09-25Fix bug with resolving `"browser"` field in package.jsonGravatar Jarred Sumner 1-1/+1
It was resolving from the parent directory of the result instead of the browser scope.
2021-09-25Fix lexing bug with the \f form feed character (used in Emotion & Styled ↵Gravatar Jarred Sumner 1-1/+1
Components)
2021-09-25Fix crashing edgecase when both JSX automatic and JSX classic imports are ↵Gravatar Jarred Sumner 1-28/+44
necessary and unbundled
2021-09-25Bump versionbun-v0.0.23Gravatar Jarred Sumner 1-1/+1
2021-09-25Add integration test for <JSX key="foo" {...spread} onClick={() => {}} />Gravatar Jarred Sumner 2-0/+21
2021-09-25Fix visiting bug when using JSX with a spread prop and a key and one of the ↵Gravatar Jarred Sumner 1-10/+4
props is an anonymous function More specifically, Bun shouldn't be visiting the same properties more than once. That was the cause.
2021-09-24skeleton codebun-v0.0.22Gravatar Jarred Sumner 9-219/+500
2021-09-24macroGravatar Jarred Sumner 3-4/+681
2021-09-24:shaved_ice:Gravatar Jarred Sumner 1-4/+8
2021-09-24@setColdGravatar Jarred Sumner 1-0/+4
2021-09-24Remove `cache_files` since it's not used and causes slower Bun compilation timesGravatar Jarred Sumner 8-5052/+4949
2021-09-24Update README.mdGravatar Jarred Sumner 1-1/+1
2021-09-24Update README.mdGravatar Jarred Sumner 1-1/+1
2021-09-24Update README.mdGravatar Jarred Sumner 1-0/+2
2021-09-24Update README.mdGravatar Jarred Sumner 1-1/+29
2021-09-23Update README.mdGravatar Jarred Sumner 1-1/+1
2021-09-23Update README.mdGravatar Jarred Sumner 1-1/+1
2021-09-23Update README.mdGravatar Jarred Sumner 1-2/+13
2021-09-23clarifyGravatar Jarred Sumner 1-4/+4
2021-09-23add the other testsGravatar Jarred Sumner 1-0/+2
2021-09-23Update README.mdGravatar Jarred Sumner 1-2/+8
2021-09-23Elaborate on `bun bun` a littleGravatar Jarred Sumner 1-0/+58
2021-09-23Add link to webpack docGravatar Jarred Sumner 1-0/+1
2021-09-23Bump versionGravatar Jarred Sumner 1-1/+1
2021-09-23:runner:jarred/bundle-workspace-packagesGravatar Jarred Sumner 1-1/+1
2021-09-23:camera:Gravatar Jarred Sumner 41-387/+1032
2021-09-23Handle more edgecases in our CJS2ESM conversion codeGravatar Jarred Sumner 4-9/+57
2021-09-23When bundling JSON, only use JSON.parse when the input is ASCII.Gravatar Jarred Sumner 3-15/+63
We don't want to add an extra pass over the input to convert it to UTF16. And JS engines storing strings as UTF-16 is more expensive anyway, so the runtime win here probably isn't as big (though open to evidence to the contrary!)
2021-09-23Add __exportValue and __exportDefault to runtimeGravatar Jarred Sumner 5-4/+51
2021-09-23When bundling, parse the JSON to verify correctness, but print it as a ↵Gravatar Jarred Sumner 1-2/+24
string for better runtime performance
2021-09-23Safer export default transform for bundled codeGravatar Jarred Sumner 2-3/+52
2021-09-23Fix crash when loading JS fails really quicklyGravatar Jarred Sumner 1-1/+1
2021-09-23Globally define require() so that UMD modules which check for the existence ↵Gravatar Jarred Sumner 1-0/+1
of require() to determine if it's CommonJS use the CommonJS code path instead of the globalThis code path
2021-09-23Embed regeneratorRuntime so that things which expect it to be a global still ↵Gravatar Jarred Sumner 3-0/+767
work
2021-09-23Fix bug when multiple-levels of nested exports when bundled have a boolean ↵Gravatar Jarred Sumner 2-9/+17
.default value
2021-09-23Support `alwaysBundle` for workspace packagesGravatar Jarred Sumner 1-17/+180
2021-09-23Add a pointer to the parent package_json for a directory. This reduces ↵Gravatar Jarred Sumner 2-23/+34
pointer chasing
2021-09-23Fix another simplification bugGravatar Jarred Sumner 1-23/+20
2021-09-23Fix a simplification bugGravatar Jarred Sumner 1-1/+1
2021-09-23Use the package_json hash for matching bundled modules instead of searching ↵Gravatar Jarred Sumner 1-76/+41
strings (should improve perf a little)
2021-09-23Symlinks workGravatar Jarred Sumner 1-1/+1
2021-09-23Add `"bun": { "alwaysBundle": ["packageName"] },` to package.jsonGravatar Jarred Sumner 1-0/+23
This is for monorepos that symlink directories into node_modules. For example, if you have a design system in your monorepo, you probably want to always bundle that.
2021-09-22Extremely minor perf improvementsGravatar Jarred Sumner 2-6/+7
2021-09-22Update query_string_map.zigGravatar Jarred Sumner 1-7/+13
2021-09-22Allow URLs containing absolute filepaths in imports if they match specific ↵Gravatar Jarred Sumner 3-5/+46
file extensions This is to support ../../ imports Allowlisting to specific file extensions prevents common webserver security vulnerabilities like reading /etc/passwd
2021-09-22Fix edgecase with whether to wrap arrow expressions in parentheses when printingGravatar Jarred Sumner 1-2/+2
2021-09-22Fix edgecase with bare imports inside .bunGravatar Jarred Sumner 1-8/+13
2021-09-22Print how many lines of code was parsed in `bun bun`Gravatar Jarred Sumner 4-17/+62
emoo-re 2-5/+5 2022-02-24Add fine-grained HMR support (#2649)Gravatar Nate Moore 7-36/+37 * feat: add fine-grained HMR support * chore: lint * chore: lint * fix: handle hmr with custom event handler * refactor: cleanup hmr script 2022-02-24[ci] collect statsGravatar FredKSchott 1-0/+1 2022-02-23Fixed incorrect types and imports (#2630)Gravatar Juan Martín Seery 27-35/+37 * Fixed incorrect types and imports * Changeset 2022-02-23Add sass dev dep to blog-multiple-authors example (#2643)Gravatar Joel Kuzmarski 1-1/+2 Otherwise, new stackblitz projects throw an error. 2022-02-23Fix(component): align starting position in Markdown slot (#2631)Gravatar Shinobu Hayashi 4-6/+61 * Fix: align markdown starting position in each line * Chore: add testcase for aligning starting position in each line * Chore: update the test case on astro-markdown custom language * Update: remove trimmed only startWith trimmed space 2022-02-23[ci] yarn formatGravatar matthewp 1-1/+1 2022-02-23Run all smoke tests with the static build (#2609)Gravatar Matthew Phillips 2-26/+32 * Run all smoke tests with the static build * Use a direct relative path * Always use the static build * Use a path that works in both static and regualr build * Always download the zip * astro.build only needs to run once 2022-02-23[ci] collect statsGravatar FredKSchott 1-0/+1 2022-02-22[ci] update lockfile (#2624)Gravatar Fred K. Schott 1-171/+201 Co-authored-by: FredKSchott <FredKSchott@users.noreply.github.com> 2022-02-22Fixed shiki import to work with "type": "module" (#2628)Gravatar Juan Martín Seery 3-5/+13 * Fixed shiki import to work with "type": "module" * Changeset * Separated types import * Add "* as" to type import