Skip to content

Commit 5868a85

Browse files
authoredFeb 9, 2023
Npm updates and cleanup (#8)
* NPM Updates. Remove terser config as vite uses esbuild to minify. * Bump version number
1 parent dcb3924 commit 5868a85

File tree

3 files changed

+3899
-1409
lines changed

3 files changed

+3899
-1409
lines changed
 

‎package-lock.json

+3,877-1,384
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+22-22
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "faceit-elo-calc",
33
"displayName": "Faceit Elo Calculator",
4-
"version": "0.2.8",
4+
"version": "0.2.9",
55
"description": "Show Elo Gain/Loss for Faceit Matches",
66
"private": true,
77
"scripts": {
@@ -21,36 +21,36 @@
2121
"lint": "eslint '{src,scripts}/**/*.{json,ts,js,vue}'"
2222
},
2323
"devDependencies": {
24-
"@antfu/eslint-config": "^0.26.1",
25-
"@ffflorian/jszip-cli": "^3.1.6",
26-
"@types/fs-extra": "^9.0.13",
27-
"@types/node": "^18.7.6",
28-
"@types/webextension-polyfill": "^0.9.0",
29-
"@typescript-eslint/eslint-plugin": "^5.19.0",
30-
"@vitejs/plugin-vue": "^3.0.3",
24+
"@antfu/eslint-config": "^0.35.2",
25+
"@ffflorian/jszip-cli": "^3.1.9",
26+
"@types/fs-extra": "^11.0.1",
27+
"@types/node": "^18.13.0",
28+
"@types/webextension-polyfill": "^0.10.0",
29+
"@typescript-eslint/eslint-plugin": "^5.51.0",
30+
"@vitejs/plugin-vue": "^4.0.0",
3131
"@vue/compiler-sfc": "^3.2.33",
32-
"@vueuse/core": "^9.1.0",
32+
"@vueuse/core": "^9.12.0",
3333
"cross-env": "^7.0.3",
3434
"dotenv": "^16.0.1",
35-
"eslint": "^8.22.0",
35+
"eslint": "^8.33.0",
3636
"esno": "^0.16.3",
37-
"fs-extra": "^10.0.1",
38-
"kolorist": "^1.5.1",
37+
"fs-extra": "^11.1.0",
38+
"kolorist": "^1.7.0",
3939
"npm-run-all": "^4.1.5",
40-
"rimraf": "^3.0.2",
41-
"sass": "1.54.4",
42-
"typescript": "^4.6.3",
43-
"unplugin-auto-import": "^0.11.2",
44-
"unplugin-vue-components": "^0.22.4",
45-
"vite": "^3.0.9",
46-
"vue": "^3.2.33",
40+
"rimraf": "^4.1.2",
41+
"sass": "1.58.0",
42+
"typescript": "^4.9.5",
43+
"unplugin-auto-import": "^0.14.2",
44+
"unplugin-vue-components": "^0.23.0",
45+
"vite": "^4.1.1",
46+
"vue": "^3.2.47",
4747
"vue-demi": "^0.13.8",
4848
"webextension-polyfill": "^0.10.0"
4949
},
5050
"dependencies": {
51-
"echarts": "^5.3.3",
51+
"echarts": "^5.4.1",
5252
"vite-plugin-package-version": "^1.0.2",
53-
"vue-echarts": "^6.2.3",
54-
"vue-material-design-icons": "^5.1.2"
53+
"vue-echarts": "^6.5.4",
54+
"vue-material-design-icons": "^5.2.0"
5555
}
5656
}

‎vite.config.ts

-3
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,6 @@ export default defineConfig(({ command }) => ({
8282
emptyOutDir: false,
8383
sourcemap: isDev ? 'inline' : false,
8484
// https://developer.chrome.com/docs/webstore/program_policies/#:~:text=Code%20Readability%20Requirements
85-
terserOptions: {
86-
mangle: false,
87-
},
8885
rollupOptions: {
8986
input: {
9087
popup: r('src/popup/index.html'),

0 commit comments

Comments
 (0)
Please sign in to comment.