Skip to content

Commit

Permalink
Merge branch 'main' of github.com:nuxt/learn.nuxt.com
Browse files Browse the repository at this point in the history
ubugeeei committed May 25, 2024
2 parents 6c1d16f + ab48ec1 commit 77f8cb4
Showing 6 changed files with 13,196 additions and 10,216 deletions.
5 changes: 4 additions & 1 deletion components/PanelTerminalClient.client.vue
Original file line number Diff line number Diff line change
@@ -65,8 +65,10 @@ watch(
const reader = p.output.getReader()
function read() {
reader.read().then(({ done, value }) => {
if (value)
if (value) {
terminal.write(value)
terminal.scrollToBottom()
}
if (!done)
read()
})
@@ -78,6 +80,7 @@ watch(
terminal.writeln('')
terminal.writeln(`-------------`)
terminal.writeln('')
terminal.scrollToBottom()
}
read()
2 changes: 1 addition & 1 deletion content/2.concepts/4.auto-imports/index.md
Original file line number Diff line number Diff line change
@@ -2,4 +2,4 @@
ogImage: true
---

# Components
# Auto Imports
44 changes: 22 additions & 22 deletions package.json
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@
"name": "learn.nuxt.com",
"type": "module",
"private": true,
"packageManager": "pnpm@8.15.6",
"packageManager": "pnpm@9.1.1",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev",
@@ -14,8 +14,8 @@
"format": "eslint . --fix"
},
"dependencies": {
"@shikijs/core": "^1.2.4",
"@shikijs/monaco": "^1.2.4",
"@shikijs/core": "^1.5.2",
"@shikijs/monaco": "^1.5.2",
"@volar/monaco": "^1.11.1",
"@vue/language-service": "^1.8.27",
"@webcontainer/api": "^1.1.9",
@@ -24,45 +24,45 @@
"birpc": "^0.2.17",
"floating-vue": "^5.2.2",
"jszip": "^3.10.1",
"monaco-editor": "^0.47.0",
"monaco-editor": "^0.48.0",
"monaco-editor-textmate": "^4.0.0",
"monaco-textmate": "^3.0.1",
"onigasm": "^2.2.5",
"shiki": "^1.2.4",
"shiki": "^1.5.2",
"splitpanes": "^3.1.5",
"strip-json-comments": "^5.0.1",
"theme-vitesse": "^0.7.8",
"theme-vitesse": "^0.8.0",
"unified": "^11.0.4",
"vue": "^3.4.21",
"vue-router": "^4.3.0"
"vue": "^3.4.27",
"vue-router": "^4.3.2"
},
"devDependencies": {
"@antfu/eslint-config": "^2.13.0",
"@antfu/eslint-config": "^2.18.1",
"@iconify-json/logos": "^1.1.42",
"@iconify/json": "^2.2.198",
"@iconify/json": "^2.2.211",
"@nuxt/content": "^2.12.1",
"@nuxt/devtools": "^1.1.5",
"@nuxt/eslint": "^0.3.1",
"@nuxt/devtools": "^1.3.1",
"@nuxt/eslint": "^0.3.13",
"@nuxt/kit": "^3.11.2",
"@nuxtjs/color-mode": "^3.3.3",
"@nuxtjs/color-mode": "^3.4.1",
"@nuxtjs/seo": "2.0.0-rc.10",
"@pinia/nuxt": "^0.5.1",
"@unocss/eslint-plugin": "^0.59.0",
"@unocss/extractor-mdc": "^0.59.0",
"@unocss/nuxt": "^0.59.0",
"@unocss/eslint-plugin": "^0.60.2",
"@unocss/extractor-mdc": "^0.60.2",
"@unocss/nuxt": "^0.60.2",
"@vueuse/nuxt": "^10.9.0",
"eslint": "^9.0.0",
"eslint-plugin-format": "^0.1.0",
"execa": "^8.0.1",
"eslint": "^9.3.0",
"eslint-plugin-format": "^0.1.1",
"execa": "^9.1.0",
"fast-glob": "^3.3.2",
"fuse.js": "^7.0.0",
"monaco-editor-core": "^0.47.0",
"monaco-editor-core": "^0.48.0",
"nuxt": "^3.11.2",
"nuxt-icon": "^0.6.10",
"pathe": "^1.1.2",
"remark-external-links": "^9.0.1",
"typescript": "^5.4.4",
"vue-tsc": "^2.0.11"
"typescript": "^5.4.5",
"vue-tsc": "^2.0.19"
},
"pnpm": {
"patchedDependencies": {
Loading

0 comments on commit 77f8cb4

Please sign in to comment.