Skip to content

Commit

Permalink
[ci] release (#219)
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] committed May 14, 2024
1 parent 4e038ef commit 2a49616
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 12 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
---
"rehype-pretty-code": patch
"@rehype-pretty/transformers": patch
---
# rehype-pretty-code

- fix: smarter way to modify rounded in presence of title (#205)
## 0.13.2

### Patch Changes

- - fix: smarter way to modify rounded in presence of title (#205)
- fix: prevent start line numbers being highlighted (#181)
- feat: introduce new package `@rehype-pretty/transformers`. Release the first transformer: `@rehype-pretty/transformers/copy-button` (see [example usage](https://github.com/rehype-pretty/rehype-pretty-code/blob/master/examples/astro/astro.config.ts))
13 changes: 10 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rehype-pretty-code",
"version": "0.13.1",
"version": "0.13.2",
"description": "Beautiful code for your MD/MDX docs.",
"homepage": "https://rehype-pretty.pages.dev",
"type": "module",
Expand All @@ -16,7 +16,12 @@
},
"./package.json": "./package.json"
},
"files": ["dist", "package.json", "README.md", "LICENSE"],
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup --config=tsup.config.ts",
"test": "vitest --run",
Expand Down Expand Up @@ -65,7 +70,9 @@
"url": "git+https://github.com/rehype-pretty/rehype-pretty-code.git",
"directory": "packages/core"
},
"browserslist": ["node 18"],
"browserslist": [
"node 18"
],
"author": "https://github.com/atomiks",
"license": "MIT"
}
9 changes: 9 additions & 0 deletions packages/transformers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# @rehype-pretty/transformers

## 0.13.2

### Patch Changes

- - fix: smarter way to modify rounded in presence of title (#205)
- fix: prevent start line numbers being highlighted (#181)
- feat: introduce new package `@rehype-pretty/transformers`. Release the first transformer: `@rehype-pretty/transformers/copy-button` (see [example usage](https://github.com/rehype-pretty/rehype-pretty-code/blob/master/examples/astro/astro.config.ts))
13 changes: 10 additions & 3 deletions packages/transformers/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@rehype-pretty/transformers",
"description": "Shiki transformer that adds a copy button to code blocks",
"version": "0.13.1",
"version": "0.13.2",
"homepage": "https://rehype-pretty.pages.dev",
"type": "module",
"main": "./src/index.ts",
Expand Down Expand Up @@ -34,7 +34,12 @@
"./package.json": "./package.json"
}
},
"files": ["dist", "package.json", "README.md", "LICENSE"],
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"sideEffects": false,
"scripts": {
"build": "tsup --config=tsup.config.ts",
Expand All @@ -60,6 +65,8 @@
"directory": "packages/transformers"
},
"author": "https://github.com/o-az",
"browserslist": ["node 20"],
"browserslist": [
"node 20"
],
"license": "MIT"
}
6 changes: 5 additions & 1 deletion website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@
"@types/react-dom": "^18.3.0",
"typescript": "^5.4.5"
},
"browserslist": ["> 0.5%", "not dead", "not op_mini all"],
"browserslist": [
"> 0.5%",
"not dead",
"not op_mini all"
],
"sideEffects": false
}

0 comments on commit 2a49616

Please sign in to comment.