Skip to content

Commit 743f4ea

Browse files
committed
feat: upgrade to latest; switch to q/app-vite
1 parent 449bc64 commit 743f4ea

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+342
-522
lines changed

babel.config.js

Lines changed: 0 additions & 5 deletions
This file was deleted.

src/index.template.html renamed to index.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
<link rel="icon" type="image/ico" href="favicon.ico">
1717
</head>
1818
<body>
19-
<!-- DO NOT touch the following DIV -->
20-
<div id="q-app"></div>
19+
<!-- quasar:entry-point -->
2120
</body>
2221
</html>

jsconfig.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323
"boot/*": [
2424
"src/boot/*"
2525
],
26+
"stores/*": [
27+
"src/stores/*"
28+
],
2629
"vue$": [
2730
"node_modules/vue/dist/vue.runtime.esm-bundler.js"
2831
]
@@ -33,4 +36,4 @@
3336
".quasar",
3437
"node_modules"
3538
]
36-
}
39+
}

package.json

Lines changed: 8 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,34 +4,24 @@
44
"description": "A Quasar Framework app",
55
"productName": "Quasar App",
66
"author": "[email protected]",
7+
"type": "module",
78
"private": true,
89
"scripts": {
910
"start": "quasar dev",
1011
"post-update": "yarn upgrade",
1112
"test": "echo \"No test specified\" && exit 0"
1213
},
1314
"dependencies": {
14-
"@quasar/extras": "^1.11.4",
15-
"core-js": "^3.19.1",
16-
"quasar": "^2.2.2",
17-
"vue": "^3.0.0",
18-
"vue-router": "^4.0.0",
19-
"vuex": "^4.0.2"
15+
"@quasar/extras": "^1.16.4",
16+
"quasar": "^2.16.0",
17+
"vue": "^3.4.18",
18+
"vue-router": "^4.0.0"
2019
},
2120
"devDependencies": {
22-
"@quasar/app": "^3.1.0"
21+
"@quasar/app-vite": "^2.0.0-beta.12",
22+
"autoprefixer": "^10.4.2",
23+
"postcss": "^8.4.14"
2324
},
24-
"browserslist": [
25-
"last 10 Chrome versions",
26-
"last 10 Firefox versions",
27-
"last 4 Edge versions",
28-
"last 7 Safari versions",
29-
"last 8 Android versions",
30-
"last 8 ChromeAndroid versions",
31-
"last 8 FirefoxAndroid versions",
32-
"last 10 iOS versions",
33-
"last 5 Opera versions"
34-
],
3525
"engines": {
3626
"node": ">= 12.22.1",
3727
"npm": ">= 6.13.4",

postcss.config.js

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
/* eslint-disable */
2+
// https://github.com/michael-ciniawsky/postcss-load-config
3+
4+
import autoprefixer from 'autoprefixer'
5+
// import rtlcss from 'postcss-rtlcss'
6+
7+
export default {
8+
plugins: [
9+
// https://github.com/postcss/autoprefixer
10+
autoprefixer({
11+
overrideBrowserslist: [
12+
'last 4 Chrome versions',
13+
'last 4 Firefox versions',
14+
'last 4 Edge versions',
15+
'last 4 Safari versions',
16+
'last 4 Android versions',
17+
'last 4 ChromeAndroid versions',
18+
'last 4 FirefoxAndroid versions',
19+
'last 4 iOS versions'
20+
]
21+
}),
22+
23+
// https://github.com/elchininet/postcss-rtlcss
24+
// If you want to support RTL css, then
25+
// 1. yarn/pnpm/bun/npm install postcss-rtlcss
26+
// 2. optionally set quasar.config.js > framework > lang to an RTL language
27+
// 3. uncomment the following line (and its import statement above):
28+
// rtlcss()
29+
]
30+
}

public/icons/apple-icon-120x120.png

-4.33 KB
Binary file not shown.

public/icons/apple-icon-152x152.png

-5.1 KB
Binary file not shown.

public/icons/apple-icon-167x167.png

-6.21 KB
Binary file not shown.

public/icons/apple-icon-180x180.png

-6.26 KB
Binary file not shown.

public/icons/favicon-128x128.png

7.58 KB
Loading

0 commit comments

Comments
 (0)