From bcce567bb36f7c96d4a092a78c38084df05da963 Mon Sep 17 00:00:00 2001 From: Frederico Ferreira Date: Wed, 26 Jun 2024 09:18:24 -0300 Subject: [PATCH 1/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f711b518..f043636a 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ Navigate to [http://localhost:3000](http://localhost:3000). The app will automat #### Build -Run `build` to build the project. The build artifacts will be stored in the `build/` directory. +Run `build` to build the project. The build artifacts will be stored in the `dist/` directory. ```bash # build for production with minification From 6f102dc60efc8994dd70a50759bb2aa8a52d8556 Mon Sep 17 00:00:00 2001 From: mrholek Date: Wed, 25 Sep 2024 12:20:39 +0200 Subject: [PATCH 2/4] chore: update dependencies and devDependencies MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit @coreui/coreui ^5.0.2 → ^5.1.2 @coreui/icons-vue 2.0.0 → 2.2.0 @coreui/vue ^5.1.0 → ^5.4.0 @vitejs/plugin-vue ^5.0.5 → ^5.1.4 autoprefixer ^10.4.19 → ^10.4.20 chart.js ^4.4.3 → ^4.4.4 eslint ^8.57.0 → ^9.11.1 eslint-plugin-vue ^9.26.0 → ^9.28.0 pinia ^2.1.7 → ^2.2.2 postcss ^8.4.38 → ^8.4.47 sass ^1.77.5 → ^1.79.3 vite ^5.3.1 → ^5.4.8 vue ^3.4.28 → ^3.5.8 vue-router ^4.3.3 → ^4.4.5 --- package.json | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/package.json b/package.json index de0bf194..0d3467ae 100644 --- a/package.json +++ b/package.json @@ -19,26 +19,26 @@ }, "dependencies": { "@coreui/chartjs": "^4.0.0", - "@coreui/coreui": "^5.0.2", + "@coreui/coreui": "^5.1.2", "@coreui/icons": "^3.0.1", - "@coreui/icons-vue": "2.0.0", + "@coreui/icons-vue": "2.2.0", "@coreui/utils": "^2.0.2", - "@coreui/vue": "^5.1.0", + "@coreui/vue": "^5.4.0", "@coreui/vue-chartjs": "^3.0.0", "@popperjs/core": "^2.11.8", - "chart.js": "^4.4.3", - "pinia": "^2.1.7", + "chart.js": "^4.4.4", + "pinia": "^2.2.2", "simplebar-vue": "^2.3.5", - "vue": "^3.4.28", - "vue-router": "^4.3.3" + "vue": "^3.5.8", + "vue-router": "^4.4.5" }, "devDependencies": { - "@vitejs/plugin-vue": "^5.0.5", - "autoprefixer": "^10.4.19", + "@vitejs/plugin-vue": "^5.1.4", + "autoprefixer": "^10.4.20", "eslint": "^8.57.0", - "eslint-plugin-vue": "^9.26.0", - "postcss": "^8.4.38", - "sass": "^1.77.5", - "vite": "^5.3.1" + "eslint-plugin-vue": "^9.28.0", + "postcss": "^8.4.47", + "sass": "^1.79.3", + "vite": "^5.4.8" } } From 444716362d943341f06e19fd32ac35af770f4950 Mon Sep 17 00:00:00 2001 From: mrholek Date: Wed, 25 Sep 2024 12:21:40 +0200 Subject: [PATCH 3/4] build: silence Sass deprecation warnings --- vite.config.mjs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/vite.config.mjs b/vite.config.mjs index 7195c8b7..9c289e45 100644 --- a/vite.config.mjs +++ b/vite.config.mjs @@ -13,6 +13,11 @@ export default defineConfig(() => { autoprefixer({}), // add options if needed ], }, + preprocessorOptions: { + scss: { + quietDeps: true, + }, + }, }, resolve: { alias: [ From 820059a98c0f17a642190f9023a53877b9d664bd Mon Sep 17 00:00:00 2001 From: mrholek Date: Wed, 25 Sep 2024 12:25:51 +0200 Subject: [PATCH 4/4] release: v5.2.0 --- index.html | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index 5cb553c6..6981e6fa 100644 --- a/index.html +++ b/index.html @@ -1,7 +1,7 @@