summaryrefslogtreecommitdiff
path: root/packages/integrations/vue/static-html.js (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2023-08-18[ci] formatGravatar natemoo-re 4-9/+15
2023-08-18Stringify shouldn't throw on user object during rendering (#8127)Gravatar Nate Moore 9-46/+115
* fix(#7923): do not throw on user { type } object * chore: remove unused type export * chore: guess it wasn't unused
2023-08-17[ci] formatGravatar natemoo-re 1-1/+4
2023-08-17fix(dev): open to base path (#8123)Gravatar Nate Moore 2-1/+8
2023-08-17chore(gitpod): resolve potential globbing and word splitting issue (#8124)Gravatar Ben Elan 1-1/+1
Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
2023-08-17fix(#6965): fix build stats (#8122)Gravatar Nate Moore 2-1/+8
2023-08-17[error msg] add hybrid option to a getStaticPaths error message (#8120)Gravatar Sarah Rainsberger 1-1/+1
2023-08-17only update our own history entires during back navigation through view ↵Gravatar Martin Trapp 2-3/+11
transitions (#8116)
2023-08-17fix: reinsert attribute to specify direction of ViewTransition (forward / ↵Gravatar Martin Trapp 2-7/+12
back) (#8109)
2023-08-17feat(assets): support remote images (#7778)Gravatar Julien Barbay 23-190/+657
Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> Co-authored-by: Princesseuh <princssdev@gmail.com> Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com>
2023-08-17[ci] formatGravatar ematipico 3-31/+34
2023-08-17Detect Bun package manager in create-astro (#7944)Gravatar Colin McDonnell 2-1/+11
Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
2023-08-17Prerendering corner cases (#8070)Gravatar Arsh 16-48/+221
Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
2023-08-16fix(solid): update babel-preset-solid (#8107)Gravatar Nate Moore 3-5/+10
2023-08-16Fix 8083 (#8105)Gravatar Martin Trapp 2-2/+18
* override wrong positions in browser history * Lost events are taken into account during throttling
2023-08-16Fix #7056 Splashing Navigation Menu in portfolio template (#7078)Gravatar Nel 1-3/+43
* Fix #7056 Splashing Navigation Menu in portfolio template * Add menu back to no-JS view * Fix desktop view in non-JS & menu styling * chore: force ci --------- Co-authored-by: Nate Moore <nate@astro.build> Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
2023-08-16[ci] formatGravatar natemoo-re 4-56/+58
2023-08-16[create-astro] verify connectivity and --template (#8102)Gravatar Nate Moore 6-3/+146
* feat(create-astro): verify that --template exists * feat: verify internet connectivity * chore: skip connectivity check on --dry-run * chore: fix lint
2023-08-16Fix flaky Cloudflare test (#8103)Gravatar Nate Moore 5-8/+5
* chore: fix flaky CF test * chore: increase wrangler timeout
2023-08-16Fix missing async/await in vite-plugin-integrations-container on ↵Gravatar Adam Heath 2-3/+7
astro:server:setup hook (#8104) * All astro integrations hooks are defined as returning void|Promise, so all calls need to deal with a possible async/await pattern. One was missed in vite-plugin-integrations-container. This plugin is definitely used by the astro-dev when using a node adapter, but I am not sure about other such scenarios. I did a search through the code base, and all other runHook* calls are properly awaited. * chore: make test async --------- Co-authored-by: Nate Moore <nate@astro.build>
2023-08-16Update build.inlineStylesheets docs (#8061)Gravatar Reuben Tier 1-4/+4
Co-authored-by: Elian ☕️ <hello@elian.codes> Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
2023-08-16[ci] formatGravatar matthewp 5-51/+52
2023-08-16Add experimentalReactChildren option to React integration (#8082)Gravatar Matthew Phillips 36-38/+218
* wip: support true react vnodes in renderer * Add new experimentalReactChildren option to React integration * Update the test * Add docs * Update packages/integrations/react/server.js Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com> * Update with a better test * Update .changeset/yellow-snakes-jam.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Update packages/integrations/react/README.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Update packages/integrations/react/README.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> --------- Co-authored-by: Nate Moore <nate@astro.build> Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com> Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
2023-08-16Cleanup dotfiles in dist (#8092)Gravatar Nate Moore 2-0/+7
* fix(#7933, plt-789): cleanup dotfiles during build * chore: add changeset
2023-08-16chore(test): remove duplicates fixtures (#8098)Gravatar Arsh 20-376/+32
2023-08-15Filter out Svelte's unknown class prop console warnings (#7291)Gravatar Eric Mika 2-1/+64
* Filter out Svelte's unexpected class prop console warnings Astro's hydration code passes a `class` prop to Svelte components, inducing Svelte to log a warning about an unknown prop. Preempting this by exporting a `class` prop from the Svelte component isn't a viable workaround since `class` is a reserved identifier in JS. This PR implements the console-filtering workaround suggested by @HiDeoo in #5665, borrowing the `useConsoleFilter` approach from the [preact integration](https://github.com/withastro/astro/blob/a1c0cbe604c9f91cdc421b5606aab574999eba01/packages/integrations/preact/src/server.ts#L72-L94). It would probably be better to generalize console filtering so it could be shared across multiple integrations. Ideally there would be a way to handle this in Svelte, but as was pointed out in the issue thread even they resort to [similar cringe-inducing hackery](https://github.com/sveltejs/kit/blob/master/packages/kit/src/runtime/client/client.js#L1974-L1996) in sveltekit. * Only filter Svelte console warnings in dev builds * Add changeset * Fix lint error. --------- Co-authored-by: bluwy <bjornlu.dev@gmail.com> Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
2023-08-15[ci] formatGravatar natemoo-re 1-12/+12
2023-08-15chore: update to use getEntry (#8093)Gravatar Nate Moore 1-14/+14
2023-08-15[ci] release (#8090)create-astro@3.2.1astro@2.10.9Gravatar Houston (Bot) 44-76/+78
* [ci] release * Update packages/create-astro/CHANGELOG.md --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
2023-08-15Handle noscript tags in head during ViewTransitions (#8091)Gravatar Martin Trapp 2-0/+9
2023-08-15[ci] formatGravatar natemoo-re 1-1/+1
2023-08-15fix(create-astro): update install step (#8089)Gravatar Nate Moore 2-17/+24
2023-08-15Add Transloadit to the Gold Sponsors list (#8074)Gravatar Alexander Zaytsev 1-1/+1
Co-authored-by: Darius <19603573+itsMapleLeaf@users.noreply.github.com>
2023-08-15[ci] formatGravatar natemoo-re 2-9/+19
2023-08-15Update wrangler (#8081)Gravatar Nate Moore 8-534/+431
* chore: update wrangler * chore(cloudflare): update tests to support wrangler@3 * chore(cloudflare): update debug message * chore: force ci
2023-08-15[ci] release (#8064)create-astro@3.2.0astro@2.10.8@astrojs/sitemap@2.0.2@astrojs/react@2.2.2@astrojs/node@5.3.4Gravatar Houston (Bot) 56-127/+128
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2023-08-15fix: Removed extra double quotes from computed style in shiki code component ↵Gravatar Greg Cobb 2-2/+7
(#8035)
2023-08-15Stream request body instead of buffering it in memory (#8084)Gravatar hbgl 6-57/+167
Co-authored-by: Matthew Phillips <matthew@matthewphillips.info>
2023-08-15[ci] formatGravatar bluwy 1-1/+1
2023-08-15Document SSG format and trailingSlash consistency (#8068)Gravatar Bjorn Lu 1-0/+4
Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
2023-08-15Remove deepmerge-ts for simpler implementation (#8086)Gravatar Bjorn Lu 3-11/+24
2023-08-15Export AstroConfigType properly as type and not as a Zod schema value (#7702)Gravatar Sergey Shishkin 4-4/+10
2023-08-14[ci] formatGravatar natemoo-re 5-36/+41
2023-08-14chore: slim create-astro deps (#8077)Gravatar Nate Moore 9-66/+128
2023-08-14[ci] formatGravatar natemoo-re 1-6/+6
2023-08-14fix: remove react identifierPrefix from client:only (#8075)Gravatar Robin Neal 5-1/+38
This was causing React components rendered with client:only to be prefixed with null. While not technically causing any issues, it is unintended and could be considered a bug. Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
2023-08-14[ci] formatGravatar natemoo-re 1-7/+15
2023-08-14Support flags for `astro add` (#8032)Gravatar Nate Moore 2-2/+29
* astro add cli pass down arguments to install cmd * add changeset * feat: pass common flags down to install command * Update .changeset/soft-colts-heal.md --------- Co-authored-by: Elod Tobak <tobakelod@gmail.com>
2023-08-14fix(astro): strongly type Astro.self (#7866)Gravatar James Garbutt 2-3/+10
Co-authored-by: Erika <3019731+Princesseuh@users.noreply.github.com> Co-authored-by: Princesseuh <princssdev@gmail.com>
2023-08-14feat(assets): Add support for passing non-awaited imports to the Image ↵Gravatar Erika 6-7/+53
component and `getImage` (#8066) * feat(assets): Add support for passing non-awaited imports to the Image component and `getImage` * test: add test