Skip to content

Commit

Permalink
[ci] release (#95)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored May 7, 2024
1 parent b1947f8 commit f7e9992
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 25 deletions.
10 changes: 0 additions & 10 deletions .changeset/olive-eggs-occur.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/sixty-clocks-call.md

This file was deleted.

18 changes: 18 additions & 0 deletions package/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# astro-theme-provider

## 0.4.0

### Minor Changes

- b1947f8: Change virtual module separator from `/` to `:`.

```diff
- import "my-theme/styles"
+ import "my-theme:styles"
```

- b1947f8: Renamed `/css` directory to `/styles`. Change imports as:

```diff
- import "my-theme:css"
+ import "my-theme:styles"
```

## 0.3.0

### Minor Changes
Expand Down
12 changes: 9 additions & 3 deletions package/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
{
"name": "astro-theme-provider",
"version": "0.3.0",
"version": "0.4.0",
"description": "Easily create theme integrations for Astro",
"keywords": ["astro", "withastro", "astro-integration"],
"keywords": [
"astro",
"withastro",
"astro-integration"
],
"author": "Bryce Russell",
"license": "Unlicense",
"repository": {
Expand All @@ -24,7 +28,9 @@
"default": "./dist/index.js"
}
},
"files": ["dist"],
"files": [
"dist"
],
"peerDependencies": {
"@astrojs/db": ">=0.8.0",
"astro": ">=3"
Expand Down
4 changes: 3 additions & 1 deletion tests/themes/theme-playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
"url": "https://github.com/UserName/theme-playground",
"directory": "package"
},
"keywords": ["astro-integration"],
"keywords": [
"astro-integration"
],
"scripts": {},
"devDependencies": {
"@types/node": "^20.12.8",
Expand Down
4 changes: 3 additions & 1 deletion tests/themes/theme-ssg/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,9 @@
"url": "https://github.com/UserName/theme-ssg",
"directory": "package"
},
"keywords": ["astro-integration"],
"keywords": [
"astro-integration"
],
"scripts": {},
"devDependencies": {
"@types/node": "^20.12.8",
Expand Down

0 comments on commit f7e9992

Please sign in to comment.