Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nuxt-modules/mdc
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.15.0
Choose a base ref
...
head repository: nuxt-modules/mdc
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.16.0
Choose a head ref
  • 7 commits
  • 43 files changed
  • 2 contributors

Commits on Mar 19, 2025

  1. !fix(MDC): do not generate title/description and toc (#354)

    farnabaz authored Mar 19, 2025
    Copy the full SHA
    0c5e48c View commit details
  2. fix: upgrade deps and drop ohash

    farnabaz committed Mar 19, 2025
    Copy the full SHA
    3d08c74 View commit details
  3. chore: drop edge channel in favor of pkg-pr-new releases

    farnabaz committed Mar 19, 2025
    Copy the full SHA
    35cc446 View commit details
  4. chore: upgrade deps

    farnabaz committed Mar 19, 2025
    Copy the full SHA
    3853b10 View commit details
  5. fix: broken custom highlighter

    closes #352
    farnabaz committed Mar 19, 2025
    Copy the full SHA
    d090484 View commit details
  6. chore(deps): lock file maintenance (#323)

    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Mar 19, 2025
    Copy the full SHA
    a185c02 View commit details
  7. chore(release): release v0.16.0

    farnabaz committed Mar 19, 2025
    Copy the full SHA
    6b47e1d View commit details
Showing with 2,948 additions and 12,914 deletions.
  1. +0 −32 .github/scripts/bump-edge.ts
  2. +0 −23 .github/scripts/release-edge.sh
  3. +0 −126 .github/scripts/utils.ts
  4. +0 −24 .github/workflows/ci.yml
  5. +0 −2 .nuxtrc
  6. +19 −0 CHANGELOG.md
  7. +0 −4 docs/.eslintignore
  8. +0 −8 docs/.eslintrc.cjs
  9. +0 −12 docs/.gitignore
  10. +0 −2 docs/.npmrc
  11. +0 −1 docs/.nuxtrc
  12. 0 docs/{content → }/0.index.md
  13. +0 −57 docs/README.md
  14. +0 −46 docs/app.config.ts
  15. +0 −53 docs/components/mdc/MdcPlayground.vue
  16. +0 −11 docs/nuxt.config.ts
  17. +0 −24 docs/package.json
  18. +0 −9,057 docs/pnpm-lock.yaml
  19. BIN docs/public/cover.png
  20. BIN docs/public/favicon.ico
  21. +0 −8 docs/renovate.json
  22. +0 −4 docs/tokens.config.ts
  23. +0 −3 docs/tsconfig.json
  24. +0 −21 nuxt.config.ts
  25. +25 −23 package.json
  26. +2 −0 playground/assets/css/main.css
  27. +4 −2 playground/nuxt.config.ts
  28. +5 −7 playground/package.json
  29. +0 −6 playground/tailwind.config.js
  30. +2,837 −3,335 pnpm-lock.yaml
  31. +27 −3 src/runtime/components/MDC.vue
  32. +2 −1 src/runtime/components/MDCRenderer.vue
  33. +2 −3 src/runtime/highlighter/rehype-nuxt.ts
  34. +13 −12 src/runtime/parser/index.ts
  35. +2 −2 src/templates/mdc-highlighter.ts
  36. +1 −1 src/types/parser.ts
  37. 0 test/fixtures/basic/{ → app}/app.vue
  38. 0 test/fixtures/basic/{ → app}/components/CustomParagraph.vue
  39. 0 test/fixtures/basic/{ → app}/components/mdc/GlobalParagraph.vue
  40. 0 test/fixtures/basic/{ → app}/pages/component-map/component-name.vue
  41. 0 test/fixtures/basic/{ → app}/pages/component-map/vue-component.vue
  42. +5 −1 test/fixtures/basic/nuxt.config.ts
  43. +4 −0 tsconfig.json
32 changes: 0 additions & 32 deletions .github/scripts/bump-edge.ts

This file was deleted.

23 changes: 0 additions & 23 deletions .github/scripts/release-edge.sh

This file was deleted.

126 changes: 0 additions & 126 deletions .github/scripts/utils.ts

This file was deleted.

24 changes: 0 additions & 24 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -27,27 +27,3 @@ jobs:

- name: Publish
run: pnpx pkg-pr-new publish --compact --no-template --pnpm

release-edge:
if: |
github.event_name == 'push' &&
!contains(github.event.head_commit.message, '[skip-release]') &&
!startsWith(github.event.head_commit.message, 'docs')
needs:
- test
runs-on: ubuntu-latest
timeout-minutes: 20

steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
- run: npm i -g --force corepack && corepack enable
- name: Install dependencies
run: pnpm install

- name: Release Edge
run: bash ./.github/scripts/release-edge.sh
env:
NODE_AUTH_TOKEN: ${{secrets.NODE_AUTH_TOKEN}}
2 changes: 0 additions & 2 deletions .nuxtrc

This file was deleted.

19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,25 @@
# Changelog


## v0.16.0

[compare changes](https://github.com/nuxt-modules/mdc/compare/v0.15.0...v0.16.0)

### 🩹 Fixes

- **MDC:** Do not generate title/description and toc ([#354](https://github.com/nuxt-modules/mdc/pull/354))
- Upgrade deps and drop ohash ([3d08c74](https://github.com/nuxt-modules/mdc/commit/3d08c74))
- Broken custom highlighter ([d090484](https://github.com/nuxt-modules/mdc/commit/d090484))

### 🏡 Chore

- Drop edge channel in favor of `pkg-pr-new` releases ([35cc446](https://github.com/nuxt-modules/mdc/commit/35cc446))
- Upgrade deps ([3853b10](https://github.com/nuxt-modules/mdc/commit/3853b10))

### ❤️ Contributors

- Farnabaz <farnabaz@gmail.com>

## v0.15.0

[compare changes](https://github.com/nuxt-modules/mdc/compare/v0.14.0...v0.15.0)
4 changes: 0 additions & 4 deletions docs/.eslintignore

This file was deleted.

8 changes: 0 additions & 8 deletions docs/.eslintrc.cjs

This file was deleted.

12 changes: 0 additions & 12 deletions docs/.gitignore

This file was deleted.

2 changes: 0 additions & 2 deletions docs/.npmrc

This file was deleted.

1 change: 0 additions & 1 deletion docs/.nuxtrc

This file was deleted.

File renamed without changes.
57 changes: 0 additions & 57 deletions docs/README.md

This file was deleted.

46 changes: 0 additions & 46 deletions docs/app.config.ts

This file was deleted.

Loading