Skip to content

Commit

Permalink
Merge pull request #130 from florianeckerstorfer/fix-mdast-deps
Browse files Browse the repository at this point in the history
Fix mdast deps
  • Loading branch information
florianeckerstorfer authored Nov 15, 2023
2 parents 2830676 + 612ea9e commit 16a64a4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fec/remark-a11y-emoji",
"version": "3.1.0",
"version": "4.0.0",
"description": "Remark plugin to add a label to emoji and make them accessible.",
"main": "dist/remark-a11y-emoji.cjs.js",
"module": "dist/remark-a11y-emoji.esm.js",
Expand Down Expand Up @@ -45,18 +45,18 @@
"@babel/preset-env": "^7.12.7",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^4.1.0",
"rehype-stringify": "^9.0.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"babel-jest": "^29.5.0",
"jest": "^29.5.0",
"rehype-stringify": "^9.0.3",
"remark": "^13.0.0",
"remark-rehype": "^10.1.0",
"rollup": "^2.34.0"
},
"dependencies": {
"emoji-regex": "^10.0.0",
"gemoji": "^6.1.0",
"mdast-util-find-and-replace": "^2.2.2",
"mdast-util-find-and-replace": "^1.1.1",
"unist-util-visit": "^3.1.0"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import emojiRegex from 'emoji-regex';
import { findAndReplace } from 'mdast-util-find-and-replace';
import findAndReplace from 'mdast-util-find-and-replace';
import { getEmojiDescription } from './helper';

function a11yEmoji() {
Expand Down

0 comments on commit 16a64a4

Please sign in to comment.