Version Packages (next) (#1745)

* Version Packages (next)

* chore: update changelog

* chore: update CHANGELOG

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Nate Moore <nate@skypack.dev>
This commit is contained in:
github-actions[bot] 2021-11-09 12:59:13 -06:00 committed by GitHub
parent 69092fec06
commit 9763b255dd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
24 changed files with 49 additions and 22 deletions

View file

@ -2,4 +2,8 @@
'astro': patch
---
Add support for `.cjs`, `.js`, and `.ts` Astro config files
Improve support for Astro config files.
In addition to properly loading `.cjs` and `.js` files in all cases, Astro now supports `astro.config.ts` files.
For convenience, you may now also move your `astro.config.js` file to a top-level `config/` directory.

View file

@ -40,7 +40,9 @@
"changesets": [
"curvy-years-kiss",
"dull-bikes-doubt",
"giant-shirts-sing",
"pink-trainers-learn",
"shaggy-guests-type",
"silly-apples-build",
"tiny-bulldogs-lie"
]

View file

@ -2,4 +2,10 @@
'astro': patch
---
fix: Improve Tailwind HMR
Improve Tailwind HMR in `dev` mode
Fix bug when using `<Markdown></Markdown>` with no content
Support `PUBLIC_` prefixed `.env` variables
Respect `tsconfig.json` and `jsconfig.json` paths as aliases

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.0-next.1"
"astro": "^0.21.0-next.2"
}
}

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.0-next.1"
"astro": "^0.21.0-next.2"
}
}

View file

@ -12,7 +12,7 @@
"@docsearch/react": "^1.0.0-alpha.27"
},
"devDependencies": {
"astro": "^0.21.0-next.1",
"astro": "^0.21.0-next.2",
"@snowpack/plugin-dotenv": "^2.1.0"
}
}

View file

@ -10,6 +10,6 @@
},
"devDependencies": {
"@astrojs/renderer-lit": "^0.2.0-next.0",
"astro": "^0.21.0-next.1"
"astro": "^0.21.0-next.2"
}
}

View file

@ -10,6 +10,6 @@
},
"devDependencies": {
"@astrojs/renderer-solid": "^0.2.0-next.0",
"astro": "^0.21.0-next.1"
"astro": "^0.21.0-next.2"
}
}

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.0-next.1"
"astro": "^0.21.0-next.2"
}
}

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.0-next.1"
"astro": "^0.21.0-next.2"
}
}

View file

@ -10,6 +10,6 @@
},
"devDependencies": {
"@astrojs/renderer-solid": "^0.2.0-next.0",
"astro": "^0.21.0-next.1"
"astro": "^0.21.0-next.2"
}
}

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.0-next.1"
"astro": "^0.21.0-next.2"
}
}

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.0-next.1"
"astro": "^0.21.0-next.2"
}
}

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.0-next.1"
"astro": "^0.21.0-next.2"
}
}

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.0-next.1"
"astro": "^0.21.0-next.2"
}
}

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.0-next.1"
"astro": "^0.21.0-next.2"
}
}

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.0-next.1"
"astro": "^0.21.0-next.2"
}
}

View file

@ -9,7 +9,7 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.0-next.1",
"astro": "^0.21.0-next.2",
"rehype-add-classes": "^1.0.0",
"rehype-autolink-headings": "^6.1.0",
"rehype-toc": "^3.0.2",

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.0-next.1"
"astro": "^0.21.0-next.2"
}
}

View file

@ -13,6 +13,6 @@
},
"devDependencies": {
"@astrojs/renderer-solid": "^0.2.0-next.0",
"astro": "^0.21.0-next.1"
"astro": "^0.21.0-next.2"
}
}

View file

@ -9,7 +9,7 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.0-next.1",
"astro": "^0.21.0-next.2",
"autoprefixer": "^10.4.0",
"tailwindcss": "^2.2.19"
}

View file

@ -1,5 +1,20 @@
# astro
## 0.21.0-next.2
### Patch Changes
- fbae2bc5: **Improve support for Astro config files.**
In addition to properly loading `.cjs` and `.js` files in all cases, Astro now supports `astro.config.ts` files.
For convenience, you may now also move your `astro.config.js` file to a top-level `config/` directory.
- 2e1bded7: Improve Tailwind HMR in `dev` mode
- Fix bug when using `<Markdown></Markdown>` with no content
- Support `PUBLIC_` prefixed `.env` variables
- Respect `tsconfig.json` and `jsconfig.json` paths as aliases
## 0.21.0-next.1
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "astro",
"version": "0.21.0-next.1",
"version": "0.21.0-next.2",
"author": "Skypack",
"license": "MIT",
"type": "module",

View file

@ -9,6 +9,6 @@
"preview": "astro preview"
},
"devDependencies": {
"astro": "^0.21.0-next.1"
"astro": "^0.21.0-next.2"
}
}