Skip to content

Commit

Permalink
chore: update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
shiyiya committed Mar 4, 2024
1 parent b6f152e commit 8218028
Show file tree
Hide file tree
Showing 10 changed files with 539 additions and 1,636 deletions.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,18 +31,18 @@
"lint": "prettier -w ./packages/*/**/*.ts"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/core": "^7.24.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-destructuring": "^7.23.3",
"@babel/plugin-transform-logical-assignment-operators": "^7.23.4",
"@babel/plugin-transform-nullish-coalescing-operator": "^7.23.4",
"@babel/plugin-transform-object-rest-spread": "^7.23.4",
"@babel/plugin-transform-object-rest-spread": "^7.24.0",
"@babel/plugin-transform-parameters": "^7.23.3",
"@babel/plugin-transform-spread": "^7.23.3",
"@babel/plugin-transform-template-literals": "^7.23.3",
"@changesets/cli": "^2.27.1",
"@rollup/plugin-babel": "^6.0.4",
"@types/node": "^18.19.14",
"@types/node": "^18.19.21",
"@vitejs/plugin-react": "^4.2.1",
"babel-plugin-syntax-trailing-function-commas": "^6.22.0",
"concurrently": "^8.2.2",
Expand All @@ -52,7 +52,7 @@
"nx": "^16.10.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.5",
"terser": "^5.27.0",
"terser": "^5.28.1",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"vite": "^4.5.2",
Expand All @@ -61,7 +61,7 @@
},
"pnpm": {
"patchedDependencies": {
"nextra@2.13.3": "patches/nextra@2.13.3.patch"
"nextra@2.13.4": "patches/nextra@2.13.4.patch"
}
}
}
2 changes: 1 addition & 1 deletion packages/dash/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@
},
"devDependencies": {
"@oplayer/core": "workspace:*",
"dashjs": "^4.7.3"
"dashjs": "^4.7.4"
}
}
8 changes: 4 additions & 4 deletions packages/docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,14 @@
"@oplayer/ui": "workspace:*",
"mdx-embed": "^1.1.2",
"next": "^13.5.6",
"nextra": "^2.13.3",
"nextra-theme-docs": "^2.13.3",
"nextra": "^2.13.4",
"nextra-theme-docs": "^2.13.4",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.2.55",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"sass": "^1.70.0"
"sass": "^1.71.1"
}
}
2 changes: 1 addition & 1 deletion packages/hls/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@
},
"devDependencies": {
"@oplayer/core": "workspace:*",
"hls.js": "^1.5.4"
"hls.js": "^1.5.7"
}
}
2 changes: 1 addition & 1 deletion packages/plugins/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"devDependencies": {
"@oplayer/core": "workspace:*",
"@oplayer/ui": "workspace:*",
"@types/chromecast-caf-sender": "^1.0.8",
"@types/chromecast-caf-sender": "^1.0.9",
"chokidar": "^3.6.0",
"glob": "^10.3.10",
"m3u8-parser": "^7.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
},
"devDependencies": {
"@oplayer/core": "workspace:*",
"@types/react": "^18.2.55",
"@types/react": "^18.2.61",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/torrent/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@
},
"devDependencies": {
"@oplayer/core": "workspace:*",
"webtorrent": "^2.1.35"
"webtorrent": "^2.1.36"
}
}
38 changes: 0 additions & 38 deletions patches/nextra@2.13.3.patch

This file was deleted.

12 changes: 12 additions & 0 deletions patches/nextra@2.13.4.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
diff --git a/dist/mdx-plugins/remark-replace-imports.mjs b/dist/mdx-plugins/remark-replace-imports.mjs
index 2d1bd6cf632116dd71c2f38d627b5d5248e3f4be..5244bad5770a40cb0eded70088ac20a5117d4104 100644
--- a/dist/mdx-plugins/remark-replace-imports.mjs
+++ b/dist/mdx-plugins/remark-replace-imports.mjs
@@ -6,6 +6,7 @@ var remarkReplaceImports = () => {
return (tree, _file, done) => {
visit(tree, "mdxjsEsm", (node) => {
const { source } = node.data.estree.body[0];
+ if (!source) return;
const absolutePath = require2.resolve(source.value);
source.value = absolutePath;
source.raw = `"${absolutePath}"`;
Loading

0 comments on commit 8218028

Please sign in to comment.