dependencies: update

This commit is contained in:
Philipp Kühn
2021-12-02 21:06:13 +01:00
parent 90b0929672
commit f7257a5119
20 changed files with 500 additions and 489 deletions

View File

@@ -12,23 +12,23 @@
"d3": "^7.1.1",
"fast-glob": "^3.2.7",
"remixicon": "^2.5.0",
"shiki": "^0.9.12",
"shiki": "^0.9.13",
"simplify-js": "^1.2.4",
"y-webrtc": "^10.2.2",
"yjs": "^13.5.21"
"yjs": "^13.5.22"
},
"devDependencies": {
"@types/uuid": "^8.3.1",
"@types/uuid": "^8.3.3",
"@vitejs/plugin-react-refresh": "^1.3.6",
"@vitejs/plugin-vue": "^1.9.4",
"@vitejs/plugin-vue": "^1.10.1",
"autoprefixer": "^10.4.0",
"iframe-resizer": "^4.3.2",
"postcss": "^8.3.11",
"postcss": "^8.4.4",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"sass": "^1.43.4",
"sass": "^1.44.0",
"tailwindcss": "^2.2.19",
"typescript": "^4.4.4",
"typescript": "^4.5.2",
"uuid": "^8.3.2",
"vite": "^2.6.14",
"vite-plugin-checker": "^0.3.4",

View File

@@ -6,8 +6,8 @@
<script>
import Worker from './shiki.worker?worker'
// this import is a bugfix
// otherwise the `onigasm.wasm` file is missing in the dist folder
import 'shiki/dist/onigasm.wasm?url'
// otherwise the `onig.wasm` file is missing in the dist folder
import 'shiki/dist/onig.wasm?url'
export default {
props: {

View File

@@ -1,5 +1,5 @@
import * as shiki from 'shiki'
import onigasm from 'shiki/dist/onigasm.wasm?url'
import onigasm from 'shiki/dist/onig.wasm?url'
import theme from 'shiki/themes/material-darker.json'
import langHTML from 'shiki/languages/html.tmLanguage.json'
import langJS from 'shiki/languages/javascript.tmLanguage.json'