diff options
author | 2021-12-02 13:01:17 -0500 | |
---|---|---|
committer | 2021-12-02 13:01:17 -0500 | |
commit | e57308d70cf1f80233f494b0fd8fd256b86506c8 (patch) | |
tree | a7648c59a51a5d2de85ba159e7eb7018d885358f /examples | |
parent | 0a826c999c8ee30d5ee2ae61ac4165fb9797da70 (diff) | |
download | astro-e57308d70cf1f80233f494b0fd8fd256b86506c8.tar.gz astro-e57308d70cf1f80233f494b0fd8fd256b86506c8.tar.zst astro-e57308d70cf1f80233f494b0fd8fd256b86506c8.zip |
[ci] release (#2071)astro@0.21.7@astrojs/renderer-vue@0.2.1@astrojs/renderer-svelte@0.2.2@astrojs/renderer-solid@0.2.1@astrojs/renderer-react@0.3.1@astrojs/renderer-preact@0.3.1
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Diffstat (limited to 'examples')
-rw-r--r-- | examples/blog-multiple-authors/package.json | 2 | ||||
-rw-r--r-- | examples/blog/package.json | 2 | ||||
-rw-r--r-- | examples/docs/package.json | 2 | ||||
-rw-r--r-- | examples/framework-lit/package.json | 2 | ||||
-rw-r--r-- | examples/framework-multiple/package.json | 4 | ||||
-rw-r--r-- | examples/framework-preact/package.json | 2 | ||||
-rw-r--r-- | examples/framework-react/package.json | 2 | ||||
-rw-r--r-- | examples/framework-solid/package.json | 4 | ||||
-rw-r--r-- | examples/framework-svelte/package.json | 2 | ||||
-rw-r--r-- | examples/framework-vue/package.json | 2 | ||||
-rw-r--r-- | examples/minimal/package.json | 2 | ||||
-rw-r--r-- | examples/portfolio-svelte/package.json | 2 | ||||
-rw-r--r-- | examples/portfolio/package.json | 2 | ||||
-rw-r--r-- | examples/starter/package.json | 2 | ||||
-rw-r--r-- | examples/subpath/package.json | 2 | ||||
-rw-r--r-- | examples/with-markdown-plugins/package.json | 2 | ||||
-rw-r--r-- | examples/with-markdown/package.json | 2 | ||||
-rw-r--r-- | examples/with-nanostores/package.json | 4 | ||||
-rw-r--r-- | examples/with-tailwindcss/package.json | 2 | ||||
-rw-r--r-- | examples/with-vite-plugin-pwa/package.json | 2 |
20 files changed, 23 insertions, 23 deletions
diff --git a/examples/blog-multiple-authors/package.json b/examples/blog-multiple-authors/package.json index e7ef3db11..32502319a 100644 --- a/examples/blog-multiple-authors/package.json +++ b/examples/blog-multiple-authors/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.6" + "astro": "^0.21.7" } } diff --git a/examples/blog/package.json b/examples/blog/package.json index 11677d15d..cd88ae834 100644 --- a/examples/blog/package.json +++ b/examples/blog/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.6" + "astro": "^0.21.7" } } diff --git a/examples/docs/package.json b/examples/docs/package.json index 85a1c23c3..aef23e7c1 100644 --- a/examples/docs/package.json +++ b/examples/docs/package.json @@ -12,7 +12,7 @@ "@docsearch/react": "^1.0.0-alpha.27" }, "devDependencies": { - "astro": "^0.21.6", + "astro": "^0.21.7", "@snowpack/plugin-dotenv": "^2.1.0" } } diff --git a/examples/framework-lit/package.json b/examples/framework-lit/package.json index f4ef5734d..8447e7d8d 100644 --- a/examples/framework-lit/package.json +++ b/examples/framework-lit/package.json @@ -10,6 +10,6 @@ }, "devDependencies": { "@astrojs/renderer-lit": "^0.2.1", - "astro": "^0.21.6" + "astro": "^0.21.7" } } diff --git a/examples/framework-multiple/package.json b/examples/framework-multiple/package.json index aa7b246b9..d62def984 100644 --- a/examples/framework-multiple/package.json +++ b/examples/framework-multiple/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "@astrojs/renderer-solid": "^0.2.0", - "astro": "^0.21.6" + "@astrojs/renderer-solid": "^0.2.1", + "astro": "^0.21.7" } } diff --git a/examples/framework-preact/package.json b/examples/framework-preact/package.json index 7e5bbf023..e4acab342 100644 --- a/examples/framework-preact/package.json +++ b/examples/framework-preact/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.6" + "astro": "^0.21.7" } } diff --git a/examples/framework-react/package.json b/examples/framework-react/package.json index 28593e770..6bffabd80 100644 --- a/examples/framework-react/package.json +++ b/examples/framework-react/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.6" + "astro": "^0.21.7" } } diff --git a/examples/framework-solid/package.json b/examples/framework-solid/package.json index 71272a003..783a6152c 100644 --- a/examples/framework-solid/package.json +++ b/examples/framework-solid/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "@astrojs/renderer-solid": "^0.2.0", - "astro": "^0.21.6" + "@astrojs/renderer-solid": "^0.2.1", + "astro": "^0.21.7" } } diff --git a/examples/framework-svelte/package.json b/examples/framework-svelte/package.json index b4b3effe3..73cbfa2d3 100644 --- a/examples/framework-svelte/package.json +++ b/examples/framework-svelte/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.6" + "astro": "^0.21.7" } } diff --git a/examples/framework-vue/package.json b/examples/framework-vue/package.json index 28ffa0555..735cf821f 100644 --- a/examples/framework-vue/package.json +++ b/examples/framework-vue/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.6" + "astro": "^0.21.7" } } diff --git a/examples/minimal/package.json b/examples/minimal/package.json index fe3f5e20c..eff3bab21 100644 --- a/examples/minimal/package.json +++ b/examples/minimal/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.6" + "astro": "^0.21.7" } } diff --git a/examples/portfolio-svelte/package.json b/examples/portfolio-svelte/package.json index c0b7787e8..558fc9eae 100644 --- a/examples/portfolio-svelte/package.json +++ b/examples/portfolio-svelte/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.6" + "astro": "^0.21.7" } } diff --git a/examples/portfolio/package.json b/examples/portfolio/package.json index 10c0db9eb..86bd692bf 100644 --- a/examples/portfolio/package.json +++ b/examples/portfolio/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.6" + "astro": "^0.21.7" } } diff --git a/examples/starter/package.json b/examples/starter/package.json index c81cf0b7d..8d232e170 100644 --- a/examples/starter/package.json +++ b/examples/starter/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.6" + "astro": "^0.21.7" } } diff --git a/examples/subpath/package.json b/examples/subpath/package.json index 4793cc29c..937b44ac0 100644 --- a/examples/subpath/package.json +++ b/examples/subpath/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.6" + "astro": "^0.21.7" } } diff --git a/examples/with-markdown-plugins/package.json b/examples/with-markdown-plugins/package.json index 47c89023c..44eabcc62 100644 --- a/examples/with-markdown-plugins/package.json +++ b/examples/with-markdown-plugins/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.6", + "astro": "^0.21.7", "rehype-add-classes": "^1.0.0", "rehype-autolink-headings": "^6.1.0", "rehype-slug": "^5.0.0", diff --git a/examples/with-markdown/package.json b/examples/with-markdown/package.json index c8122b520..83324f86b 100644 --- a/examples/with-markdown/package.json +++ b/examples/with-markdown/package.json @@ -9,6 +9,6 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.6" + "astro": "^0.21.7" } } diff --git a/examples/with-nanostores/package.json b/examples/with-nanostores/package.json index e8eab0ed3..2af312cf3 100644 --- a/examples/with-nanostores/package.json +++ b/examples/with-nanostores/package.json @@ -15,7 +15,7 @@ "nanostores": "^0.5.6" }, "devDependencies": { - "@astrojs/renderer-solid": "^0.2.0", - "astro": "^0.21.6" + "@astrojs/renderer-solid": "^0.2.1", + "astro": "^0.21.7" } } diff --git a/examples/with-tailwindcss/package.json b/examples/with-tailwindcss/package.json index 07bee7066..61bee6118 100644 --- a/examples/with-tailwindcss/package.json +++ b/examples/with-tailwindcss/package.json @@ -9,7 +9,7 @@ "preview": "astro preview" }, "devDependencies": { - "astro": "^0.21.6", + "astro": "^0.21.7", "autoprefixer": "^10.4.0", "tailwindcss": "^2.2.19" } diff --git a/examples/with-vite-plugin-pwa/package.json b/examples/with-vite-plugin-pwa/package.json index 800b47428..907222eb6 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": "^0.21.6", + "astro": "^0.21.7", "vite-plugin-pwa": "^0.11.5" } } |