Skip to content

Commit fb9ebc8

Browse files
committed
feat(builds): now using bili.js & standard-version
1 parent 6d547e0 commit fb9ebc8

39 files changed

+7993
-11092
lines changed

.browserslistrc

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
> 1%
2+
last 2 versions

.editorconfig

-12
This file was deleted.

.eslintignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/dist
2+
/node_modules

.eslintrc.js

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
module.exports = {
2+
root: true,
3+
env: {
4+
node: true
5+
},
6+
extends: ["plugin:vue/recommended", "plugin:vue/essential", "@vue/prettier"],
7+
rules: {
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"
13+
}
14+
};
15+
16+
// "plugin:vue/recommended",
17+
// "eslint:recommended",
18+
// "prettier/vue",
19+
// "plugin:prettier/recommended"

.gitignore

100755100644
+20-14
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,25 @@
1-
.idea/
2-
node_modules/
3-
demo/
4-
.npmignore
51
.DS_Store
6-
npm-debug.log
2+
node_modules
3+
# /dist
74

8-
*.log
9-
**/**/.DS_Store
5+
# local env files
6+
.env.local
7+
.env.*.local
108

11-
# produced by vbuild
12-
dist
13-
dist-example
9+
# Log files
10+
npm-debug.log*
11+
yarn-debug.log*
12+
yarn-error.log*
1413

15-
dev/cloudinary.vue
16-
dev/Backup-App.vue
17-
NOTES.md
14+
# Editor directories and files
15+
.idea
16+
# .vscode
17+
*.suo
18+
*.ntvs*
19+
*.njsproj
20+
*.sln
21+
*.sw?
1822

19-
.BACKUP
23+
# Backups
24+
# .BACKUP
25+
.STORAGE

.release-it.json

-14
This file was deleted.

.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"vetur.validation.template": false
3+
}

0 commit comments

Comments
 (0)