Skip to content

Commit 9722f69

Browse files
committed
chore: upgrade with right version
1 parent 5d9633c commit 9722f69

Some content is hidden

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

92 files changed

+4522
-4239
lines changed

.babelrc

-18
This file was deleted.

.browserslistrc

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
> 1%
2+
last 2 versions
3+
not ie <= 8

.eslintignore

-5
This file was deleted.

.eslintrc.js

+8-23
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,14 @@
1-
// https://eslint.org/docs/user-guide/configuring
2-
31
module.exports = {
42
root: true,
5-
parserOptions: {
6-
parser: 'babel-eslint'
7-
},
83
env: {
9-
browser: true,
4+
node: true
105
},
11-
extends: [
12-
// https://github.com/vuejs/eslint-plugin-vue#priority-a-essential-error-prevention
13-
// consider switching to `plugin:vue/strongly-recommended` or `plugin:vue/recommended` for stricter rules.
14-
'plugin:vue/essential',
15-
// https://github.com/standard/standard/blob/master/docs/RULES-en.md
16-
'standard'
17-
],
18-
// required to lint *.vue files
19-
plugins: [
20-
'vue'
21-
],
22-
// add your custom rules here
6+
extends: ["plugin:vue/essential", "@vue/prettier"],
237
rules: {
24-
// allow async-await
25-
'generator-star-spacing': 'off',
26-
// allow debugger during development
27-
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
8+
"no-console": process.env.NODE_ENV === "production" ? "error" : "off",
9+
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off"
10+
},
11+
parserOptions: {
12+
parser: "babel-eslint"
2813
}
29-
}
14+
};

.gitignore

+9-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
.DS_Store
2-
node_modules/
3-
/dist/
2+
node_modules
3+
/dist
4+
5+
# local env files
6+
.env.local
7+
.env.*.local
8+
9+
# Log files
410
npm-debug.log*
511
yarn-debug.log*
612
yarn-error.log*
7-
/test/unit/coverage/
8-
/test/e2e/reports/
9-
selenium-debug.log
1013

1114
# Editor directories and files
1215
.idea
@@ -15,3 +18,4 @@ selenium-debug.log
1518
*.ntvs*
1619
*.njsproj
1720
*.sln
21+
*.sw*

.postcssrc.js

-10
This file was deleted.

babel.config.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
presets: ["@vue/app"]
3+
};

build/build.js

-41
This file was deleted.

build/check-versions.js

-54
This file was deleted.

build/logo.png

-6.69 KB
Binary file not shown.

build/utils.js

-101
This file was deleted.

build/vue-loader.conf.js

-22
This file was deleted.

0 commit comments

Comments
 (0)