summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> 2022-04-27 16:23:53 -0400
committerGravatar GitHub <noreply@github.com> 2022-04-27 16:23:53 -0400
commit79378523957462705ca4a32f69c14aacb1a8244b (patch)
tree55e66ef3f369538061aa3630f88bc97f55edb9a4
parent3d6e382b583646f047836b703a867c3b29ac91b2 (diff)
downloadastro-create-astro@0.10.1.tar.gz
astro-create-astro@0.10.1.tar.zst
astro-create-astro@0.10.1.zip
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
-rw-r--r--.changeset/curly-cobras-kneel.md5
-rw-r--r--.changeset/eight-falcons-applaud.md5
-rw-r--r--.changeset/tiny-guests-stare.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.json2
-rw-r--r--examples/framework-multiple/package.json2
-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.json2
-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.json2
-rw-r--r--examples/with-markdown-shiki/package.json2
-rw-r--r--examples/with-markdown/package.json2
-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.md8
-rw-r--r--packages/astro/package.json2
-rw-r--r--packages/create-astro/CHANGELOG.md6
-rw-r--r--packages/create-astro/package.json2
-rw-r--r--pnpm-lock.yaml90
36 files changed, 82 insertions, 97 deletions
diff --git a/.changeset/curly-cobras-kneel.md b/.changeset/curly-cobras-kneel.md
deleted file mode 100644
index d45af83e3..000000000
--- a/.changeset/curly-cobras-kneel.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'create-astro': patch
----
-
-Simplify logging during welcome message and directory selection
diff --git a/.changeset/eight-falcons-applaud.md b/.changeset/eight-falcons-applaud.md
deleted file mode 100644
index 5896f028d..000000000
--- a/.changeset/eight-falcons-applaud.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Replaced deprecated String.substr with String.slice
diff --git a/.changeset/tiny-guests-stare.md b/.changeset/tiny-guests-stare.md
deleted file mode 100644
index ad2ea7844..000000000
--- a/.changeset/tiny-guests-stare.md
+++ /dev/null
@@ -1,5 +0,0 @@
----
-'astro': patch
----
-
-Fix: bump Astro core to update available starter templates. Find new "Just the Basics" option in create-astro!
diff --git a/examples/basics/package.json b/examples/basics/package.json
index 47641b465..418d1f8b6 100644
--- a/examples/basics/package.json
+++ b/examples/basics/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^1.0.0-beta.17"
+ "astro": "^1.0.0-beta.19"
}
}
diff --git a/examples/blog-multiple-authors/package.json b/examples/blog-multiple-authors/package.json
index 297c4dc72..f52ff1405 100644
--- a/examples/blog-multiple-authors/package.json
+++ b/examples/blog-multiple-authors/package.json
@@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/preact": "^0.1.2",
- "astro": "^1.0.0-beta.18",
+ "astro": "^1.0.0-beta.19",
"sass": "^1.50.1"
},
"dependencies": {
diff --git a/examples/blog/package.json b/examples/blog/package.json
index 60cd5f06f..b2573febd 100644
--- a/examples/blog/package.json
+++ b/examples/blog/package.json
@@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/preact": "^0.1.2",
- "astro": "^1.0.0-beta.18"
+ "astro": "^1.0.0-beta.19"
},
"dependencies": {
"preact": "^10.7.1"
diff --git a/examples/component/demo/package.json b/examples/component/demo/package.json
index 05ce38014..e9b09ad66 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.18"
+ "astro": "^1.0.0-beta.19"
}
}
diff --git a/examples/component/package.json b/examples/component/package.json
index bcd21c89e..12009f67e 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.18"
+ "astro": "^1.0.0-beta.19"
}
}
diff --git a/examples/docs/package.json b/examples/docs/package.json
index 44781482e..3a4415fe8 100644
--- a/examples/docs/package.json
+++ b/examples/docs/package.json
@@ -20,6 +20,6 @@
"devDependencies": {
"@astrojs/preact": "^0.1.2",
"@astrojs/react": "^0.1.1",
- "astro": "^1.0.0-beta.18"
+ "astro": "^1.0.0-beta.19"
}
}
diff --git a/examples/env-vars/package.json b/examples/env-vars/package.json
index a79782ed2..79fe367ed 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.18"
+ "astro": "^1.0.0-beta.19"
}
}
diff --git a/examples/framework-alpine/package.json b/examples/framework-alpine/package.json
index 3f760f746..08a7ec118 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.18"
+ "astro": "^1.0.0-beta.19"
},
"dependencies": {
"alpinejs": "^3.10.2"
diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json
index 2cae7ad7c..035b2dff2 100644
--- a/examples/framework-lit/package.json
+++ b/examples/framework-lit/package.json
@@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/lit": "^0.1.2",
- "astro": "^1.0.0-beta.18"
+ "astro": "^1.0.0-beta.19"
},
"dependencies": {
"@webcomponents/template-shadowroot": "^0.1.0",
diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json
index fbb64ef62..189b40c06 100644
--- a/examples/framework-multiple/package.json
+++ b/examples/framework-multiple/package.json
@@ -15,7 +15,7 @@
"@astrojs/solid-js": "^0.1.2",
"@astrojs/svelte": "^0.1.2",
"@astrojs/vue": "^0.1.3",
- "astro": "^1.0.0-beta.18"
+ "astro": "^1.0.0-beta.19"
},
"dependencies": {
"@webcomponents/template-shadowroot": "^0.1.0",
diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json
index c8e9ceb28..fff1d928d 100644
--- a/examples/framework-preact/package.json
+++ b/examples/framework-preact/package.json
@@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/preact": "^0.1.2",
- "astro": "^1.0.0-beta.18"
+ "astro": "^1.0.0-beta.19"
},
"dependencies": {
"preact": "^10.7.1"
diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json
index 93031a5a8..e767740f1 100644
--- a/examples/framework-react/package.json
+++ b/examples/framework-react/package.json
@@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/react": "^0.1.1",
- "astro": "^1.0.0-beta.18"
+ "astro": "^1.0.0-beta.19"
},
"dependencies": {
"react": "^18.0.0",
diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json
index 02aeb8808..f4db00087 100644
--- a/examples/framework-solid/package.json
+++ b/examples/framework-solid/package.json
@@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/solid-js": "^0.1.2",
- "astro": "^1.0.0-beta.18"
+ "astro": "^1.0.0-beta.19"
},
"dependencies": {
"solid-js": "^1.3.16"
diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json
index 49fad6af7..fa2a4fb9a 100644
--- a/examples/framework-svelte/package.json
+++ b/examples/framework-svelte/package.json
@@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/svelte": "^0.1.2",
- "astro": "^1.0.0-beta.18"
+ "astro": "^1.0.0-beta.19"
},
"dependencies": {
"svelte": "^3.47.0"
diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json
index 5e3e5bb9a..181dc4dde 100644
--- a/examples/framework-vue/package.json
+++ b/examples/framework-vue/package.json
@@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/vue": "^0.1.3",
- "astro": "^1.0.0-beta.18"
+ "astro": "^1.0.0-beta.19"
},
"dependencies": {
"vue": "^3.2.33"
diff --git a/examples/integrations-playground/package.json b/examples/integrations-playground/package.json
index 924ee8bd1..0acb0cefa 100644
--- a/examples/integrations-playground/package.json
+++ b/examples/integrations-playground/package.json
@@ -15,7 +15,7 @@
"@astrojs/sitemap": "^0.1.0",
"@astrojs/tailwind": "^0.2.1",
"@astrojs/turbolinks": "^0.1.1",
- "astro": "^1.0.0-beta.18"
+ "astro": "^1.0.0-beta.19"
},
"dependencies": {
"@webcomponents/template-shadowroot": "^0.1.0",
diff --git a/examples/minimal/package.json b/examples/minimal/package.json
index 81af0ec6b..c8b0b86bb 100644
--- a/examples/minimal/package.json
+++ b/examples/minimal/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^1.0.0-beta.18"
+ "astro": "^1.0.0-beta.19"
}
}
diff --git a/examples/non-html-pages/package.json b/examples/non-html-pages/package.json
index 6b44118b9..e3307b688 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.18"
+ "astro": "^1.0.0-beta.19"
}
}
diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json
index d90217879..27c0c5f6a 100644
--- a/examples/portfolio/package.json
+++ b/examples/portfolio/package.json
@@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/preact": "^0.1.2",
- "astro": "^1.0.0-beta.18",
+ "astro": "^1.0.0-beta.19",
"sass": "^1.50.1"
},
"dependencies": {
diff --git a/examples/ssr/package.json b/examples/ssr/package.json
index 705916e44..0441d5a88 100644
--- a/examples/ssr/package.json
+++ b/examples/ssr/package.json
@@ -11,7 +11,7 @@
"devDependencies": {
"@astrojs/node": "^0.1.1",
"@astrojs/svelte": "^0.1.2",
- "astro": "^1.0.0-beta.18",
+ "astro": "^1.0.0-beta.19",
"concurrently": "^7.1.0",
"lightcookie": "^1.0.25",
"unocss": "^0.15.6",
diff --git a/examples/starter/package.json b/examples/starter/package.json
index ac7c26b0c..a5f5cbf58 100644
--- a/examples/starter/package.json
+++ b/examples/starter/package.json
@@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
- "astro": "^1.0.0-beta.18"
+ "astro": "^1.0.0-beta.19"
}
}
diff --git a/examples/subpath/package.json b/examples/subpath/package.json
index c76c47a58..f831d093e 100644
--- a/examples/subpath/package.json
+++ b/examples/subpath/package.json
@@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/react": "^0.1.1",
- "astro": "^1.0.0-beta.18",
+ "astro": "^1.0.0-beta.19",
"sass": "^1.50.1"
},
"dependencies": {
diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json
index 90ca6c987..5b06d4672 100644
--- a/examples/with-markdown-plugins/package.json
+++ b/examples/with-markdown-plugins/package.json
@@ -10,7 +10,7 @@
},
"devDependencies": {
"@astrojs/markdown-remark": "^0.9.2",
- "astro": "^1.0.0-beta.18",
+ "astro": "^1.0.0-beta.19",
"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 5ffb41401..b9247c118 100644
--- a/examples/with-markdown-shiki/package.json
+++ b/examples/with-markdown-shiki/package.json
@@ -10,6 +10,6 @@
},
"devDependencies": {
"@astrojs/markdown-remark": "^0.9.2",
- "astro": "^1.0.0-beta.18"
+ "astro": "^1.0.0-beta.19"
}
}
diff --git a/examples/with-markdown/package.json b/examples/with-markdown/package.json
index 06cac9063..e30b0be52 100644
--- a/examples/with-markdown/package.json
+++ b/examples/with-markdown/package.json
@@ -14,7 +14,7 @@
"@astrojs/react": "^0.1.1",
"@astrojs/svelte": "^0.1.2",
"@astrojs/vue": "^0.1.3",
- "astro": "^1.0.0-beta.18"
+ "astro": "^1.0.0-beta.19"
},
"dependencies": {
"preact": "^10.7.1",
diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json
index cd8f74ea3..2233d05b8 100644
--- a/examples/with-nanostores/package.json
+++ b/examples/with-nanostores/package.json
@@ -25,6 +25,6 @@
"@astrojs/solid-js": "^0.1.2",
"@astrojs/svelte": "^0.1.2",
"@astrojs/vue": "^0.1.3",
- "astro": "^1.0.0-beta.18"
+ "astro": "^1.0.0-beta.19"
}
}
diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json
index fcbbb8475..703bde9be 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.18",
+ "astro": "^1.0.0-beta.19",
"autoprefixer": "^10.4.4",
"canvas-confetti": "^1.5.1",
"postcss": "^8.4.12",
diff --git a/examples/with-vite-plugin-pwa/package.json b/examples/with-vite-plugin-pwa/package.json
index d54cb5d81..a7ff1273b 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.18",
+ "astro": "^1.0.0-beta.19",
"vite-plugin-pwa": "0.11.11",
"workbox-window": "^6.5.3"
}
diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md
index c1b41eda7..260cab3b7 100644
--- a/packages/astro/CHANGELOG.md
+++ b/packages/astro/CHANGELOG.md
@@ -1,5 +1,13 @@
# astro
+## 1.0.0-beta.19
+
+### Patch Changes
+
+- [#3224](https://github.com/withastro/astro/pull/3224) [`3d6e382b`](https://github.com/withastro/astro/commit/3d6e382b583646f047836b703a867c3b29ac91b2) Thanks [@JuanM04](https://github.com/JuanM04)! - Replaced deprecated String.substr with String.slice
+
+* [#3221](https://github.com/withastro/astro/pull/3221) [`f23d6c52`](https://github.com/withastro/astro/commit/f23d6c528ed5fbb37614789a5abd480ee731cd0f) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Fix: bump Astro core to update available starter templates. Find new "Just the Basics" option in create-astro!
+
## 1.0.0-beta.18
### Patch Changes
diff --git a/packages/astro/package.json b/packages/astro/package.json
index 9f6d4ba12..69f017271 100644
--- a/packages/astro/package.json
+++ b/packages/astro/package.json
@@ -1,6 +1,6 @@
{
"name": "astro",
- "version": "1.0.0-beta.18",
+ "version": "1.0.0-beta.19",
"description": "Astro is a modern site builder with web best practices, performance, and DX front-of-mind.",
"type": "module",
"author": "withastro",
diff --git a/packages/create-astro/CHANGELOG.md b/packages/create-astro/CHANGELOG.md
index f378085d7..ca9ac6ad8 100644
--- a/packages/create-astro/CHANGELOG.md
+++ b/packages/create-astro/CHANGELOG.md
@@ -1,5 +1,11 @@
# create-astro
+## 0.10.1
+
+### Patch Changes
+
+- [#3212](https://github.com/withastro/astro/pull/3212) [`00fc1326`](https://github.com/withastro/astro/commit/00fc1326ed526974cc4aca9faec410df91b4bcbd) Thanks [@bholmesdev](https://github.com/bholmesdev)! - Simplify logging during welcome message and directory selection
+
## 0.10.0
### Minor Changes
diff --git a/packages/create-astro/package.json b/packages/create-astro/package.json
index da44d162d..5a6a10d4f 100644
--- a/packages/create-astro/package.json
+++ b/packages/create-astro/package.json
@@ -1,6 +1,6 @@
{
"name": "create-astro",
- "version": "0.10.0",
+ "version": "0.10.1",
"type": "module",
"author": "withastro",
"license": "MIT",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 40b9fd2dd..433bc2e69 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -45,14 +45,14 @@ importers:
examples/basics:
specifiers:
- astro: ^1.0.0-beta.17
+ astro: ^1.0.0-beta.19
devDependencies:
astro: link:../../packages/astro
examples/blog:
specifiers:
'@astrojs/preact': ^0.1.2
- astro: ^1.0.0-beta.18
+ astro: ^1.0.0-beta.19
preact: ^10.7.1
dependencies:
preact: 10.7.1
@@ -63,7 +63,7 @@ importers:
examples/blog-multiple-authors:
specifiers:
'@astrojs/preact': ^0.1.2
- astro: ^1.0.0-beta.18
+ astro: ^1.0.0-beta.19
preact: ^10.7.1
sass: ^1.50.1
dependencies:
@@ -75,14 +75,14 @@ importers:
examples/component:
specifiers:
- astro: ^1.0.0-beta.18
+ astro: ^1.0.0-beta.19
devDependencies:
astro: link:../../packages/astro
examples/component/demo:
specifiers:
'@example/my-component': workspace:*
- astro: ^1.0.0-beta.18
+ astro: ^1.0.0-beta.19
devDependencies:
'@example/my-component': link:../packages/my-component
astro: link:../../../packages/astro
@@ -98,7 +98,7 @@ importers:
'@docsearch/css': ^3.0.0
'@docsearch/react': ^3.0.0
'@types/react': ^17.0.44
- astro: ^1.0.0-beta.18
+ astro: ^1.0.0-beta.19
preact: ^10.7.1
react: ^17.0.2
react-dom: ^17.0.2
@@ -117,14 +117,14 @@ importers:
examples/env-vars:
specifiers:
- astro: ^1.0.0-beta.18
+ astro: ^1.0.0-beta.19
devDependencies:
astro: link:../../packages/astro
examples/framework-alpine:
specifiers:
alpinejs: ^3.10.2
- astro: ^1.0.0-beta.18
+ astro: ^1.0.0-beta.19
dependencies:
alpinejs: 3.10.2
devDependencies:
@@ -134,7 +134,7 @@ importers:
specifiers:
'@astrojs/lit': ^0.1.2
'@webcomponents/template-shadowroot': ^0.1.0
- astro: ^1.0.0-beta.18
+ astro: ^1.0.0-beta.19
lit: ^2.2.2
dependencies:
'@webcomponents/template-shadowroot': 0.1.0
@@ -152,7 +152,7 @@ importers:
'@astrojs/svelte': ^0.1.2
'@astrojs/vue': ^0.1.3
'@webcomponents/template-shadowroot': ^0.1.0
- astro: ^1.0.0-beta.18
+ astro: ^1.0.0-beta.19
lit: ^2.2.2
preact: ^10.7.1
react: ^18.0.0
@@ -181,7 +181,7 @@ importers:
examples/framework-preact:
specifiers:
'@astrojs/preact': ^0.1.2
- astro: ^1.0.0-beta.18
+ astro: ^1.0.0-beta.19
preact: ^10.7.1
dependencies:
preact: 10.7.1
@@ -192,7 +192,7 @@ importers:
examples/framework-react:
specifiers:
'@astrojs/react': ^0.1.1
- astro: ^1.0.0-beta.18
+ astro: ^1.0.0-beta.19
react: ^18.0.0
react-dom: ^18.0.0
dependencies:
@@ -205,7 +205,7 @@ importers:
examples/framework-solid:
specifiers:
'@astrojs/solid-js': ^0.1.2
- astro: ^1.0.0-beta.18
+ astro: ^1.0.0-beta.19
solid-js: ^1.3.16
dependencies:
solid-js: 1.3.16
@@ -216,7 +216,7 @@ importers:
examples/framework-svelte:
specifiers:
'@astrojs/svelte': ^0.1.2
- astro: ^1.0.0-beta.18
+ astro: ^1.0.0-beta.19
svelte: ^3.47.0
dependencies:
svelte: 3.47.0
@@ -227,7 +227,7 @@ importers:
examples/framework-vue:
specifiers:
'@astrojs/vue': ^0.1.3
- astro: ^1.0.0-beta.18
+ astro: ^1.0.0-beta.19
vue: ^3.2.33
dependencies:
vue: 3.2.33
@@ -244,7 +244,7 @@ importers:
'@astrojs/tailwind': ^0.2.1
'@astrojs/turbolinks': ^0.1.1
'@webcomponents/template-shadowroot': ^0.1.0
- astro: ^1.0.0-beta.18
+ astro: ^1.0.0-beta.19
lit: ^2.2.2
preact: ^10.7.1
react: ^18.0.0
@@ -272,20 +272,20 @@ importers:
examples/minimal:
specifiers:
- astro: ^1.0.0-beta.18
+ astro: ^1.0.0-beta.19
devDependencies:
astro: link:../../packages/astro
examples/non-html-pages:
specifiers:
- astro: ^1.0.0-beta.18
+ astro: ^1.0.0-beta.19
devDependencies:
astro: link:../../packages/astro
examples/portfolio:
specifiers:
'@astrojs/preact': ^0.1.2
- astro: ^1.0.0-beta.18
+ astro: ^1.0.0-beta.19
preact: ^10.7.1
sass: ^1.50.1
dependencies:
@@ -299,7 +299,7 @@ importers:
specifiers:
'@astrojs/node': ^0.1.1
'@astrojs/svelte': ^0.1.2
- astro: ^1.0.0-beta.18
+ astro: ^1.0.0-beta.19
concurrently: ^7.1.0
lightcookie: ^1.0.25
svelte: ^3.47.0
@@ -318,14 +318,14 @@ importers:
examples/starter:
specifiers:
- astro: ^1.0.0-beta.18
+ astro: ^1.0.0-beta.19
devDependencies:
astro: link:../../packages/astro
examples/subpath:
specifiers:
'@astrojs/react': ^0.1.1
- astro: ^1.0.0-beta.18
+ astro: ^1.0.0-beta.19
react: ^18.0.0
react-dom: ^18.0.0
sass: ^1.50.1
@@ -344,7 +344,7 @@ importers:
'@astrojs/react': ^0.1.1
'@astrojs/svelte': ^0.1.2
'@astrojs/vue': ^0.1.3
- astro: ^1.0.0-beta.18
+ astro: ^1.0.0-beta.19
preact: ^10.7.1
react: ^18.0.0
react-dom: ^18.0.0
@@ -367,7 +367,7 @@ importers:
examples/with-markdown-plugins:
specifiers:
'@astrojs/markdown-remark': ^0.9.2
- astro: ^1.0.0-beta.18
+ astro: ^1.0.0-beta.19
hast-util-select: 5.0.1
rehype-autolink-headings: ^6.1.1
rehype-slug: ^5.0.1
@@ -385,7 +385,7 @@ importers:
examples/with-markdown-shiki:
specifiers:
'@astrojs/markdown-remark': ^0.9.2
- astro: ^1.0.0-beta.18
+ astro: ^1.0.0-beta.19
devDependencies:
'@astrojs/markdown-remark': link:../../packages/markdown/remark
astro: link:../../packages/astro
@@ -400,7 +400,7 @@ importers:
'@nanostores/preact': ^0.1.3
'@nanostores/react': ^0.1.5
'@nanostores/vue': ^0.4.1
- astro: ^1.0.0-beta.18
+ astro: ^1.0.0-beta.19
nanostores: ^0.5.12
preact: ^10.7.1
react: ^18.0.0
@@ -428,7 +428,7 @@ importers:
examples/with-tailwindcss:
specifiers:
'@astrojs/tailwind': ^0.2.1
- astro: ^1.0.0-beta.18
+ astro: ^1.0.0-beta.19
autoprefixer: ^10.4.4
canvas-confetti: ^1.5.1
postcss: ^8.4.12
@@ -443,7 +443,7 @@ importers:
examples/with-vite-plugin-pwa:
specifiers:
- astro: ^1.0.0-beta.18
+ astro: ^1.0.0-beta.19
vite-plugin-pwa: 0.11.11
workbox-window: ^6.5.3
devDependencies:
@@ -548,8 +548,8 @@ importers:
'@babel/generator': 7.17.9
'@babel/parser': 7.17.9
'@babel/traverse': 7.17.9
- '@proload/core': 0.3.2-next.4
- '@proload/plugin-tsm': 0.2.1-next.0_@proload+core@0.3.2-next.4
+ '@proload/core': 0.3.2
+ '@proload/plugin-tsm': 0.2.1_@proload+core@0.3.2
ast-types: 0.14.2
boxen: 6.2.1
ci-info: 3.3.0
@@ -1420,7 +1420,7 @@ importers:
postcss: ^8.4.12
tailwindcss: ^3.0.24
dependencies:
- '@proload/core': 0.3.1
+ '@proload/core': 0.3.2
autoprefixer: 10.4.4_postcss@8.4.12
postcss: 8.4.12
tailwindcss: 3.0.24
@@ -3652,27 +3652,19 @@ packages:
/@polka/url/1.0.0-next.21:
resolution: {integrity: sha512-a5Sab1C4/icpTZVzZc5Ghpz88yQtGOyNqYXcZgOssB2uuAr+wF/MvN6bgtW32q7HHrvBki+BsZ0OuNv6EV3K9g==}
- /@proload/core/0.3.1:
- resolution: {integrity: sha512-u902sdjipQ6WjpV6rxcF0CnQP6Z6Gd54MBPuMbZ5amCcdb/meWY6UtCQSLIJmG+zbXtf8Hwzf6ePBey158QAQQ==}
+ /@proload/core/0.3.2:
+ resolution: {integrity: sha512-4ga4HpS0ieVYWVMS+F62W++6SNACBu0lkw8snw3tEdH6AeqZu8i8262n3I81jWAWXVcg3sMfhb+kBexrfGrTUQ==}
dependencies:
deepmerge: 4.2.2
escalade: 3.1.1
- resolve-pkg: 2.0.0
dev: false
- /@proload/core/0.3.2-next.4:
- resolution: {integrity: sha512-58nw3h4+qBDizhlTbt/Q4iGWiiSWcYqdRgIAy3KMla1nqNFO8stG5vzDjPGMPyX6DsAhEj3PCqb4G0d82b2kqQ==}
- dependencies:
- deepmerge: 4.2.2
- escalade: 3.1.1
- dev: false
-
- /@proload/plugin-tsm/0.2.1-next.0_@proload+core@0.3.2-next.4:
- resolution: {integrity: sha512-76NvJmWD1MBip1oifMLohTJfdi4DQihTUnwWacscsLxUaT/5/FNNolD5CIoH/+qhsU6HyVpz8JfEzVpkMuxKfA==}
+ /@proload/plugin-tsm/0.2.1_@proload+core@0.3.2:
+ resolution: {integrity: sha512-Ex1sL2BxU+g8MHdAdq9SZKz+pU34o8Zcl9PHWo2WaG9hrnlZme607PU6gnpoAYsDBpHX327+eu60wWUk+d/b+A==}
peerDependencies:
- '@proload/core': ^0.3.2-next.0
+ '@proload/core': ^0.3.2
dependencies:
- '@proload/core': 0.3.2-next.4
+ '@proload/core': 0.3.2
tsm: 2.2.1
dev: false
@@ -8971,13 +8963,7 @@ packages:
/resolve-from/5.0.0:
resolution: {integrity: sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==}
engines: {node: '>=8'}
-
- /resolve-pkg/2.0.0:
- resolution: {integrity: sha512-+1lzwXehGCXSeryaISr6WujZzowloigEofRB+dj75y9RRa/obVcYgbHJd53tdYw8pvZj8GojXaaENws8Ktw/hQ==}
- engines: {node: '>=8'}
- dependencies:
- resolve-from: 5.0.0
- dev: false
+ dev: true
/resolve/1.22.0:
resolution: {integrity: sha512-Hhtrw0nLeSrFQ7phPp4OOcVjLPIeMnRlr5mcnVuMe7M/7eBn98A3hmFRLoFo3DLZkivSYwhRUJTyPyWAk56WLw==}