diff options
author | 2021-06-11 16:24:07 -0400 | |
---|---|---|
committer | 2021-06-11 16:24:07 -0400 | |
commit | e7eab4e9d914e1bce671616b0140a2a85634de08 (patch) | |
tree | cc3aac4aa9ff739d3b38cb6467b0d77fa5e8b201 | |
parent | 68c6bc7d76517469ca7277a34d929ec8ad939d74 (diff) | |
download | astro-e7eab4e9d914e1bce671616b0140a2a85634de08.tar.gz astro-e7eab4e9d914e1bce671616b0140a2a85634de08.tar.zst astro-e7eab4e9d914e1bce671616b0140a2a85634de08.zip |
Version Packages (#386)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
-rw-r--r-- | .changeset/stale-cameras-teach.md | 5 | ||||
-rw-r--r-- | examples/snowpack/package.json | 4 | ||||
-rw-r--r-- | packages/astro/CHANGELOG.md | 6 | ||||
-rw-r--r-- | packages/astro/package.json | 2 | ||||
-rw-r--r-- | www/package.json | 2 |
5 files changed, 10 insertions, 9 deletions
diff --git a/.changeset/stale-cameras-teach.md b/.changeset/stale-cameras-teach.md deleted file mode 100644 index e2a1bf196..000000000 --- a/.changeset/stale-cameras-teach.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'astro': patch ---- - -Pass "site" config to Snowpack as "baseUrl" diff --git a/examples/snowpack/package.json b/examples/snowpack/package.json index f3a5e77fb..0fe5c0e02 100644 --- a/examples/snowpack/package.json +++ b/examples/snowpack/package.json @@ -11,7 +11,7 @@ "lint": "prettier --check \"src/**/*.js\"" }, "dependencies": { - "astro": "^0.13.0", + "astro": "^0.13.1", "date-fns": "^2.19.0", "deepmerge": "^4.2.2", "docsearch.js": "^2.6.3", @@ -25,7 +25,7 @@ "@11ty/eleventy-plugin-syntaxhighlight": "^3.0.4", "@contentful/rich-text-html-renderer": "^14.1.2", "@contentful/rich-text-types": "^14.1.2", - "astro": "^0.13.0", + "astro": "^0.13.1", "eleventy-plugin-nesting-toc": "^1.2.0", "luxon": "^1.25.0", "markdown-it": "^12.0.2", diff --git a/packages/astro/CHANGELOG.md b/packages/astro/CHANGELOG.md index 71f0ed0d6..a10b453d8 100644 --- a/packages/astro/CHANGELOG.md +++ b/packages/astro/CHANGELOG.md @@ -1,5 +1,11 @@ # astro +## 0.13.1 + +### Patch Changes + +- 61b5590: Pass "site" config to Snowpack as "baseUrl" + ## 0.13.0 ### Minor Changes diff --git a/packages/astro/package.json b/packages/astro/package.json index 6e815a50e..d63c60c82 100644 --- a/packages/astro/package.json +++ b/packages/astro/package.json @@ -1,6 +1,6 @@ { "name": "astro", - "version": "0.13.0", + "version": "0.13.1", "author": "Skypack", "license": "MIT", "type": "module", diff --git a/www/package.json b/www/package.json index d791fc9eb..0190f3f91 100644 --- a/www/package.json +++ b/www/package.json @@ -7,6 +7,6 @@ "build": "astro build" }, "devDependencies": { - "astro": "^0.13.0" + "astro": "^0.13.1" } } |