Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Linyuxin #1

Closed
wants to merge 15 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion .eslintrc.js
Expand Up @@ -10,7 +10,10 @@ module.exports = {
rules: {
'no-console': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off',
'no-param-reassign': 'off'
'no-param-reassign': 'off',
'linebreak-style': 0,
'max-len': 'off',

},
parserOptions: {
parser: 'babel-eslint',
Expand Down
175 changes: 115 additions & 60 deletions package-lock.json

Large diffs are not rendered by default.

6 changes: 5 additions & 1 deletion package.json
Expand Up @@ -5,18 +5,22 @@
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
"lint": "vue-cli-service lint",
"fix-memory-limit": "cross-env LIMIT=10240 increase-memory-limit"
},
"repository": {
"type": "git",
"url": "https://github.com/yc111/coronavirus-map.git"
},
"dependencies": {
"@mapbox/mapbox-gl-language": "^0.10.1",
"axios": "^0.19.2",
"copy-webpack-plugin": "^5.1.1",
"core-js": "^3.4.4",
"cross-env": "^7.0.0",
"echarts": "^4.6.0",
"element-ui": "^2.13.0",
"leaflet": "^1.6.0",
"lodash": "^4.17.15",
"mapbox-gl": "^1.7.0",
"vue": "^2.6.10",
Expand Down