summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> 2022-06-06 09:40:09 -0400
committerGravatar GitHub <noreply@github.com> 2022-06-06 09:40:09 -0400
commit9029c43549b7199fb816ccd0bac9171ee4e429c0 (patch)
tree3ad25b213a7793932d236951a66d80b344cd32c4
parentff6c9490a03273db8702b1456eff8697470a6626 (diff)
downloadastro-9029c43549b7199fb816ccd0bac9171ee4e429c0.tar.gz
astro-9029c43549b7199fb816ccd0bac9171ee4e429c0.tar.zst
astro-9029c43549b7199fb816ccd0bac9171ee4e429c0.zip
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
-rw-r--r--.changeset/famous-pens-cheer.md5
-rw-r--r--.changeset/hot-waves-jump.md5
-rw-r--r--.changeset/hungry-ears-clap.md5
-rw-r--r--.changeset/late-swans-impress.md5
-rw-r--r--.changeset/lazy-humans-invent.md5
-rw-r--r--.changeset/long-spies-check.md5
-rw-r--r--examples/basics/package.json2
-rw-r--r--examples/blog-multiple-authors/package.json2
-rw-r--r--examples/blog/package.json2
-rw-r--r--examples/component/demo/package.json2
-rw-r--r--examples/component/package.json2
-rw-r--r--examples/docs/package.json2
-rw-r--r--examples/env-vars/package.json2
-rw-r--r--examples/framework-alpine/package.json2
-rw-r--r--examples/framework-lit/package.json4
-rw-r--r--examples/framework-multiple/package.json4
-rw-r--r--examples/framework-preact/package.json2
-rw-r--r--examples/framework-react/package.json2
-rw-r--r--examples/framework-solid/package.json2
-rw-r--r--examples/framework-svelte/package.json2
-rw-r--r--examples/framework-vue/package.json2
-rw-r--r--examples/integrations-playground/package.json4
-rw-r--r--examples/minimal/package.json2
-rw-r--r--examples/non-html-pages/package.json2
-rw-r--r--examples/portfolio/package.json2
-rw-r--r--examples/ssr/package.json2
-rw-r--r--examples/starter/package.json2
-rw-r--r--examples/subpath/package.json2
-rw-r--r--examples/with-markdown-plugins/package.json4
-rw-r--r--examples/with-markdown-shiki/package.json4
-rw-r--r--examples/with-markdown/package.json4
-rw-r--r--examples/with-nanostores/package.json2
-rw-r--r--examples/with-tailwindcss/package.json2
-rw-r--r--examples/with-vite-plugin-pwa/package.json2
-rw-r--r--packages/astro/CHANGELOG.md11
-rw-r--r--packages/astro/package.json4
-rw-r--r--packages/integrations/lit/CHANGELOG.md6
-rw-r--r--packages/integrations/lit/package.json2
-rw-r--r--packages/markdown/remark/CHANGELOG.md12
-rw-r--r--packages/markdown/remark/package.json2
-rw-r--r--pnpm-lock.yaml70
41 files changed, 102 insertions, 103 deletions
diff --git a/.changeset/famous-pens-cheer.md b/.changeset/famous-pens-cheer.md
deleted file mode 100644
index 39468c01e..000000000
--- a/.changeset/famous-pens-cheer.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/lit': patch
----
-
-Patch Lit's server shim to allow for `sass` compatability
diff --git a/.changeset/hot-waves-jump.md b/.changeset/hot-waves-jump.md
deleted file mode 100644
index 0febdb487..000000000
--- a/.changeset/hot-waves-jump.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/markdown-remark': patch
----
-
-Fix Markdown errors missing source filename
diff --git a/.changeset/hungry-ears-clap.md b/.changeset/hungry-ears-clap.md
deleted file mode 100644
index e10b35f58..000000000
--- a/.changeset/hungry-ears-clap.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Allow importing .ts files with .js extension
diff --git a/.changeset/late-swans-impress.md b/.changeset/late-swans-impress.md
deleted file mode 100644
index ace91bef8..000000000
--- a/.changeset/late-swans-impress.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/markdown-remark': patch
----
-
-Fix: Allow self-closing tags in Markdown
diff --git a/.changeset/lazy-humans-invent.md b/.changeset/lazy-humans-invent.md
deleted file mode 100644
index 1203d20fd..000000000
--- a/.changeset/lazy-humans-invent.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'@astrojs/markdown-remark': minor
----
-
-Fix cases for JSX-like expressions in code blocks of headings
diff --git a/.changeset/long-spies-check.md b/.changeset/long-spies-check.md
deleted file mode 100644
index 4be15dd5f..000000000
--- a/.changeset/long-spies-check.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fix isSelfAccepting errors when hydrating JSX components
diff --git a/examples/basics/package.json b/examples/basics/package.json
index 79c3c3d34..6a832dae6 100644
--- a/examples/basics/package.json
+++ b/examples/basics/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^1.0.0-beta.40"
+ "astro": "^1.0.0-beta.41"
}
}
diff --git a/examples/blog-multiple-authors/package.json b/examples/blog-multiple-authors/package.json
index b0a33f050..aa3e9db06 100644
--- a/examples/blog-multiple-authors/package.json
+++ b/examples/blog-multiple-authors/package.json
@@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/preact": "^0.1.3",
- "astro": "^1.0.0-beta.40",
+ "astro": "^1.0.0-beta.41",
"sass": "^1.52.2"
},
"dependencies": {
diff --git a/examples/blog/package.json b/examples/blog/package.json
index 4b44b974b..70e6ad815 100644
--- a/examples/blog/package.json
+++ b/examples/blog/package.json
@@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/preact": "^0.1.3",
- "astro": "^1.0.0-beta.40"
+ "astro": "^1.0.0-beta.41"
},
"dependencies": {
"preact": "^10.7.3"
diff --git a/examples/component/demo/package.json b/examples/component/demo/package.json
index 62485deaf..4680f2c97 100644
--- a/examples/component/demo/package.json
+++ b/examples/component/demo/package.json
@@ -10,6 +10,6 @@
},
"devDependencies": {
"@example/my-component": "workspace:*",
- "astro": "^1.0.0-beta.40"
+ "astro": "^1.0.0-beta.41"
}
}
diff --git a/examples/component/package.json b/examples/component/package.json
index 3a32aa41a..f33d39157 100644
--- a/examples/component/package.json
+++ b/examples/component/package.json
@@ -8,6 +8,6 @@
"serve": "astro --root demo preview"
},
"devDependencies": {
- "astro": "^1.0.0-beta.40"
+ "astro": "^1.0.0-beta.41"
}
}
diff --git a/examples/docs/package.json b/examples/docs/package.json
index 555e77a62..043360948 100644
--- a/examples/docs/package.json
+++ b/examples/docs/package.json
@@ -20,6 +20,6 @@
"devDependencies": {
"@astrojs/preact": "^0.1.3",
"@astrojs/react": "^0.1.3",
- "astro": "^1.0.0-beta.40"
+ "astro": "^1.0.0-beta.41"
}
}
diff --git a/examples/env-vars/package.json b/examples/env-vars/package.json
index 7656730b7..f1c6b002d 100644
--- a/examples/env-vars/package.json
+++ b/examples/env-vars/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^1.0.0-beta.40"
+ "astro": "^1.0.0-beta.41"
}
}
diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json
index 0cb00d6fc..20dffbe5c 100644
--- a/examples/framework-alpine/package.json
+++ b/examples/framework-alpine/package.json
@@ -9,7 +9,7 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^1.0.0-beta.40"
+ "astro": "^1.0.0-beta.41"
},
"dependencies": {
"alpinejs": "^3.10.2"
diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json
index 97f9a32a0..bf265762e 100644
--- a/examples/framework-lit/package.json
+++ b/examples/framework-lit/package.json
@@ -9,8 +9,8 @@
"preview": "astro preview"
},
"devDependencies": {
- "@astrojs/lit": "^0.1.4",
- "astro": "^1.0.0-beta.40"
+ "@astrojs/lit": "^0.1.5",
+ "astro": "^1.0.0-beta.41"
},
"dependencies": {
"@webcomponents/template-shadowroot": "^0.1.0",
diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json
index cfeeeb621..d1e75ff4b 100644
--- a/examples/framework-multiple/package.json
+++ b/examples/framework-multiple/package.json
@@ -9,13 +9,13 @@
"preview": "astro preview"
},
"devDependencies": {
- "@astrojs/lit": "^0.1.4",
+ "@astrojs/lit": "^0.1.5",
"@astrojs/preact": "^0.1.3",
"@astrojs/react": "^0.1.3",
"@astrojs/solid-js": "^0.1.4",
"@astrojs/svelte": "^0.1.4",
"@astrojs/vue": "^0.1.5",
- "astro": "^1.0.0-beta.40"
+ "astro": "^1.0.0-beta.41"
},
"dependencies": {
"@webcomponents/template-shadowroot": "^0.1.0",
diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json
index 126647196..85f93a9e9 100644
--- a/examples/framework-preact/package.json
+++ b/examples/framework-preact/package.json
@@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/preact": "^0.1.3",
- "astro": "^1.0.0-beta.40"
+ "astro": "^1.0.0-beta.41"
},
"dependencies": {
"preact": "^10.7.3"
diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json
index 6a371a976..6b82940f3 100644
--- a/examples/framework-react/package.json
+++ b/examples/framework-react/package.json
@@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/react": "^0.1.3",
- "astro": "^1.0.0-beta.40"
+ "astro": "^1.0.0-beta.41"
},
"dependencies": {
"@types/react": "^18.0.10",
diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json
index 3f7ed0954..e9aec064b 100644
--- a/examples/framework-solid/package.json
+++ b/examples/framework-solid/package.json
@@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/solid-js": "^0.1.4",
- "astro": "^1.0.0-beta.40"
+ "astro": "^1.0.0-beta.41"
},
"dependencies": {
"solid-js": "^1.4.3"
diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json
index 80a6e4c46..68ee9d832 100644
--- a/examples/framework-svelte/package.json
+++ b/examples/framework-svelte/package.json
@@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/svelte": "^0.1.4",
- "astro": "^1.0.0-beta.40"
+ "astro": "^1.0.0-beta.41"
},
"dependencies": {
"svelte": "^3.48.0"
diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json
index ff9ad3afc..e1649308c 100644
--- a/examples/framework-vue/package.json
+++ b/examples/framework-vue/package.json
@@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/vue": "^0.1.5",
- "astro": "^1.0.0-beta.40"
+ "astro": "^1.0.0-beta.41"
},
"dependencies": {
"vue": "^3.2.36"
diff --git a/examples/integrations-playground/package.json b/examples/integrations-playground/package.json
index 7a72dbc68..75f8e0a05 100644
--- a/examples/integrations-playground/package.json
+++ b/examples/integrations-playground/package.json
@@ -9,14 +9,14 @@
"preview": "astro preview"
},
"devDependencies": {
- "@astrojs/lit": "^0.1.4",
+ "@astrojs/lit": "^0.1.5",
"@astrojs/partytown": "^0.1.4",
"@astrojs/react": "^0.1.3",
"@astrojs/sitemap": "^0.1.0",
"@astrojs/solid-js": "0.1.4",
"@astrojs/tailwind": "^0.2.1",
"@astrojs/turbolinks": "^0.1.3",
- "astro": "^1.0.0-beta.40",
+ "astro": "^1.0.0-beta.41",
"solid-js": "^1.4.3"
},
"dependencies": {
diff --git a/examples/minimal/package.json b/examples/minimal/package.json
index 90ac600b1..8d156dd0a 100644
--- a/examples/minimal/package.json
+++ b/examples/minimal/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^1.0.0-beta.40"
+ "astro": "^1.0.0-beta.41"
}
}
diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json
index 4f125b98d..7ff00332f 100644
--- a/examples/non-html-pages/package.json
+++ b/examples/non-html-pages/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^1.0.0-beta.40"
+ "astro": "^1.0.0-beta.41"
}
}
diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json
index 06194b810..53b0fa6cc 100644
--- a/examples/portfolio/package.json
+++ b/examples/portfolio/package.json
@@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/preact": "^0.1.3",
- "astro": "^1.0.0-beta.40",
+ "astro": "^1.0.0-beta.41",
"sass": "^1.52.2"
},
"dependencies": {
diff --git a/examples/ssr/package.json b/examples/ssr/package.json
index 5e0df27e3..3547356e0 100644
--- a/examples/ssr/package.json
+++ b/examples/ssr/package.json
@@ -11,7 +11,7 @@
"devDependencies": {
"@astrojs/node": "^0.1.2",
"@astrojs/svelte": "^0.1.4",
- "astro": "^1.0.0-beta.40",
+ "astro": "^1.0.0-beta.41",
"concurrently": "^7.2.1",
"lightcookie": "^1.0.25",
"unocss": "^0.15.6",
diff --git a/examples/starter/package.json b/examples/starter/package.json
index 07648eacd..ff932dc9d 100644
--- a/examples/starter/package.json
+++ b/examples/starter/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^1.0.0-beta.40"
+ "astro": "^1.0.0-beta.41"
}
}
diff --git a/examples/subpath/package.json b/examples/subpath/package.json
index 29e4bd010..e9d5c1e6d 100644
--- a/examples/subpath/package.json
+++ b/examples/subpath/package.json
@@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/react": "^0.1.3",
- "astro": "^1.0.0-beta.40",
+ "astro": "^1.0.0-beta.41",
"sass": "^1.52.2"
},
"dependencies": {
diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json
index a8565cf37..47b700ede 100644
--- a/examples/with-markdown-plugins/package.json
+++ b/examples/with-markdown-plugins/package.json
@@ -9,8 +9,8 @@
"preview": "astro preview"
},
"devDependencies": {
- "@astrojs/markdown-remark": "^0.10.2",
- "astro": "^1.0.0-beta.40",
+ "@astrojs/markdown-remark": "^0.11.0",
+ "astro": "^1.0.0-beta.41",
"hast-util-select": "5.0.1",
"rehype-autolink-headings": "^6.1.1",
"rehype-slug": "^5.0.1",
diff --git a/examples/with-markdown-shiki/package.json b/examples/with-markdown-shiki/package.json
index df971c571..f2fb05455 100644
--- a/examples/with-markdown-shiki/package.json
+++ b/examples/with-markdown-shiki/package.json
@@ -9,7 +9,7 @@
"preview": "astro preview"
},
"devDependencies": {
- "@astrojs/markdown-remark": "^0.10.2",
- "astro": "^1.0.0-beta.40"
+ "@astrojs/markdown-remark": "^0.11.0",
+ "astro": "^1.0.0-beta.41"
}
}
diff --git a/examples/with-markdown/package.json b/examples/with-markdown/package.json
index 32cb9e3fe..57bd5d3d7 100644
--- a/examples/with-markdown/package.json
+++ b/examples/with-markdown/package.json
@@ -9,12 +9,12 @@
"preview": "astro preview"
},
"devDependencies": {
- "@astrojs/markdown-remark": "^0.10.2",
+ "@astrojs/markdown-remark": "^0.11.0",
"@astrojs/preact": "^0.1.3",
"@astrojs/react": "^0.1.3",
"@astrojs/svelte": "^0.1.4",
"@astrojs/vue": "^0.1.5",
- "astro": "^1.0.0-beta.40"
+ "astro": "^1.0.0-beta.41"
},
"dependencies": {
"preact": "^10.7.3",
diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json
index c29acd2be..a320a8d44 100644
--- a/examples/with-nanostores/package.json
+++ b/examples/with-nanostores/package.json
@@ -25,6 +25,6 @@
"@astrojs/solid-js": "^0.1.4",
"@astrojs/svelte": "^0.1.4",
"@astrojs/vue": "^0.1.5",
- "astro": "^1.0.0-beta.40"
+ "astro": "^1.0.0-beta.41"
}
}
diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json
index d8acf6344..402377532 100644
--- a/examples/with-tailwindcss/package.json
+++ b/examples/with-tailwindcss/package.json
@@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/tailwind": "^0.2.1",
- "astro": "^1.0.0-beta.40",
+ "astro": "^1.0.0-beta.41",
"autoprefixer": "^10.4.7",
"canvas-confetti": "^1.5.1",
"postcss": "^8.4.14",
diff --git a/examples/with-vite-plugin-pwa/package.json b/examples/with-vite-plugin-pwa/package.json
index 06d4e444f..aa6d57d89 100644
--- a/examples/with-vite-plugin-pwa/package.json
+++ b/examples/with-vite-plugin-pwa/package.json
@@ -9,7 +9,7 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^1.0.0-beta.40",
+ "astro": "^1.0.0-beta.41",
"vite-plugin-pwa": "0.11.11",
"workbox-window": "^6.5.3"
}
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md
index b8d9ced7a..c8095bf0b 100644
--- a/packages/astro/CHANGELOG.md
+++ b/packages/astro/CHANGELOG.md
@@ -1,5 +1,16 @@
# astro
+## 1.0.0-beta.41
+
+### Patch Changes
+
+- [#3518](https://github.com/withastro/astro/pull/3518) [`df7c43df`](https://github.com/withastro/astro/commit/df7c43df632f276dabb9bce0ca59eb93d2ebc021) Thanks [@matthewp](https://github.com/matthewp)! - Allow importing .ts files with .js extension
+
+* [#3521](https://github.com/withastro/astro/pull/3521) [`85b90549`](https://github.com/withastro/astro/commit/85b905495d4bc538686109e056a821e35139c111) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix isSelfAccepting errors when hydrating JSX components
+
+* Updated dependencies [[`6c955ca6`](https://github.com/withastro/astro/commit/6c955ca643a7a071609ce8a5258cc7faf5a636b2), [`30578015`](https://github.com/withastro/astro/commit/30578015919e019cd8dd354288a45c1fc63bd01f), [`939fe159`](https://github.com/withastro/astro/commit/939fe159255cecf1cab5c1b3da2670d30ac8e4a7)]:
+ - @astrojs/markdown-remark@0.11.0
+
## 1.0.0-beta.40
### Patch Changes
diff --git a/packages/astro/package.json b/packages/astro/package.json
index 19561ce14..24fb9ac06 100644
--- a/packages/astro/package.json
+++ b/packages/astro/package.json
@@ -1,6 +1,6 @@
{
"name": "astro",
- "version": "1.0.0-beta.40",
+ "version": "1.0.0-beta.41",
"description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.",
"type": "module",
"author": "withastro",
@@ -79,7 +79,7 @@
"dependencies": {
"@astrojs/compiler": "^0.15.2",
"@astrojs/language-server": "^0.13.4",
- "@astrojs/markdown-remark": "^0.10.2",
+ "@astrojs/markdown-remark": "^0.11.0",
"@astrojs/prism": "0.4.1",
"@astrojs/telemetry": "^0.1.2",
"@astrojs/webapi": "^0.12.0",
diff --git a/packages/integrations/lit/CHANGELOG.md b/packages/integrations/lit/CHANGELOG.md
index fa295e93c..c8a144453 100644
--- a/packages/integrations/lit/CHANGELOG.md
+++ b/packages/integrations/lit/CHANGELOG.md
@@ -1,5 +1,11 @@
# @astrojs/lit
+## 0.1.5
+
+### Patch Changes
+
+- [#3511](https://github.com/withastro/astro/pull/3511) [`2fedb974`](https://github.com/withastro/astro/commit/2fedb974899b37a8d9ddabc476764a6d35d1e446) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Patch Lit's server shim to allow for `sass` compatability
+
## 0.1.4
### Patch Changes
diff --git a/packages/integrations/lit/package.json b/packages/integrations/lit/package.json
index 13bf8462e..bd8620a00 100644
--- a/packages/integrations/lit/package.json
+++ b/packages/integrations/lit/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/lit",
- "version": "0.1.4",
+ "version": "0.1.5",
"description": "Use Lit components within Astro",
"type": "module",
"types": "./dist/index.d.ts",
diff --git a/packages/markdown/remark/CHANGELOG.md b/packages/markdown/remark/CHANGELOG.md
index 663ebb1af..61dc25190 100644
--- a/packages/markdown/remark/CHANGELOG.md
+++ b/packages/markdown/remark/CHANGELOG.md
@@ -1,5 +1,17 @@
# @astrojs/markdown-remark
+## 0.11.0
+
+### Minor Changes
+
+- [#3502](https://github.com/withastro/astro/pull/3502) [`939fe159`](https://github.com/withastro/astro/commit/939fe159255cecf1cab5c1b3da2670d30ac8e4a7) Thanks [@nokazn](https://github.com/nokazn)! - Fix cases for JSX-like expressions in code blocks of headings
+
+### Patch Changes
+
+- [#3514](https://github.com/withastro/astro/pull/3514) [`6c955ca6`](https://github.com/withastro/astro/commit/6c955ca643a7a071609ce8a5258cc7faf5a636b2) Thanks [@hippotastic](https://github.com/hippotastic)! - Fix Markdown errors missing source filename
+
+* [#3516](https://github.com/withastro/astro/pull/3516) [`30578015`](https://github.com/withastro/astro/commit/30578015919e019cd8dd354288a45c1fc63bd01f) Thanks [@hippotastic](https://github.com/hippotastic)! - Fix: Allow self-closing tags in Markdown
+
## 0.10.2
### Patch Changes
diff --git a/packages/markdown/remark/package.json b/packages/markdown/remark/package.json
index 0d771781e..cec469eb5 100644
--- a/packages/markdown/remark/package.json
+++ b/packages/markdown/remark/package.json
@@ -1,6 +1,6 @@
{
"name": "@astrojs/markdown-remark",
- "version": "0.10.2",
+ "version": "0.11.0",
"type": "module",
"author": "withastro",
"license": "MIT",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index f835923e2..eb89d0e20 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -45,14 +45,14 @@ importers:
examples/basics:
specifiers:
- astro: ^1.0.0-beta.40
+ astro: ^1.0.0-beta.41
devDependencies:
astro: link:../../packages/astro
examples/blog:
specifiers:
'@astrojs/preact': ^0.1.3
- astro: ^1.0.0-beta.40
+ astro: ^1.0.0-beta.41
preact: ^10.7.3
dependencies:
preact: 10.7.3
@@ -63,7 +63,7 @@ importers:
examples/blog-multiple-authors:
specifiers:
'@astrojs/preact': ^0.1.3
- astro: ^1.0.0-beta.40
+ astro: ^1.0.0-beta.41
preact: ^10.7.3
sass: ^1.52.2
dependencies:
@@ -75,14 +75,14 @@ importers:
examples/component:
specifiers:
- astro: ^1.0.0-beta.40
+ astro: ^1.0.0-beta.41
devDependencies:
astro: link:../../packages/astro
examples/component/demo:
specifiers:
'@example/my-component': workspace:*
- astro: ^1.0.0-beta.40
+ astro: ^1.0.0-beta.41
devDependencies:
'@example/my-component': link:../packages/my-component
astro: link:../../../packages/astro
@@ -98,7 +98,7 @@ importers:
'@docsearch/css': ^3.1.0
'@docsearch/react': ^3.1.0
'@types/react': ^17.0.45
- astro: ^1.0.0-beta.40
+ astro: ^1.0.0-beta.41
preact: ^10.7.3
react: ^17.0.2
react-dom: ^17.0.2
@@ -117,14 +117,14 @@ importers:
examples/env-vars:
specifiers:
- astro: ^1.0.0-beta.40
+ astro: ^1.0.0-beta.41
devDependencies:
astro: link:../../packages/astro
examples/framework-alpine:
specifiers:
alpinejs: ^3.10.2
- astro: ^1.0.0-beta.40
+ astro: ^1.0.0-beta.41
dependencies:
alpinejs: 3.10.2
devDependencies:
@@ -132,9 +132,9 @@ importers:
examples/framework-lit:
specifiers:
- '@astrojs/lit': ^0.1.4
+ '@astrojs/lit': ^0.1.5
'@webcomponents/template-shadowroot': ^0.1.0
- astro: ^1.0.0-beta.40
+ astro: ^1.0.0-beta.41
lit: ^2.2.5
dependencies:
'@webcomponents/template-shadowroot': 0.1.0
@@ -145,14 +145,14 @@ importers:
examples/framework-multiple:
specifiers:
- '@astrojs/lit': ^0.1.4
+ '@astrojs/lit': ^0.1.5
'@astrojs/preact': ^0.1.3
'@astrojs/react': ^0.1.3
'@astrojs/solid-js': ^0.1.4
'@astrojs/svelte': ^0.1.4
'@astrojs/vue': ^0.1.5
'@webcomponents/template-shadowroot': ^0.1.0
- astro: ^1.0.0-beta.40
+ astro: ^1.0.0-beta.41
lit: ^2.2.5
preact: ^10.7.3
react: ^18.1.0
@@ -181,7 +181,7 @@ importers:
examples/framework-preact:
specifiers:
'@astrojs/preact': ^0.1.3
- astro: ^1.0.0-beta.40
+ astro: ^1.0.0-beta.41
preact: ^10.7.3
dependencies:
preact: 10.7.3
@@ -194,7 +194,7 @@ importers:
'@astrojs/react': ^0.1.3
'@types/react': ^18.0.10
'@types/react-dom': ^18.0.5
- astro: ^1.0.0-beta.40
+ astro: ^1.0.0-beta.41
react: ^18.1.0
react-dom: ^18.1.0
dependencies:
@@ -209,7 +209,7 @@ importers:
examples/framework-solid:
specifiers:
'@astrojs/solid-js': ^0.1.4
- astro: ^1.0.0-beta.40
+ astro: ^1.0.0-beta.41
solid-js: ^1.4.3
dependencies:
solid-js: 1.4.3
@@ -220,7 +220,7 @@ importers:
examples/framework-svelte:
specifiers:
'@astrojs/svelte': ^0.1.4
- astro: ^1.0.0-beta.40
+ astro: ^1.0.0-beta.41
svelte: ^3.48.0
dependencies:
svelte: 3.48.0
@@ -231,7 +231,7 @@ importers:
examples/framework-vue:
specifiers:
'@astrojs/vue': ^0.1.5
- astro: ^1.0.0-beta.40
+ astro: ^1.0.0-beta.41
vue: ^3.2.36
dependencies:
vue: 3.2.36
@@ -241,7 +241,7 @@ importers:
examples/integrations-playground:
specifiers:
- '@astrojs/lit': ^0.1.4
+ '@astrojs/lit': ^0.1.5
'@astrojs/partytown': ^0.1.4
'@astrojs/react': ^0.1.3
'@astrojs/sitemap': ^0.1.0
@@ -249,7 +249,7 @@ importers:
'@astrojs/tailwind': ^0.2.1
'@astrojs/turbolinks': ^0.1.3
'@webcomponents/template-shadowroot': ^0.1.0
- astro: ^1.0.0-beta.40
+ astro: ^1.0.0-beta.41
lit: ^2.2.5
preact: ^10.7.3
react: ^18.1.0
@@ -278,20 +278,20 @@ importers:
examples/minimal:
specifiers:
- astro: ^1.0.0-beta.40
+ astro: ^1.0.0-beta.41
devDependencies:
astro: link:../../packages/astro
examples/non-html-pages:
specifiers:
- astro: ^1.0.0-beta.40
+ astro: ^1.0.0-beta.41
devDependencies:
astro: link:../../packages/astro
examples/portfolio:
specifiers:
'@astrojs/preact': ^0.1.3
- astro: ^1.0.0-beta.40
+ astro: ^1.0.0-beta.41
preact: ^10.7.3
sass: ^1.52.2
dependencies:
@@ -305,7 +305,7 @@ importers:
specifiers:
'@astrojs/node': ^0.1.2
'@astrojs/svelte': ^0.1.4
- astro: ^1.0.0-beta.40
+ astro: ^1.0.0-beta.41
concurrently: ^7.2.1
lightcookie: ^1.0.25
svelte: ^3.48.0
@@ -324,14 +324,14 @@ importers:
examples/starter:
specifiers:
- astro: ^1.0.0-beta.40
+ astro: ^1.0.0-beta.41
devDependencies:
astro: link:../../packages/astro
examples/subpath:
specifiers:
'@astrojs/react': ^0.1.3
- astro: ^1.0.0-beta.40
+ astro: ^1.0.0-beta.41
react: ^18.1.0
react-dom: ^18.1.0
sass: ^1.52.2
@@ -345,12 +345,12 @@ importers:
examples/with-markdown:
specifiers:
- '@astrojs/markdown-remark': ^0.10.2
+ '@astrojs/markdown-remark': ^0.11.0
'@astrojs/preact': ^0.1.3
'@astrojs/react': ^0.1.3
'@astrojs/svelte': ^0.1.4
'@astrojs/vue': ^0.1.5
- astro: ^1.0.0-beta.40
+ astro: ^1.0.0-beta.41
preact: ^10.7.3
react: ^18.1.0
react-dom: ^18.1.0
@@ -372,8 +372,8 @@ importers:
examples/with-markdown-plugins:
specifiers:
- '@astrojs/markdown-remark': ^0.10.2
- astro: ^1.0.0-beta.40
+ '@astrojs/markdown-remark': ^0.11.0
+ astro: ^1.0.0-beta.41
hast-util-select: 5.0.1
rehype-autolink-headings: ^6.1.1
rehype-slug: ^5.0.1
@@ -390,8 +390,8 @@ importers:
examples/with-markdown-shiki:
specifiers:
- '@astrojs/markdown-remark': ^0.10.2
- astro: ^1.0.0-beta.40
+ '@astrojs/markdown-remark': ^0.11.0
+ astro: ^1.0.0-beta.41
devDependencies:
'@astrojs/markdown-remark': link:../../packages/markdown/remark
astro: link:../../packages/astro
@@ -406,7 +406,7 @@ importers:
'@nanostores/preact': ^0.1.3
'@nanostores/react': ^0.1.5
'@nanostores/vue': ^0.4.1
- astro: ^1.0.0-beta.40
+ astro: ^1.0.0-beta.41
nanostores: ^0.5.12
preact: ^10.7.3
react: ^18.1.0
@@ -434,7 +434,7 @@ importers:
examples/with-tailwindcss:
specifiers:
'@astrojs/tailwind': ^0.2.1
- astro: ^1.0.0-beta.40
+ astro: ^1.0.0-beta.41
autoprefixer: ^10.4.7
canvas-confetti: ^1.5.1
postcss: ^8.4.14
@@ -449,7 +449,7 @@ importers:
examples/with-vite-plugin-pwa:
specifiers:
- astro: ^1.0.0-beta.40
+ astro: ^1.0.0-beta.41
vite-plugin-pwa: 0.11.11
workbox-window: ^6.5.3
devDependencies:
@@ -461,7 +461,7 @@ importers:
specifiers:
'@astrojs/compiler': ^0.15.2
'@astrojs/language-server': ^0.13.4
- '@astrojs/markdown-remark': ^0.10.2
+ '@astrojs/markdown-remark': ^0.11.0
'@astrojs/prism': 0.4.1
'@astrojs/telemetry': ^0.1.2
'@astrojs/webapi': ^0.12.0