1
1
mirror of https://github.com/mdx-js/mdx.git synced 2024-09-11 15:05:32 +03:00

Update dev-dependencies

This commit is contained in:
Titus Wormer 2022-06-12 20:21:39 +02:00
parent 63fd208d53
commit ac44dc7b38
No known key found for this signature in database
GPG Key ID: E6E581152ED04E2E
4 changed files with 816 additions and 491 deletions

1293
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -55,8 +55,8 @@
"hast-util-to-text": "^3.0.0",
"hastscript": "^7.0.0",
"highlight.js": "^11.0.0",
"husky": "^7.0.0",
"lint-staged": "^12.0.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.0",
"lowlight": "^2.0.0",
"p-all": "^4.0.0",
"patch-package": "^6.0.0",
@ -64,7 +64,7 @@
"postcss": "^8.0.0",
"postcss-cli": "^9.0.0",
"prettier": "^2.0.0",
"puppeteer-core": "^13.0.0",
"puppeteer-core": "^14.0.0",
"react": "0.0.0-experimental-1159ff619-20220324",
"react-dom": "0.0.0-experimental-1159ff619-20220324",
"react-error-boundary": "^3.0.0",
@ -114,7 +114,7 @@
"xast-util-feed": "^1.0.0",
"xast-util-sitemap": "^1.0.0",
"xast-util-to-xml": "^3.0.0",
"xo": "^0.48.0"
"xo": "^0.50.0"
},
"scripts": {
"postinstall": "patch-package",
@ -172,7 +172,7 @@
"prettier": true,
"rules": {
"import/extensions": "off",
"node/file-extension-in-import": "off",
"n/file-extension-in-import": "off",
"react/prop-types": "off",
"unicorn/no-await-expression-member": "off",
"unicorn/prefer-code-point": "off",

View File

@ -67,7 +67,7 @@
"devDependencies": {
"@emotion/react": "^11.0.0",
"@mdx-js/react": "^2.0.0",
"nanoid": "^3.0.0",
"nanoid": "^4.0.0",
"preact": "^10.0.0",
"preact-render-to-string": "^5.0.0",
"react": "^18.0.0",

View File

@ -19,7 +19,7 @@ function register(options) {
let index = -1
while (++index < extnames.length) {
// eslint-disable-next-line node/no-deprecated-api
// eslint-disable-next-line n/no-deprecated-api
require.extensions[extnames[index]] = mdx
}