Skip to content

Commit 588afea

Browse files
authored
Merge pull request #315 from code-hike/main
Merge main
2 parents 9355b47 + 5d81e7d commit 588afea

File tree

15 files changed

+77
-24
lines changed

15 files changed

+77
-24
lines changed

CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
# v0.8.0 (Mon Jan 16 2023)
2+
3+
#### 🚀 Enhancement
4+
5+
- `@code-hike/mdx`
6+
- Use @code-hike/lighter [#308](https://github.com/code-hike/codehike/pull/308) ([@pomber](https://github.com/pomber))
7+
8+
#### 🐛 Bug Fix
9+
10+
- add/astro-example [#282](https://github.com/code-hike/codehike/pull/282) ([@JohnDaly](https://github.com/JohnDaly))
11+
- `@code-hike/mdx`
12+
- Fix line number horizontal shift [#278](https://github.com/code-hike/codehike/pull/278) ([@pomber](https://github.com/pomber))
13+
- Merge main [#275](https://github.com/code-hike/codehike/pull/275) ([@pomber](https://github.com/pomber))
14+
15+
#### Authors: 2
16+
17+
- John Daly ([@JohnDaly](https://github.com/JohnDaly))
18+
- Rodrigo Pombo ([@pomber](https://github.com/pomber))
19+
20+
---
21+
122
# v0.7.4 (Mon Aug 22 2022)
223

324
#### 🐛 Bug Fix

examples/bundle-test/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "bundle-test",
33
"private": true,
4-
"version": "0.7.4",
4+
"version": "0.8.0",
55
"scripts": {
66
"dev": "next",
77
"build": "next build"
88
},
99
"dependencies": {
10-
"@code-hike/mdx": "^0.7.4",
10+
"@code-hike/mdx": "^0.8.0",
1111
"@mdx-js/loader": "^2.0.0",
1212
"@next/mdx": "^13.0.7",
1313
"next": "^13.0.7",

examples/contentlayer/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "codehike-contentlayer",
3-
"version": "0.7.4",
3+
"version": "0.8.0",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",
77
"build": "next build",
88
"start": "next start"
99
},
1010
"dependencies": {
11-
"@code-hike/mdx": "^0.7.4",
11+
"@code-hike/mdx": "^0.8.0",
1212
"@types/node": "^17.0.30",
1313
"contentlayer": "0.2.9",
1414
"next": "13.1.2",

examples/docusaurus/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codehike-docusaurus",
3-
"version": "0.7.4",
3+
"version": "0.8.0",
44
"private": true,
55
"scripts": {
66
"docusaurus": "docusaurus",
@@ -14,7 +14,7 @@
1414
"write-heading-ids": "docusaurus write-heading-ids"
1515
},
1616
"dependencies": {
17-
"@code-hike/mdx": "^0.7.4",
17+
"@code-hike/mdx": "^0.8.0",
1818
"@docusaurus/core": "2.2.0",
1919
"@docusaurus/preset-classic": "2.2.0",
2020
"@mdx-js/react": "^2.1.1",

examples/gatsby/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codehike-gatsby",
3-
"version": "0.7.4",
3+
"version": "0.8.0",
44
"private": true,
55
"scripts": {
66
"develop": "gatsby develop",
@@ -10,7 +10,7 @@
1010
"clean": "gatsby clean"
1111
},
1212
"dependencies": {
13-
"@code-hike/mdx": "^0.7.4",
13+
"@code-hike/mdx": "^0.8.0",
1414
"@mdx-js/react": "^2.1.3",
1515
"gatsby": "^4.21.1",
1616
"gatsby-plugin-mdx": "^4.0.0",

examples/mdx-bundler/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "codehike-mdx-bundler",
33
"private": true,
4-
"version": "0.7.4",
4+
"version": "0.8.0",
55
"scripts": {
66
"dev": "next",
77
"build": "next build",
88
"start": "next start"
99
},
1010
"dependencies": {
11-
"@code-hike/mdx": "^0.7.4",
11+
"@code-hike/mdx": "^0.8.0",
1212
"esbuild": "^0.14.23",
1313
"mdx-bundler": "^9.2.1",
1414
"next": "13.1.2",

examples/next-mdx-remote/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "codehike-next-mdx-remote",
33
"private": true,
4-
"version": "0.7.4",
4+
"version": "0.8.0",
55
"scripts": {
66
"dev": "next dev",
77
"build": "next build",
88
"start": "next start"
99
},
1010
"dependencies": {
11-
"@code-hike/mdx": "^0.7.4",
11+
"@code-hike/mdx": "^0.8.0",
1212
"next": "^12.3.4",
1313
"next-mdx-remote": "^4.2.0",
1414
"react": "^18.1.0",

examples/nextjs/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "codehike-nextjs",
33
"private": true,
4-
"version": "0.7.4",
4+
"version": "0.8.0",
55
"scripts": {
66
"dev": "next",
77
"build": "next build"
88
},
99
"dependencies": {
10-
"@code-hike/mdx": "^0.7.4",
10+
"@code-hike/mdx": "^0.8.0",
1111
"@mdx-js/loader": "2.2.1",
1212
"@next/mdx": "13.1.2",
1313
"next": "13.1.2",

examples/nextra/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "codehike-nextra",
33
"private": true,
4-
"version": "0.7.4",
4+
"version": "0.8.0",
55
"scripts": {
66
"dev": "next dev",
77
"build": "next build",
88
"start": "next start"
99
},
1010
"dependencies": {
11-
"@code-hike/mdx": "^0.7.4",
11+
"@code-hike/mdx": "^0.8.0",
1212
"next": "13.1.2",
1313
"nextra": "2.2.3",
1414
"nextra-theme-docs": "2.2.3",

examples/remix/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "codehike-remix",
33
"private": true,
4-
"version": "0.7.4",
4+
"version": "0.8.0",
55
"sideEffects": false,
66
"scripts": {
77
"build": "cross-env NODE_ENV=production remix build",
@@ -10,7 +10,7 @@
1010
"start": "cross-env NODE_ENV=production remix-serve build"
1111
},
1212
"dependencies": {
13-
"@code-hike/mdx": "^0.7.4",
13+
"@code-hike/mdx": "^0.8.0",
1414
"@remix-run/react": "^1.2.2",
1515
"@remix-run/serve": "^1.2.2",
1616
"cross-env": "^7.0.3",

examples/vite/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "codehike-vite",
33
"private": true,
4-
"version": "0.7.4",
4+
"version": "0.8.0",
55
"scripts": {
66
"dev": "vite",
77
"build": "vite build",
88
"preview": "vite preview"
99
},
1010
"dependencies": {
11-
"@code-hike/mdx": "^0.7.4",
11+
"@code-hike/mdx": "^0.8.0",
1212
"@mdx-js/rollup": "2.2.1",
1313
"react": "^18.1.0",
1414
"react-dom": "^18.1.0"

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.7.4",
2+
"version": "0.8.0",
33
"npmClient": "yarn",
44
"packages": [
55
"packages/*"

packages/mdx/CHANGELOG.md

+32
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
# v0.8.0 (Mon Jan 16 2023)
2+
3+
#### 🚀 Enhancement
4+
5+
- Use @code-hike/lighter [#308](https://github.com/code-hike/codehike/pull/308) ([@pomber](https://github.com/pomber))
6+
7+
#### 🐛 Bug Fix
8+
9+
- Use lighter v0.2 ([@pomber](https://github.com/pomber))
10+
- Pin ch-test next version ([@pomber](https://github.com/pomber))
11+
- Update lighter ([@pomber](https://github.com/pomber))
12+
- Use lighter v0.1.6 ([@pomber](https://github.com/pomber))
13+
- Fix docusaurus ([@pomber](https://github.com/pomber))
14+
- Update astro ([@pomber](https://github.com/pomber))
15+
- Fix ch-test again ([@pomber](https://github.com/pomber))
16+
- Fix ch-test ([@pomber](https://github.com/pomber))
17+
- React 18 and Next 13 ([@pomber](https://github.com/pomber))
18+
- Exclude lighter from bundle ([@pomber](https://github.com/pomber))
19+
- Lighter v0.0.4 ([@pomber](https://github.com/pomber))
20+
- Use lighter ([@pomber](https://github.com/pomber))
21+
- Remove deps ([@pomber](https://github.com/pomber))
22+
- Fix line number horizontal shift [#278](https://github.com/code-hike/codehike/pull/278) ([@pomber](https://github.com/pomber))
23+
- Fix line number horizontal shift ([@pomber](https://github.com/pomber))
24+
- Merge main [#275](https://github.com/code-hike/codehike/pull/275) ([@pomber](https://github.com/pomber))
25+
26+
#### Authors: 2
27+
28+
- John Daly ([@JohnDaly](https://github.com/JohnDaly))
29+
- Rodrigo Pombo ([@pomber](https://github.com/pomber))
30+
31+
---
32+
133
# v0.7.4 (Mon Aug 22 2022)
234

335
#### 🐛 Bug Fix

packages/mdx/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@code-hike/mdx",
3-
"version": "0.7.4",
3+
"version": "0.8.0",
44
"files": [
55
"dist",
66
"components.d.ts"

playground/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"name": "playground",
33
"private": true,
4-
"version": "0.7.4",
4+
"version": "0.8.0",
55
"scripts": {
66
"dev": "vite",
77
"build": "vite build",
88
"preview": "vite preview"
99
},
1010
"dependencies": {
11-
"@code-hike/mdx": "^0.7.4",
11+
"@code-hike/mdx": "^0.8.0",
1212
"@mdx-js/mdx": "^2.1.1",
1313
"@monaco-editor/react": "^4.4.5",
1414
"lz-string": "^1.4.4",

0 commit comments

Comments
 (0)