Skip to content

v0.4.0 #167

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

Merged
merged 3 commits into from
Apr 28, 2022
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
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
# v0.4.0 (Thu Apr 28 2022)

#### 🚀 Enhancement

- `@code-hike/mdx`
- Monopackage refactor [#147](https://github.com/code-hike/codehike/pull/147) ([@pomber](https://github.com/pomber))

#### 🐛 Bug Fix

- `@code-hike/mdx`
- Fix preview width [#165](https://github.com/code-hike/codehike/pull/165) ([@pomber](https://github.com/pomber))
- Python comments support [#163](https://github.com/code-hike/codehike/pull/163) ([@pomber](https://github.com/pomber))
- Smart imports [#160](https://github.com/code-hike/codehike/pull/160) ([@pomber](https://github.com/pomber))
- Export internals [#159](https://github.com/code-hike/codehike/pull/159) ([@pomber](https://github.com/pomber))
- Docusaurus example [#158](https://github.com/code-hike/codehike/pull/158) ([@pomber](https://github.com/pomber))
- Rename esm to .mjs [#157](https://github.com/code-hike/codehike/pull/157) ([@pomber](https://github.com/pomber))
- Fix longest line trim [#155](https://github.com/code-hike/codehike/pull/155) ([@pomber](https://github.com/pomber))
- Browser example [#154](https://github.com/code-hike/codehike/pull/154) ([@pomber](https://github.com/pomber))
- Test site [#149](https://github.com/code-hike/codehike/pull/149) ([@pomber](https://github.com/pomber))

#### Authors: 1

- Rodrigo Pombo ([@pomber](https://github.com/pomber))

---

# v0.3.0 (Thu Mar 03 2022)

#### 🚀 Enhancement
Expand Down
4 changes: 2 additions & 2 deletions examples/bundle-test/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "bundle-test",
"private": true,
"version": "0.0.0",
"version": "0.4.0",
"scripts": {
"dev": "next",
"build": "next build"
},
"dependencies": {
"@code-hike/mdx": "^0.3.0",
"@code-hike/mdx": "^0.4.0",
"@mdx-js/loader": "^2.0.0",
"@next/mdx": "^12.1.0",
"next": "^12.1.0",
Expand Down
4 changes: 2 additions & 2 deletions examples/docusaurus/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "codehike-docusaurus",
"version": "0.0.0",
"version": "0.4.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
Expand All @@ -14,7 +14,7 @@
"write-heading-ids": "docusaurus write-heading-ids"
},
"dependencies": {
"@code-hike/mdx": "^0.3.0",
"@code-hike/mdx": "^0.4.0",
"@docusaurus/core": "2.0.0-beta.18",
"@docusaurus/preset-classic": "2.0.0-beta.18",
"@mdx-js/react": "^2.1.1",
Expand Down
4 changes: 2 additions & 2 deletions examples/mdx-bundler/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "codehike-mdx-bundler",
"private": true,
"version": "0.0.0",
"version": "0.4.0",
"scripts": {
"dev": "next",
"build": "next build"
},
"dependencies": {
"@code-hike/mdx": "^0.3.0",
"@code-hike/mdx": "^0.4.0",
"esbuild": "^0.14.23",
"mdx-bundler": "^8.0.1",
"next": "^12.1.0",
Expand Down
4 changes: 2 additions & 2 deletions examples/next-mdx-remote/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "codehike-next-mdx-remote",
"private": true,
"version": "0.0.0",
"version": "0.4.0",
"dependencies": {
"@code-hike/mdx": "^0.3.0",
"@code-hike/mdx": "^0.4.0",
"next": "^12.1.0",
"next-mdx-remote": "^4.0.0",
"react": "^17.0.2",
Expand Down
4 changes: 2 additions & 2 deletions examples/nextjs/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "codehike-nextjs",
"private": true,
"version": "0.0.0",
"version": "0.4.0",
"scripts": {
"dev": "next",
"build": "next build"
},
"dependencies": {
"@code-hike/mdx": "^0.3.0",
"@code-hike/mdx": "^0.4.0",
"@mdx-js/loader": "^2.0.0",
"@next/mdx": "^12.1.0",
"next": "^12.1.0",
Expand Down
4 changes: 2 additions & 2 deletions examples/nextra/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "codehike-nextra",
"private": true,
"version": "0.0.0",
"version": "0.4.0",
"scripts": {
"build": "next build"
},
"dependencies": {
"@code-hike/mdx": "^0.3.0",
"@code-hike/mdx": "^0.4.0",
"next": "^12.1.0",
"nextra": "^1.1.0",
"nextra-theme-docs": "^1.2.6",
Expand Down
4 changes: 2 additions & 2 deletions examples/remix/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "codehike-remix",
"private": true,
"version": "0.0.0",
"version": "0.4.0",
"sideEffects": false,
"scripts": {
"build": "cross-env NODE_ENV=production remix build",
Expand All @@ -10,7 +10,7 @@
"start": "cross-env NODE_ENV=production remix-serve build"
},
"dependencies": {
"@code-hike/mdx": "^0.3.0",
"@code-hike/mdx": "^0.4.0",
"@remix-run/react": "^1.2.2",
"@remix-run/serve": "^1.2.2",
"cross-env": "^7.0.3",
Expand Down
4 changes: 2 additions & 2 deletions examples/vite/package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "codehike-vite",
"private": true,
"version": "0.0.0",
"version": "0.4.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"@code-hike/mdx": "^0.3.0",
"@code-hike/mdx": "^0.4.0",
"@mdx-js/rollup": "^2.0.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "0.3.0",
"version": "0.4.0",
"npmClient": "yarn",
"packages": [
"packages/*"
Expand Down
55 changes: 55 additions & 0 deletions packages/mdx/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,58 @@
# v0.4.0 (Thu Apr 28 2022)

#### 🚀 Enhancement

- Monopackage refactor [#147](https://github.com/code-hike/codehike/pull/147) ([@pomber](https://github.com/pomber))

#### 🐛 Bug Fix

- Merge branch 'main' into next ([@pomber](https://github.com/pomber))
- Fix preview width [#165](https://github.com/code-hike/codehike/pull/165) ([@pomber](https://github.com/pomber))
- Fix preview width ([@pomber](https://github.com/pomber))
- Python comments support [#163](https://github.com/code-hike/codehike/pull/163) ([@pomber](https://github.com/pomber))
- Add support for bash-like comments ([@pomber](https://github.com/pomber))
- Smart imports [#160](https://github.com/code-hike/codehike/pull/160) ([@pomber](https://github.com/pomber))
- Bundle client deps ([@pomber](https://github.com/pomber))
- Add import depending on usage ([@pomber](https://github.com/pomber))
- Only import if using code hike ([@pomber](https://github.com/pomber))
- Move imports to the end ([@pomber](https://github.com/pomber))
- Export internals [#159](https://github.com/code-hike/codehike/pull/159) ([@pomber](https://github.com/pomber))
- Export internals ([@pomber](https://github.com/pomber))
- Docusaurus example [#158](https://github.com/code-hike/codehike/pull/158) ([@pomber](https://github.com/pomber))
- Fix rollup warnings ([@pomber](https://github.com/pomber))
- Fix transparent color ([@pomber](https://github.com/pomber))
- Rename esm to .mjs [#157](https://github.com/code-hike/codehike/pull/157) ([@pomber](https://github.com/pomber))
- Rename esm to .mjs ([@pomber](https://github.com/pomber))
- Fix longest line trim [#155](https://github.com/code-hike/codehike/pull/155) ([@pomber](https://github.com/pomber))
- Fix longest line trim ([@pomber](https://github.com/pomber))
- Browser example [#154](https://github.com/code-hike/codehike/pull/154) ([@pomber](https://github.com/pomber))
- Add browser example ([@pomber](https://github.com/pomber))
- Add index.browser.mjs ([@pomber](https://github.com/pomber))
- Test site [#149](https://github.com/code-hike/codehike/pull/149) ([@pomber](https://github.com/pomber))
- Remove stuff ([@pomber](https://github.com/pomber))
- Add debug link ([@pomber](https://github.com/pomber))
- Styling ([@pomber](https://github.com/pomber))
- Remove nft ([@pomber](https://github.com/pomber))
- Move to static props ([@pomber](https://github.com/pomber))
- Try include files ([@pomber](https://github.com/pomber))
- And again ([@pomber](https://github.com/pomber))
- Try again ([@pomber](https://github.com/pomber))
- Ditch mdx-bundler ([@pomber](https://github.com/pomber))
- Add test script \[skip ci\] ([@pomber](https://github.com/pomber))
- Reset code box-sizing ([@pomber](https://github.com/pomber))
- Patch mdx bundler ([@pomber](https://github.com/pomber))
- Adapt examples ([@pomber](https://github.com/pomber))
- Better package exports ([@pomber](https://github.com/pomber))
- More typescript and rollup ([@pomber](https://github.com/pomber))
- Fix typescript ([@pomber](https://github.com/pomber))
- Move all packages into one ([@pomber](https://github.com/pomber))

#### Authors: 1

- Rodrigo Pombo ([@pomber](https://github.com/pomber))

---

# v0.3.0 (Thu Mar 03 2022)

#### 🚀 Enhancement
Expand Down
2 changes: 1 addition & 1 deletion packages/mdx/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@code-hike/mdx",
"version": "0.3.0",
"version": "0.4.0",
"files": [
"dist"
],
Expand Down