summaryrefslogtreecommitdiff
path: root/examples/with-markdown-plugins/add-classes.mjs (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2023-01-30[ci] formatGravatar natemoo-re 1-4/+4
2023-01-30Handle invalid argument errors (#6045)Gravatar Nate Moore 3-4/+40
* fix: add error handling for invalid arguments * chore: add changeset * Update packages/astro/src/core/errors/errors-data.ts Co-authored-by: Yan Thomas <61414485+Yan-Thomas@users.noreply.github.com> --------- Co-authored-by: Nate Moore <nate@astro.build> Co-authored-by: Yan Thomas <61414485+Yan-Thomas@users.noreply.github.com>
2023-01-30[ci] formatGravatar matthewp 1-1/+1
2023-01-30Fix Cloudflare directory mode regression (#6046)Gravatar Matthew Phillips 3-6/+33
* Fix Cloudflare directory mode regression * Adding a changeset
2023-01-30[ci] release (#5995)Gravatar Houston (Bot) 75-193/+250
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2023-01-30fix(#5922): improve top-level return error (#6036)Gravatar Nate Moore 2-2/+14
Co-authored-by: Nate Moore <nate@astro.build>
2023-01-30[ci] update lockfile (#5988)Gravatar Houston (Bot) 3-660/+641
* [ci] update lockfile * fix type issues --------- Co-authored-by: FredKSchott <FredKSchott@users.noreply.github.com> Co-authored-by: Nate Moore <nate@astro.build>
2023-01-30[ci] formatGravatar matthewp 5-63/+114
2023-01-30Simplified head injection (#6034)Gravatar Matthew Phillips 20-54/+411
* Simplified head injection * Make renderHead also yield an instruction * Add changeset * Add mdx test
2023-01-30Add branches info to CONTRIBUTING (#6039)Gravatar Nate Moore 1-0/+15
* add repo structure section * Update CONTRIBUTING.md --------- Co-authored-by: Nate Moore <nate@astro.build>
2023-01-30[ci] formatGravatar bholmesdev 6-6/+6
2023-01-30[Content collections] Load MDX hoisted scripts in dev (#6035)Gravatar Ben Holmes 21-115/+264
* chore: script, rename delayed -> propagated * fix: consistent propagatedAssets flag * feat: inject those scripts in dev! * test: scripts included in dev and build * chore: add TODO for prod build fix * chore: changeset
2023-01-30Fix `edit this Page` on `examples/docs` (#6028)Gravatar Rychart Redwerkz 2-4/+3
* 🐛 Fix path from `pages` to `content/docs` * 🐛 Fix path from `pages` to `content/docs`
2023-01-30Remove outdated MDX import types (#6024)Gravatar Happydev 2-2/+5
2023-01-29Fix local image example (#6019)Gravatar Bryce Russell 1-1/+1
- `aspectRatio` prop requires a `width` or `height` prop Co-authored-by: BryceRussell <19967622+BryceRussell@users.noreply.github.com>
2023-01-27`@astrojs/image`: Allow passing `undefined` to transform options (#6008)Gravatar Caleb Jasik 4-9/+19
* Allow passing `undefined` to transform options This fixes #6001, allowing undefined passed as a variable in addition to not passing the property at all * Create strange-olives-rest.md * Improve error message for missing `widths` prop * Add changeset
2023-01-27Makes the `AstroCookies` type importable directly from "astro" (#6006)Gravatar Tony Sullivan 2-0/+6
* re-exports the AstroCookie type from the main 'astro' types * chore: add changeset
2023-01-27[ci] formatGravatar matthewp 2-2/+2
2023-01-27feat(@astrojs/netlify): Add on-demand builders Netlify functions (#5874)Gravatar Juan Miguel Guerrero 6-7/+40
* Add on-demand builders option * chore: add changeset * docs: add documentation in configuration section * Update packages/integrations/netlify/README.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Update packages/integrations/netlify/README.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Update packages/integrations/netlify/README.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> * Update .changeset/twenty-pans-agree.md Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca> --------- Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
2023-01-27[ci] formatGravatar bluwy 1-4/+1
2023-01-27fix: autoprefixer on dev mode for tailwind plugin (#6002)Gravatar Roy Eden 6-9/+17
Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
2023-01-26fix: Don’t require `getCollection()` filter to be a type guard (#5998)Gravatar Anders Kaseorg 3-1/+10
Commit dabce6b8c684f851c3535f8acead06cbef6dce2a (#5970) broke the use of a plain boolean filter. Add an overload similar to TypeScript’s Array#filter overload: https://github.com/microsoft/TypeScript/blob/v4.9.4/lib/lib.es5.d.ts#L1442-L1453 Signed-off-by: Anders Kaseorg <andersk@mit.edu> Signed-off-by: Anders Kaseorg <andersk@mit.edu>
2023-01-26[ci] formatGravatar matthewp 1-4/+2
2023-01-26Add a check for existing .git directory (and skip if one is found). (#5953)Gravatar Chris Banford 2-2/+15
* Add a check for existing .git directory (and skip if one is found). * Changeset attempt :-) * Update .changeset/try-button-rumor.md Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
2023-01-26fix error in changelog formatting (#5997)Gravatar Nate Moore 1-1/+1
* fix changelog * Update CHANGELOG.md Co-authored-by: Nate Moore <nate@astro.build>
2023-01-26fix: undefined remarkPluginFrontmatter after calling render method (#5927)Gravatar 银河渡舟 2-1/+6
* Update vite-plugin-content-assets.ts * Add changeset for #5927 Signed-off-by: Anders Kaseorg <andersk@mit.edu> Signed-off-by: Anders Kaseorg <andersk@mit.edu> Co-authored-by: Anders Kaseorg <andersk@mit.edu>
2023-01-26Updated according to new configuration (#5478)Gravatar Subha Chanda 14-103/+399
* Updated according to new configuration Astro imports the `defineConfig` function from `astro/config`. The `integrations` key needs to be passed into the `defineConfig` function, but it is not shown in the README. Updated the README according to the CLI example. * update alpine * update image * update lit * update mdx * update preact * update prefetch * update react * update sitemap * update solid * update svelte * update tailwind * update turbolinks * update vue * chore: add changeset * update image * update svelte readme Co-authored-by: Nate Moore <nate@astro.build> Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
2023-01-26[ci] release (#5984)astro@2.0.2@astrojs/react@2.0.1@astrojs/node@5.0.1@astrojs/mdx@0.15.1@astrojs/markdown-remark@2.0.1@astrojs/cloudflare@6.1.0Gravatar Houston (Bot) 55-139/+155
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2023-01-26Fix MDX heading IDs generation when using a frontmatter reference (#5978)Gravatar HiDeoo 6-3/+172
* Fix MDX heading IDs generation when using a frontmatter reference * Hoist safelyGetAstroData() call and add statement null check
2023-01-26[ci] formatGravatar matthewp 4-4/+5
2023-01-26Support for prerendering in the Cloudflare integration (#5993)Gravatar Matthew Phillips 11-6/+93
* Cloudflare prerender branch * Add prerendered routes to Cloudflare routes.json * Adding changeset * Prevent process proxy from running during prerender phase
2023-01-26Fix `Astro.url.protocol` when using the @astrojs/node SSR adapter with HTTPS ↵Gravatar HiDeoo 7-2/+116
(#5992)
2023-01-26Make examples more consistent (#5201)Gravatar Nick McCurdy 6-26/+33
* Don't ignore `.output` From packages/integrations/vercel/CHANGELOG.md#minor-changes-5: > The output folder changed from `.output` to `.vercel/output` — you may need to update your `.gitignore`. * Make example readmes more consistent * remove `astro check` command Co-authored-by: Nate Moore <nate@astro.build>
2023-01-26Re-enable streaming on Cloudflare Pages (#5914)Gravatar Angus 3-2/+7
* Support streaming on Cloudflare Pages * Create tidy-ties-repeat.md Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
2023-01-25[ci] formatGravatar natemoo-re 2-2/+1
2023-01-25fix: component is not able to use a custom theme anymore (#5952)Gravatar wulinsheng123 3-3/+10
* Astro <Code> component is not able to use a custom theme anymore * Astro <Code> component is not able to use a custom theme anymore * Astro <Code> component is not able to use a custom theme anymore Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com>
2023-01-25change @astrojs/solid to @astrojs/solid-js (#5971)Gravatar Yaroslav Lapin 2-2/+7
* change @astrojs/solid to @astrojs/solid-js @astrojs/solid package doesn't exist * Create serious-turtles-explode.md * Update .changeset/serious-turtles-explode.md Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com> Co-authored-by: Nate Moore <natemoo-re@users.noreply.github.com> Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com>
2023-01-25Support passing `children` as props to a React component (#5886)Gravatar HiDeoo 6-5/+27
2023-01-25[Content collections] Support type guards on `getCollection()` filter (#5970)Gravatar Ben Holmes 2-3/+8
* fix: respect type guards from collection filter * chore: changeset
2023-01-25Handle unmatched 404 when using prerender in dev mode (#5983)Gravatar Nate Moore 3-1/+10
* fix(#5975): unmatched static paths should 404 during dev * chore: add changeset Co-authored-by: Nate Moore <nate@astro.build>
2023-01-25[docs] typo fix in MDX README (#5977)Gravatar Sarah Rainsberger 1-1/+1
2023-01-25[ci] release (#5963)astro@2.0.1Gravatar Houston (Bot) 41-79/+74
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2023-01-25Upgrade semver dependency (#5972)Gravatar Bjorn Lu 3-2/+7
2023-01-25[ci] formatGravatar matthewp 1-1/+1
2023-01-24Protect against shimmed process usage in Vercel Edge (#5969)Gravatar Matthew Phillips 2-4/+19
* Protect against shimmed process usage in Vercel Edge * Adding a changeset
2023-01-24docs(svelte): Update integration README (#5966)Gravatar Lucas Vargas 1-0/+2
2023-01-24Fix Content Collections not loading config file when there are spaces in the ↵Gravatar Happydev 7-1/+95
folder tree (#5962) * fix * add test * use `fileURLToPath` instead * chore: changeset * remove useless config file * revert back to using `decodeURIComponent` * test: better test * re-revert back to using `fileURLToPath`
2023-01-24[ci] formatGravatar natemoo-re 1-1/+1
2023-01-24Ignore lint warning (#5949)Gravatar Reuben Tier 1-0/+1
2023-01-24[ci] release (#5959)create-astro@2.0.1Gravatar Houston (Bot) 3-6/+7
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>