Skip to content

Commit ec5b0b9

Browse files
authored
Merge pull request #167 from code-hike/main
v0.4.0
2 parents 374d73d + 76a6304 commit ec5b0b9

File tree

12 files changed

+99
-18
lines changed

12 files changed

+99
-18
lines changed

CHANGELOG.md

+26
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
# v0.4.0 (Thu Apr 28 2022)
2+
3+
#### 🚀 Enhancement
4+
5+
- `@code-hike/mdx`
6+
- Monopackage refactor [#147](https://github.com/code-hike/codehike/pull/147) ([@pomber](https://github.com/pomber))
7+
8+
#### 🐛 Bug Fix
9+
10+
- `@code-hike/mdx`
11+
- Fix preview width [#165](https://github.com/code-hike/codehike/pull/165) ([@pomber](https://github.com/pomber))
12+
- Python comments support [#163](https://github.com/code-hike/codehike/pull/163) ([@pomber](https://github.com/pomber))
13+
- Smart imports [#160](https://github.com/code-hike/codehike/pull/160) ([@pomber](https://github.com/pomber))
14+
- Export internals [#159](https://github.com/code-hike/codehike/pull/159) ([@pomber](https://github.com/pomber))
15+
- Docusaurus example [#158](https://github.com/code-hike/codehike/pull/158) ([@pomber](https://github.com/pomber))
16+
- Rename esm to .mjs [#157](https://github.com/code-hike/codehike/pull/157) ([@pomber](https://github.com/pomber))
17+
- Fix longest line trim [#155](https://github.com/code-hike/codehike/pull/155) ([@pomber](https://github.com/pomber))
18+
- Browser example [#154](https://github.com/code-hike/codehike/pull/154) ([@pomber](https://github.com/pomber))
19+
- Test site [#149](https://github.com/code-hike/codehike/pull/149) ([@pomber](https://github.com/pomber))
20+
21+
#### Authors: 1
22+
23+
- Rodrigo Pombo ([@pomber](https://github.com/pomber))
24+
25+
---
26+
127
# v0.3.0 (Thu Mar 03 2022)
228

329
#### 🚀 Enhancement

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.0.0",
4+
"version": "0.4.0",
55
"scripts": {
66
"dev": "next",
77
"build": "next build"
88
},
99
"dependencies": {
10-
"@code-hike/mdx": "^0.3.0",
10+
"@code-hike/mdx": "^0.4.0",
1111
"@mdx-js/loader": "^2.0.0",
1212
"@next/mdx": "^12.1.0",
1313
"next": "^12.1.0",

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.0.0",
3+
"version": "0.4.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.3.0",
17+
"@code-hike/mdx": "^0.4.0",
1818
"@docusaurus/core": "2.0.0-beta.18",
1919
"@docusaurus/preset-classic": "2.0.0-beta.18",
2020
"@mdx-js/react": "^2.1.1",

examples/mdx-bundler/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "codehike-mdx-bundler",
33
"private": true,
4-
"version": "0.0.0",
4+
"version": "0.4.0",
55
"scripts": {
66
"dev": "next",
77
"build": "next build"
88
},
99
"dependencies": {
10-
"@code-hike/mdx": "^0.3.0",
10+
"@code-hike/mdx": "^0.4.0",
1111
"esbuild": "^0.14.23",
1212
"mdx-bundler": "^8.0.1",
1313
"next": "^12.1.0",

examples/next-mdx-remote/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"name": "codehike-next-mdx-remote",
33
"private": true,
4-
"version": "0.0.0",
4+
"version": "0.4.0",
55
"dependencies": {
6-
"@code-hike/mdx": "^0.3.0",
6+
"@code-hike/mdx": "^0.4.0",
77
"next": "^12.1.0",
88
"next-mdx-remote": "^4.0.0",
99
"react": "^17.0.2",

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.0.0",
4+
"version": "0.4.0",
55
"scripts": {
66
"dev": "next",
77
"build": "next build"
88
},
99
"dependencies": {
10-
"@code-hike/mdx": "^0.3.0",
10+
"@code-hike/mdx": "^0.4.0",
1111
"@mdx-js/loader": "^2.0.0",
1212
"@next/mdx": "^12.1.0",
1313
"next": "^12.1.0",

examples/nextra/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"name": "codehike-nextra",
33
"private": true,
4-
"version": "0.0.0",
4+
"version": "0.4.0",
55
"scripts": {
66
"build": "next build"
77
},
88
"dependencies": {
9-
"@code-hike/mdx": "^0.3.0",
9+
"@code-hike/mdx": "^0.4.0",
1010
"next": "^12.1.0",
1111
"nextra": "^1.1.0",
1212
"nextra-theme-docs": "^1.2.6",

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.0.0",
4+
"version": "0.4.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.3.0",
13+
"@code-hike/mdx": "^0.4.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.0.0",
4+
"version": "0.4.0",
55
"scripts": {
66
"dev": "vite",
77
"build": "vite build",
88
"preview": "vite preview"
99
},
1010
"dependencies": {
11-
"@code-hike/mdx": "^0.3.0",
11+
"@code-hike/mdx": "^0.4.0",
1212
"@mdx-js/rollup": "^2.0.0",
1313
"react": "^17.0.2",
1414
"react-dom": "^17.0.2"

lerna.json

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

packages/mdx/CHANGELOG.md

+55
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,58 @@
1+
# v0.4.0 (Thu Apr 28 2022)
2+
3+
#### 🚀 Enhancement
4+
5+
- Monopackage refactor [#147](https://github.com/code-hike/codehike/pull/147) ([@pomber](https://github.com/pomber))
6+
7+
#### 🐛 Bug Fix
8+
9+
- Merge branch 'main' into next ([@pomber](https://github.com/pomber))
10+
- Fix preview width [#165](https://github.com/code-hike/codehike/pull/165) ([@pomber](https://github.com/pomber))
11+
- Fix preview width ([@pomber](https://github.com/pomber))
12+
- Python comments support [#163](https://github.com/code-hike/codehike/pull/163) ([@pomber](https://github.com/pomber))
13+
- Add support for bash-like comments ([@pomber](https://github.com/pomber))
14+
- Smart imports [#160](https://github.com/code-hike/codehike/pull/160) ([@pomber](https://github.com/pomber))
15+
- Bundle client deps ([@pomber](https://github.com/pomber))
16+
- Add import depending on usage ([@pomber](https://github.com/pomber))
17+
- Only import if using code hike ([@pomber](https://github.com/pomber))
18+
- Move imports to the end ([@pomber](https://github.com/pomber))
19+
- Export internals [#159](https://github.com/code-hike/codehike/pull/159) ([@pomber](https://github.com/pomber))
20+
- Export internals ([@pomber](https://github.com/pomber))
21+
- Docusaurus example [#158](https://github.com/code-hike/codehike/pull/158) ([@pomber](https://github.com/pomber))
22+
- Fix rollup warnings ([@pomber](https://github.com/pomber))
23+
- Fix transparent color ([@pomber](https://github.com/pomber))
24+
- Rename esm to .mjs [#157](https://github.com/code-hike/codehike/pull/157) ([@pomber](https://github.com/pomber))
25+
- Rename esm to .mjs ([@pomber](https://github.com/pomber))
26+
- Fix longest line trim [#155](https://github.com/code-hike/codehike/pull/155) ([@pomber](https://github.com/pomber))
27+
- Fix longest line trim ([@pomber](https://github.com/pomber))
28+
- Browser example [#154](https://github.com/code-hike/codehike/pull/154) ([@pomber](https://github.com/pomber))
29+
- Add browser example ([@pomber](https://github.com/pomber))
30+
- Add index.browser.mjs ([@pomber](https://github.com/pomber))
31+
- Test site [#149](https://github.com/code-hike/codehike/pull/149) ([@pomber](https://github.com/pomber))
32+
- Remove stuff ([@pomber](https://github.com/pomber))
33+
- Add debug link ([@pomber](https://github.com/pomber))
34+
- Styling ([@pomber](https://github.com/pomber))
35+
- Remove nft ([@pomber](https://github.com/pomber))
36+
- Move to static props ([@pomber](https://github.com/pomber))
37+
- Try include files ([@pomber](https://github.com/pomber))
38+
- And again ([@pomber](https://github.com/pomber))
39+
- Try again ([@pomber](https://github.com/pomber))
40+
- Ditch mdx-bundler ([@pomber](https://github.com/pomber))
41+
- Add test script \[skip ci\] ([@pomber](https://github.com/pomber))
42+
- Reset code box-sizing ([@pomber](https://github.com/pomber))
43+
- Patch mdx bundler ([@pomber](https://github.com/pomber))
44+
- Adapt examples ([@pomber](https://github.com/pomber))
45+
- Better package exports ([@pomber](https://github.com/pomber))
46+
- More typescript and rollup ([@pomber](https://github.com/pomber))
47+
- Fix typescript ([@pomber](https://github.com/pomber))
48+
- Move all packages into one ([@pomber](https://github.com/pomber))
49+
50+
#### Authors: 1
51+
52+
- Rodrigo Pombo ([@pomber](https://github.com/pomber))
53+
54+
---
55+
156
# v0.3.0 (Thu Mar 03 2022)
257

358
#### 🚀 Enhancement

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.3.0",
3+
"version": "0.4.0",
44
"files": [
55
"dist"
66
],

0 commit comments

Comments
 (0)