Skip to content

Commit 53eb6db

Browse files
committed
Fix build
1 parent d95d844 commit 53eb6db

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.npmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
legacy-peer-deps=true

package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
},
2626
"dependencies": {
2727
"@babel/runtime-corejs3": "^7.21.0",
28-
"core-js": "^3.30.0",
28+
"core-js": "^3.30.1",
2929
"format-duration": "^3.0.2",
3030
"nanoid": "^4.0.2",
3131
"unfetch": "^5.0.0",
@@ -54,15 +54,15 @@
5454
"eslint-plugin-import": "^2.27.5",
5555
"eslint-plugin-promise": "^6.1.1",
5656
"eslint-plugin-react": "^7.32.2",
57-
"eslint-plugin-vue": "^9.10.0",
57+
"eslint-plugin-vue": "^9.11.0",
5858
"file-loader": "^6.2.0",
5959
"html-loader": "^4.2.0",
6060
"html-webpack-plugin": "^5.5.0",
6161
"http-server": "^14.1.1",
6262
"less": "^4.1.3",
6363
"less-loader": "^11.1.0",
6464
"mini-css-extract-plugin": "^2.7.5",
65-
"npm-check-updates": "^16.10.7",
65+
"npm-check-updates": "^16.10.8",
6666
"puppeteer": "^19.8.5",
6767
"stylelint": "^15.4.0",
6868
"stylelint-config-standard": "32.0.0",
@@ -76,14 +76,14 @@
7676
"stylelint-selector-tag-no-without-class": "^2.0.5",
7777
"svgo": "^3.0.2",
7878
"vue-eslint-parser": "^9.1.1",
79-
"vue-loader": "^16.8.3",
79+
"vue-loader": "^15.10.1",
8080
"vue-template-compiler": "^2.7.14",
8181
"webfonts-loader": "^8.0.1",
82-
"webpack": "^5.78.0",
82+
"webpack": "^5.79.0",
8383
"webpack-bundle-analyzer": "^4.8.0",
8484
"webpack-cli": "^5.0.1",
85-
"webpack-dev-server": "^4.13.2",
86-
"webpack-pwa-manifest": "^4.3.0",
85+
"webpack-dev-server": "^4.13.3",
86+
"webpack-pwa-manifest": "^4.0.0",
8787
"workbox-webpack-plugin": "^6.5.4"
8888
}
8989
}

src/api/utils/fetch.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
import unfetch from 'unfetch';
1+
import 'unfetch/polyfill';
22
import Yaku from 'yaku/lib/yaku.aplus';
33

4-
const fetch = window.fetch || unfetch;
54
window.Promise = window.Promise || Yaku;
65

76
export default fetch;

0 commit comments

Comments
 (0)