Compare commits

..

No commits in common. "ef5c8eec5bfbba80b3acc95afe236c8c57d7efea" and "c5de89d32b3dd4eef575c3c0735d4d1c13059254" have entirely different histories.

7 changed files with 54 additions and 80 deletions

View File

@ -17,11 +17,11 @@ module.exports = {
project: resolve(__dirname, './tsconfig.json'), project: resolve(__dirname, './tsconfig.json'),
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
ecmaVersion: 2019, // Allows for the parsing of modern ECMAScript features ecmaVersion: 2019, // Allows for the parsing of modern ECMAScript features
sourceType: 'module', // Allows for the use of imports sourceType: 'module' // Allows for the use of imports
}, },
env: { env: {
browser: true, browser: true
}, },
// Rules order is important, please avoid shuffling them // Rules order is important, please avoid shuffling them
@ -44,7 +44,7 @@ module.exports = {
// https://github.com/prettier/eslint-config-prettier#installation // https://github.com/prettier/eslint-config-prettier#installation
// usage with Prettier, provided by 'eslint-config-prettier'. // usage with Prettier, provided by 'eslint-config-prettier'.
'plugin:prettier/recommended', 'prettier', //'plugin:prettier/recommended'
], ],
plugins: [ plugins: [
@ -54,6 +54,10 @@ module.exports = {
// https://eslint.vuejs.org/user-guide/#why-doesn-t-it-work-on-vue-file // https://eslint.vuejs.org/user-guide/#why-doesn-t-it-work-on-vue-file
// required to lint *.vue files // required to lint *.vue files
'vue', 'vue',
// https://github.com/typescript-eslint/typescript-eslint/issues/389#issuecomment-509292674
// Prettier has not been included as plugin to avoid performance impact
// add it as an extension for your IDE
], ],
// add your custom rules here // add your custom rules here
@ -61,11 +65,11 @@ module.exports = {
'prefer-promise-reject-errors': 'off', 'prefer-promise-reject-errors': 'off',
// TypeScript // TypeScript
quotes: ['error', 'single', { avoidEscape: true }], quotes: ['warn', 'single', { avoidEscape: true }],
'@typescript-eslint/explicit-function-return-type': 'off', '@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off', '@typescript-eslint/explicit-module-boundary-types': 'off',
// allow debugger during development only // allow debugger during development only
'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off', 'no-debugger': process.env.NODE_ENV === 'production' ? 'error' : 'off'
}, }
}; }

1
.gitignore vendored
View File

@ -1,6 +1,5 @@
node_modules node_modules
yarn-error.log yarn-error.log
# No need for pinned dependencies, there are only peer dependencies
yarn.lock yarn.lock
.idea .idea

View File

@ -1,3 +0,0 @@
yarn-error.log
.woodpecker/

View File

@ -1,14 +0,0 @@
pipeline:
deploy:
when:
event: tag
tag: v*
image: node:lts-alpine
commands:
- echo "//registry.npmjs.org/:_authToken=$NODE_AUTH_TOKEN" > .npmrc
- yarn publish --non-interactive
secrets: [ node_auth_token ]
depends_on:
- lint

View File

@ -1,9 +0,0 @@
pipeline:
lint:
when:
branch: [main, develop]
image: node:lts-alpine
commands:
- yarn install
- yarn lint

View File

@ -1,5 +1,4 @@
# Flaschengeist `balance` fontend-plugin # Flaschengeist `balance` fontend-plugin
![status-badge](https://ci.os-sc.org/api/badges/Flaschengeist/flaschengeist-balance/status.svg)
This package provides the [Flaschengeist](https://flaschengeist.dev/Flaschengeist/flaschengeist) frontend for the `balance` plugin. This package provides the [Flaschengeist](https://flaschengeist.dev/Flaschengeist/flaschengeist) frontend for the `balance` plugin.

View File

@ -1,47 +1,45 @@
{ {
"license": "MIT", "license": "MIT",
"version": "1.0.0-alpha.2", "version": "1.0.0-alpha.2",
"name": "@flaschengeist/balance", "name": "@flaschengeist/balance",
"author": "Ferdinand Thiessen <rpm@fthiessen.de>", "author": "Ferdinand Thiessen <rpm@fthiessen.de>",
"homepage": "https://flaschengeist.dev/Flaschengeist", "homepage": "https://flaschengeist.dev/Flaschengeist",
"description": "Flaschengeist balance plugin", "description": "Flaschengeist balance plugin",
"bugs": { "bugs": {
"url": "https://flaschengeist.dev/Flaschengeist/flaschengeist/issues" "url": "https://flaschengeist.dev/Flaschengeist/flaschengeist/issues"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://flaschengeist.dev/Flaschengeist/flaschengeist-balance" "url": "https://flaschengeist.dev/Flaschengeist/flaschengeist-balance"
}, },
"main": "src/index.ts", "main": "src/index.ts",
"types": "src/api.d.ts", "types": "src/api.d.ts",
"scripts": { "scripts": {
"format": "prettier --config ./package.json --write '{,!(node_modules)/**/}*.{js,ts,vue}'", "pretty": "prettier --config ./package.json --write '{,!(node_modules)/**/}*.ts'",
"lint": "eslint --ext .js,.ts,.vue ./src" "lint": "eslint --ext .js,.ts,.vue ./src"
}, },
"devDependencies": { "devDependencies": {
"@flaschengeist/api": "^1.0.0-alpha.7", "@flaschengeist/types": "^1.0.0-alpha.10",
"@flaschengeist/types": "^1.0.0-alpha.10", "@quasar/app": "^3.2.4",
"@quasar/app": "^3.2.5", "@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/eslint-plugin": "^5.7.0", "@typescript-eslint/parser": "^5.5.0",
"@typescript-eslint/parser": "^5.7.0", "axios": "^0.24.0",
"axios": "^0.24.0", "eslint": "^8.4.0",
"eslint": "^8.4.1", "eslint-config-prettier": "^8.3.0",
"eslint-config-prettier": "^8.3.0", "eslint-plugin-vue": "^8.1.1",
"eslint-plugin-prettier": "^4.0.0", "pinia": "^2.0.6",
"eslint-plugin-vue": "^8.2.0", "prettier": "^2.5.1",
"pinia": "^2.0.6", "quasar": "^2.3.3",
"prettier": "^2.5.1", "typescript": "^4.5.2"
"quasar": "^2.3.4", },
"typescript": "^4.5.4" "peerDependencies": {
}, "@flaschengeist/api": "1.0.0-alpha.7",
"peerDependencies": { "@flaschengeist/users": "1.0.0-alpha.3"
"@flaschengeist/api": "1.0.0-alpha.7", },
"@flaschengeist/users": "1.0.0-alpha.3" "prettier": {
}, "singleQuote": true,
"prettier": { "semi": true,
"singleQuote": true, "printWidth": 120,
"semi": true, "arrowParens": "always"
"printWidth": 120, }
"arrowParens": "always"
} }
}