Skip to content

Commit

Permalink
Merge pull request #483 from david10sing/fix-481-missing-micromark-deps
Browse files Browse the repository at this point in the history
fix(deps): fix micromark-extension-gfm-strikethrough not being externalised

Fixes #481
  • Loading branch information
petyosi authored Jun 6, 2024
2 parents a9848a7 + 5a8d846 commit 1fc2ec7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports = {
project: ['./tsconfig.json'],
sourceType: 'module'
},
plugins: ['react', '@typescript-eslint', 'json', 'html'],
plugins: ['react', '@typescript-eslint', 'json', 'html', 'import'],
env: {
browser: true,
es2021: true,
Expand All @@ -28,6 +28,7 @@ module.exports = {
}
],
rules: {
'import/no-extraneous-dependencies': ['error'],
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-explicit-any': 'off',
'@typescript-eslint/no-unsafe-return': 'off',
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@
"mdast-util-to-markdown": "^2.1.0",
"micromark-extension-directive": "^3.0.0",
"micromark-extension-frontmatter": "^2.0.0",
"micromark-extension-gfm-strikethrough": "^2.0.0",
"micromark-extension-gfm-table": "^2.0.0",
"micromark-extension-gfm-task-list-item": "^2.0.1",
"micromark-extension-mdx-jsx": "^3.0.0",
Expand Down

0 comments on commit 1fc2ec7

Please sign in to comment.