Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ci] release #219

Merged
merged 1 commit into from
May 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
}