summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar matthewp <matthewp@users.noreply.github.com> 2022-02-16 16:33:50 +0000
committerGravatar GitHub Actions <actions@github.com> 2022-02-16 16:33:50 +0000
commitb238b8c2486af0165e88d947d57a909dd32bcdbd (patch)
tree232647aeed7f5fa7b01d1c60d939cfee91d2e505
parent097d7777c427379ea2284532a0a6f801d6303219 (diff)
downloadastro-b238b8c2486af0165e88d947d57a909dd32bcdbd.tar.gz
astro-b238b8c2486af0165e88d947d57a909dd32bcdbd.tar.zst
astro-b238b8c2486af0165e88d947d57a909dd32bcdbd.zip
[ci] yarn format
-rw-r--r--packages/astro/CHANGELOG.md28
1 files changed, 14 insertions, 14 deletions
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md
index ed20215d4..c7fbf64b1 100644
--- a/packages/astro/CHANGELOG.md
+++ b/packages/astro/CHANGELOG.md
@@ -25,12 +25,12 @@
```typescript
// src/pages/company.json.ts
export async function get() {
- return {
- body: JSON.stringify({
- name: 'Astro Technology Company',
- url: 'https://astro.build/',
- }),
- };
+ return {
+ body: JSON.stringify({
+ name: 'Astro Technology Company',
+ url: 'https://astro.build/',
+ }),
+ };
}
```
@@ -1385,10 +1385,10 @@ For convenience, you may now also move your `astro.config.js` file to a top-leve
```js
export default {
- markdownOptions: {
- remarkPlugins: ['remark-slug', ['remark-autolink-headings', { behavior: 'prepend' }]],
- rehypePlugins: ['rehype-slug', ['rehype-autolink-headings', { behavior: 'prepend' }]],
- },
+ markdownOptions: {
+ remarkPlugins: ['remark-slug', ['remark-autolink-headings', { behavior: 'prepend' }]],
+ rehypePlugins: ['rehype-slug', ['rehype-autolink-headings', { behavior: 'prepend' }]],
+ },
};
```
@@ -1408,10 +1408,10 @@ For convenience, you may now also move your `astro.config.js` file to a top-leve
```js
export default {
- name: '@matthewp/my-renderer',
- server: './server.js',
- client: './client.js',
- hydrationPolyfills: ['./my-polyfill.js'],
+ name: '@matthewp/my-renderer',
+ server: './server.js',
+ client: './client.js',
+ hydrationPolyfills: ['./my-polyfill.js'],
};
```