diff options
author | 2022-03-04 21:30:35 +0000 | |
---|---|---|
committer | 2022-03-04 21:30:35 +0000 | |
commit | e02438ce1fcc106da3e81dcc3f3df5a72f7c64d7 (patch) | |
tree | 2ff60515a2452f851ef6d0d51d6efcbda851548d | |
parent | a6ee42fa17f69226d181e585fed85ddc633969c2 (diff) | |
download | astro-e02438ce1fcc106da3e81dcc3f3df5a72f7c64d7.tar.gz astro-e02438ce1fcc106da3e81dcc3f3df5a72f7c64d7.tar.zst astro-e02438ce1fcc106da3e81dcc3f3df5a72f7c64d7.zip |
[ci] yarn format
-rw-r--r-- | packages/astro/CHANGELOG.md | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 68194605a..fa4f3a6bc 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -96,12 +96,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/', + }), + }; } ``` @@ -263,12 +263,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/', + }), + }; } ``` @@ -1623,10 +1623,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' }]], + }, }; ``` @@ -1646,10 +1646,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'], }; ``` |