[core] Added vendor (always) required plugins

This commit is contained in:
Ferdinand Thiessen 2021-05-25 16:27:10 +02:00
parent 068dbdcc7b
commit fd918f5bb7
3 changed files with 5 additions and 3 deletions

View File

@ -12,7 +12,7 @@
},
"scripts": {
"format": "prettier --config ./package.json --write '{,!(node_modules)/**/}*.ts'",
"lint": "eslint --ext .js,.ts,.vue ./src"
"lint": "eslint --ext .js,.ts,.vue ./src ./api"
},
"dependencies": {
"@flaschengeist/api": "file:./api",

View File

@ -1,6 +1,6 @@
// You can add your plugins here
module.exports = [
/* '@flaschengeist/balances', */
'@flaschengeist/users',
/* '@flaschengeist/schedule', */
/* '@flaschengeist/pricelist', */
]

View File

@ -1 +1,3 @@
module.exports = []
module.exports = [
'@flaschengeist/users',
]