Skip to content

Commit

Permalink
Merge pull request #17 from zentered/fix/custom-ids
Browse files Browse the repository at this point in the history
fix: custom ids in mdx
  • Loading branch information
PatrickHeneise committed Mar 23, 2023
2 parents e18732e + 32bc5d9 commit d03ecbb
Show file tree
Hide file tree
Showing 4 changed files with 601 additions and 1,174 deletions.
46 changes: 23 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@zentered/next-product-docs",
"version": "2.0.0-dev.2",
"version": "2.0.0",
"description": "React/Next.js Render Remote Content",
"keywords": [
"nextjs",
Expand Down Expand Up @@ -32,15 +32,15 @@
},
"scripts": {
"build": "rollup -c rollup.config.js",
"coverage": "vitest run --coverage",
"postinstall": "husky install",
"lint": "eslint --fix . --ext .js --ext .jsx --ext md --ext mdx",
"prepare": "husky install",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable",
"preversion": "pnpm build",
"style": "prettier --write \"./**/*.{js,jsx,json}\"",
"test": "vitest run",
"coverage": "vitest run --coverage",
"preversion": "pnpm build",
"watch": "watch 'npm run build' ./src"
},
"commitlint": {
Expand All @@ -63,26 +63,26 @@
},
"dependencies": {
"@mdx-js/mdx": "^2.3.0",
"@next/mdx": "^13.1.6",
"@next/mdx": "^13.2.4",
"github-slugger": "^2.0.0",
"gray-matter": "^4.0.3",
"lodash": "^4.17.21",
"marked": "^4.2.12",
"marked": "^4.3.0",
"mdast": "^3.0.0",
"next-mdx-remote": "^4.3.0",
"next-mdx-remote": "^4.4.1",
"prism-react-renderer": "1.3.5",
"react-click-away-listener": "2.2.2",
"react-click-away-listener": "2.2.3",
"react-copy-to-clipboard": "^5.1.0",
"react-instantsearch-dom": "^6.39.0",
"react-markdown": "^8.0.5",
"react-instantsearch-dom": "^6.39.1",
"react-markdown": "^8.0.6",
"react-scroll": "^1.8.9",
"rehype-autolink-headings": "^6.1.1",
"rehype-sanitize": "^5.0.1",
"rehype-slug": "^5.1.0",
"remark-comment": "^1.0.0",
"remark-custom-heading-id": "^1.0.0",
"remark-external-links": "^9.0.1",
"remark-gfm": "^3.0.1",
"remark-heading-id": "^1.0.0",
"remark-inline-links": "^6.0.1",
"remark-parse": "^10.0.1",
"strip-indent": "^4.0.0",
Expand All @@ -92,41 +92,41 @@
"devDependencies": {
"@babel/preset-env": "^7.20.2",
"@babel/preset-react": "^7.18.6",
"@commitlint/cli": "^17.4.3",
"@commitlint/config-conventional": "^17.4.3",
"@commitlint/cli": "^17.5.0",
"@commitlint/config-conventional": "^17.4.4",
"@mdx-js/runtime": "^1.6.22",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@vitejs/plugin-react": "^3.1.0",
"esbuild": "^0.17.8",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"esbuild": "^0.17.12",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-mdx": "^2.0.5",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.3",
"jsdom": "^21.1.0",
"lint-staged": "^13.1.2",
"jsdom": "^21.1.1",
"lint-staged": "^13.2.0",
"mdx-observable": "^0.2.0",
"next": "^12.3.4",
"next": "^13.2.4",
"nock": "^13.3.0",
"pinst": "^3.0.0",
"pkg-dir": "^7.0.0",
"prettier": "^2.8.4",
"prettier": "^2.8.6",
"react": "18.2.0",
"react-dom": "18.2.0",
"rollup": "^3.15.0",
"vitest": "^0.28.5",
"rollup": "^3.20.0",
"vitest": "^0.29.7",
"watch": "^1.0.2",
"whatwg-fetch": "^3.6.2"
},
"peerDependencies": {
"next": "=12",
"next": "^12||^13",
"react": "=18",
"react-dom": "=18"
},
Expand Down

0 comments on commit d03ecbb

Please sign in to comment.