summaryrefslogtreecommitdiff
path: root/examples/framework-vue
diff options
context:
space:
mode:
Diffstat (limited to 'examples/framework-vue')
0 files changed, 0 insertions, 0 deletions
d class='logsubject'>Only print file output only for 404 and 500 routes (#4497)Gravatar Ben Holmes 2-5/+9 * fix: print file output only for 404 and 500 routes * chore: changeset 2022-08-26[ci] formatGravatar matthewp 1-14/+9 2022-08-26chore: update to solid 1.5 (#4496)Gravatar Abdullah Mzaien 3-4/+17 2022-08-26Exit prerelease mode for 1.1 release (#4493)Gravatar Matthew Phillips 1-1/+1 2022-08-26Remove "as Props" from the astro examples (#4494)Gravatar Mohammed Elhaouari 8-8/+8 2022-08-26[ci] update lockfile (#4492)Gravatar Fred K. Bot 1-33/+41 Co-authored-by: FredKSchott <FredKSchott@users.noreply.github.com> Co-authored-by: Matthew Phillips <matthew@skypack.dev> 2022-08-26Edit Alpinejs content generation for Docs (#4466)Gravatar Mark Spratt 1-6/+5 Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> 2022-08-26Note private env var handling with cloudflare builds (#4490)Gravatar Bjorn Lu 1-0/+14 2022-08-26Bump pnpm version (#4488)Gravatar Bjorn Lu 1-2/+2 2022-08-26Update blog.astro (#4486)Gravatar Peter Singh 1-2/+2 2022-08-25Earlier import snippet for `@astrojs/image` (#4484)Gravatar Tc001 1-0/+6 Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> 2022-08-25[ci] release (next) (#4480)create-astro@1.0.1-next.0astro@1.1.0-next.0@astrojs/react@1.1.0-next.0@astrojs/mdx@0.10.2-next.0@astrojs/markdown-remark@1.1.0-next.0Gravatar Fred K. Bot 38-76/+133 Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> 2022-08-25[ci] formatGravatar matthewp 2-11/+12 2022-08-25[MD] `extendDefaultPlugins` to preserve default remark plugins (#4474)Gravatar Ben Holmes 10-31/+100 * feat: add { extends } to markdown config * test: remark plugins with extends * deps: pnpm lock * chore: changeset * fix: remarkPlugins -> rehypePlugins * docs: update markdown config reference * Revert "feat: add { extends } to markdown config" This reverts commit 5d050bbcf9a2c0d470cae79c4d0a954d489f4e8c. * feat: new "extendDefaultPlugins" flag * docs: update config * nit: We -> Astro applies * fix: backticks on `false` * nit: Note -> REAL note Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * docs: note -> caution Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> 2022-08-25Update Markdown type signature to match behavior (#4423)Gravatar Ben Holmes 8-15/+60 * feat: "file" and "url" top-level layout props * test: markdown file and url * test: mdx file and url * feat: update MarkdownInstance + JSDoc improvements * chore: changeset 2022-08-25[ci] formatGravatar matthewp 1-2/+2 2022-08-25make Remark rehype options available in astro config (#4138)Gravatar gtnbssn 9-1/+108 * make remark-rehype config available in astro.config.mjs * add test for remark-rehype config, checks that footnotes can be translated * update lockfile to take the added test into account * omit handlers and unkownHandler from the RemarkRehype type * define RemarkRehype with proper references to the handler and handlers types * formatting * changeset Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com> Co-authored-by: Matthew Phillips <matthew@skypack.dev> 2022-08-25[ci] formatGravatar matthewp 3-48/+60 2022-08-25Make Astro.url conform to build.format during the build (#4352)Gravatar Matthew Phillips 8-3/+108 * Make Astro.url conform to build.format during the build * Adding a changeset * Better implementation * fix some stuff that tests failed on * Add docs * Change to minor * account for empty path 2022-08-25[ci] formatGravatar matthewp 1-1/+1 2022-08-25Add template tsconfigs for users to extend from (#4439)Gravatar Erika 33-343/+119 * Add tsconfig templates to extend from * Add changeset * Right order for assign parameters * Add tsconfigs to export map 2022-08-25Make astro package play nice with node16 module resolution (#4182)Gravatar Aleksander Heintz 5-13/+21 * Make astro package play nice with node16 module resolution Projects using node16 module resolution in typescript uses the new exports and imports configuration from typescript to find definition files. This mirrors how nodejs resolves the files. If a package contains an exports map in the package.json, typescript will ignore the "types" field (not sure how it plays with typesVersions). This moves the typings hirearchy of definition files into the same hierarchy that astro produces output files in, so that typescript can discover them. Fixes: #4172 * Add changeset * Reorder export keys * Update paths inside .d.ts files Co-authored-by: Princesseuh <princssdev@gmail.com>