Skip to content

Commit

Permalink
feat(builds): now using bili.js & standard-version
Browse files Browse the repository at this point in the history
  • Loading branch information
davidroyer committed May 14, 2019
1 parent 6d547e0 commit fb9ebc8
Show file tree
Hide file tree
Showing 39 changed files with 7,993 additions and 11,092 deletions.
2 changes: 2 additions & 0 deletions .browserslistrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
> 1%
last 2 versions
12 changes: 0 additions & 12 deletions .editorconfig

This file was deleted.

2 changes: 2 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/dist
/node_modules
19 changes: 19 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
module.exports = {
root: true,
env: {
node: true
},
extends: ["plugin:vue/recommended", "plugin:vue/essential", "@vue/prettier"],
rules: {
"no-console": process.env.NODE_ENV === "production" ? "error" : "off",
"no-debugger": process.env.NODE_ENV === "production" ? "error" : "off"
},
parserOptions: {
parser: "babel-eslint"
}
};

// "plugin:vue/recommended",
// "eslint:recommended",
// "prettier/vue",
// "plugin:prettier/recommended"
34 changes: 20 additions & 14 deletions .gitignore
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,19 +1,25 @@
.idea/
node_modules/
demo/
.npmignore
.DS_Store
npm-debug.log
node_modules
# /dist

*.log
**/**/.DS_Store
# local env files
.env.local
.env.*.local

# produced by vbuild
dist
dist-example
# Log files
npm-debug.log*
yarn-debug.log*
yarn-error.log*

dev/cloudinary.vue
dev/Backup-App.vue
NOTES.md
# Editor directories and files
.idea
# .vscode
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

.BACKUP
# Backups
# .BACKUP
.STORAGE
14 changes: 0 additions & 14 deletions .release-it.json

This file was deleted.

3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"vetur.validation.template": false
}

0 comments on commit fb9ebc8

Please sign in to comment.