Skip to content

Commit 2165ce9

Browse files
committed
feat: upgrade deps (including linting)
1 parent 9e25d5d commit 2165ce9

31 files changed

Lines changed: 587 additions & 426 deletions

File tree

app-vite/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,14 +124,14 @@
124124
"kolorist": "^1.8.0",
125125
"mlly": "^1.8.2",
126126
"open": "^11.0.0",
127-
"rolldown": "^1.1.4",
127+
"rolldown": "^1.1.5",
128128
"sass-embedded": "^1.100.0",
129129
"semver": "^7.8.5",
130130
"serialize-javascript": "^7.0.7",
131131
"serve-static": "^2.2.1",
132132
"tinyglobby": "^0.2.17",
133133
"ts-essentials": "^10.2.0",
134-
"vite": "^8.1.3",
134+
"vite": "^8.1.4",
135135
"webpack-merge": "^6.0.1"
136136
},
137137
"devDependencies": {

cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"ci-info": "^4.4.0",
5050
"cross-spawn": "^7.0.6",
5151
"fs-extra": "^11.3.6",
52-
"hono": "^4.12.27",
52+
"hono": "^4.12.28",
5353
"kolorist": "^1.8.0",
5454
"open": "^11.0.0",
5555
"update-notifier": "^7.3.1"

docs/src/layouts/doc-layout/store/inject-scroll.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export default function injectScroll(store) {
1414
(newRoute, oldRoute) => {
1515
setTimeout(() => {
1616
scrollToCurrentAnchor(newRoute.path !== oldRoute.path)
17-
})
17+
}, 0)
1818
}
1919
)
2020

@@ -95,7 +95,7 @@ export default function injectScroll(store) {
9595
onMounted(() => {
9696
setTimeout(() => {
9797
scrollToCurrentAnchor(true)
98-
})
98+
}, 0)
9999
})
100100

101101
onBeforeUnmount(() => {

docs/src/pages/app-extensions/discover.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Below is a list of official app-extensions created by members of the Quasar team
3030
| [@quasar/qflashcard](https://github.com/quasarframework/app-extension-qflashcard) | Show some information and reveal more with CSS Transition Mashups |
3131
| [@quasar/qoverlay](https://github.com/quasarframework/app-extension-qoverlay) | Overlays simplified. Add any component on top of the overlay |
3232
| [@quasar/qactivity](https://github.com/quasarframework/app-extension-qactivity) | Create activity timelines |
33-
| [@quasar/qmarkdown](https://github.com/quasarframework/quasar-ui-qmarkdown) | Markdown for your pages |
33+
| [@quasar/qmarkdown](https://github.com/quasarframework/quasar-ui-qmarkdown) | Markdown for your pages |
3434
| [@quasar/qpdfviewer](https://github.com/quasarframework/app-extension-qpdfviewer/tree/next) | View PDF documents in your Quasar app |
3535
| [@quasar/qcalendar](https://github.com/quasarframework/quasar-ui-qcalendar) | Calendar for Quasar |
3636
| [@quasar/qscroller](https://github.com/quasarframework/app-extension-qscroller) | Many scrolling components, including QScroller, QTimeScroller, QDateScroller, QDateTimeScroller and scrolling time ranges |

docs/src/pages/options/rtl-support.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,7 @@ import rtlcss from 'postcss-rtlcss'
6868

6969
export default {
7070
plugins: [
71-
rtlcss({
72-
/* opts */
73-
}) // <<<< in "plugins"
71+
rtlcss({/* opts */}) // <<<< in "plugins"
7472
]
7573
}
7674
```

docs/src/pages/quasar-cli-vite/boot-files.md

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -128,17 +128,11 @@ You can also return a Promise:
128128
```js
129129
// import something here
130130

131-
export default defineBoot(
132-
(
133-
{
134-
/* app, router, store */
135-
}
136-
) => {
137-
return new Promise((resolve, reject) => {
138-
// do something
139-
})
140-
}
141-
)
131+
export default defineBoot(({/* app, router, store */}) => {
132+
return new Promise((resolve, reject) => {
133+
// do something
134+
})
135+
})
142136
```
143137

144138
::: tip

docs/src/pages/quasar-cli-vite/developing-browser-extensions/bex-bridge.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -226,9 +226,7 @@ bridge.send({
226226
event: 'some.event',
227227
to: 'background',
228228
payload: {
229-
myArray: [
230-
/*...*/
231-
]
229+
myArray: [/*...*/]
232230
}
233231
})
234232
```

docs/src/pages/quasar-cli-vite/handling-vite.md

Lines changed: 10 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -72,19 +72,8 @@ Make sure to pnpm/yarn/npm/bun install the vite plugin package that you want to
7272
build: {
7373
vitePlugins: [
7474
// both are perfectly equivalent:
75-
[
76-
'<plugin-name>',
77-
{
78-
/* plugin options */
79-
}
80-
],
81-
[
82-
'<plugin-name>',
83-
{
84-
/* plugin options */
85-
},
86-
{ server: true, client: true }
87-
]
75+
['<plugin-name>', {/* plugin options */}],
76+
['<plugin-name>', {/* plugin options */}, { server: true, client: true }]
8877
]
8978
}
9079
```
@@ -95,22 +84,10 @@ You can disable a plugin on the client-side or the server-side, which is especia
9584
build: {
9685
vitePlugins: [
9786
// disable on the server-side:
98-
[
99-
'<plugin-name>',
100-
{
101-
/* plugin options */
102-
},
103-
{ server: false }
104-
],
87+
['<plugin-name>', {/* plugin options */}, { server: false }],
10588

10689
// disable on the client-side:
107-
[
108-
'<plugin-name>',
109-
{
110-
/* plugin options */
111-
},
112-
{ client: false }
113-
]
90+
['<plugin-name>', {/* plugin options */}, { client: false }]
11491
]
11592
}
11693
```
@@ -119,20 +96,8 @@ There are multiple syntaxes supported:
11996

12097
```js /quasar.config file
12198
vitePlugins: [
122-
[
123-
'<plugin1-name>',
124-
{
125-
/* plugin1 options */
126-
},
127-
{ server: true, client: true }
128-
],
129-
[
130-
'<plugin2-name>',
131-
{
132-
/* plugin2 options */
133-
},
134-
{ server: true, client: true }
135-
]
99+
['<plugin1-name>', {/* plugin1 options */}, { server: true, client: true }],
100+
['<plugin2-name>', {/* plugin2 options */}, { server: true, client: true }]
136101
// ...
137102
]
138103

@@ -141,20 +106,8 @@ import plugin1 from 'plugin1'
141106
import plugin2 from 'plugin2'
142107

143108
vitePlugins: [
144-
[
145-
plugin1,
146-
{
147-
/* plugin1 options */
148-
},
149-
{ server: true, client: true }
150-
],
151-
[
152-
plugin2,
153-
{
154-
/* plugin2 options */
155-
},
156-
{ server: true, client: true }
157-
]
109+
[plugin1, {/* plugin1 options */}, { server: true, client: true }],
110+
[plugin2, {/* plugin2 options */}, { server: true, client: true }]
158111
// ...
159112
]
160113

@@ -166,12 +119,8 @@ import plugin1 from 'plugin1'
166119
import plugin2 from 'plugin2'
167120

168121
vitePlugins: [
169-
plugin1({
170-
/* plugin1 options */
171-
}),
172-
plugin2({
173-
/* plugin2 options */
174-
})
122+
plugin1({/* plugin1 options */}),
123+
plugin2({/* plugin2 options */})
175124
// ...
176125
]
177126
```

docs/src/pages/quasar-cli-vite/prefetch-feature.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -324,11 +324,7 @@ There's also the possibility to use Quasar [Loading](/quasar-plugins/loading) pl
324324
import { Loading } from 'quasar'
325325

326326
defineOptions({
327-
preFetch(
328-
{
329-
/* ... */
330-
}
331-
) {
327+
preFetch({/* ... */}) {
332328
Loading.show()
333329

334330
return new Promise(resolve => {

docs/src/pages/quasar-utils/other-utils.md

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -335,12 +335,7 @@ When configuring threadsNumber (`opts > threadsNumber`) AND using http requests,
335335
```js
336336
import { runSequentialPromises } from 'quasar'
337337

338-
runSequentialPromises(
339-
[
340-
/* ... */
341-
],
342-
{ threadsNumber: 3 }
343-
)
338+
runSequentialPromises([/* ... */], { threadsNumber: 3 })
344339
.then(resultAggregator => {
345340
resultAggregator.forEach(result => {
346341
console.log(result.value)

0 commit comments

Comments
 (0)