11 Commits

Author SHA1 Message Date
2fa6acea3a Merge branch 'dev' into main
All checks were successful
continuous-integration/drone/tag Build is passing
2021-03-19 18:49:35 +01:00
517cfddc5f CI - mkdir out 2021-03-19 18:49:26 +01:00
8809c583d0 Merge branch 'dev' into main
Some checks failed
continuous-integration/drone/tag Build is failing
2021-03-19 18:44:52 +01:00
ae0ec9d67c CI fix 2021-03-19 18:44:38 +01:00
f211e35517 Merge branch 'main' of https://git.odit.services/lfk/scanclient into main 2021-03-19 18:25:59 +01:00
cfd40d3f19 re-enable CI 2021-03-19 18:25:28 +01:00
76ccb2290e Merge pull request 'Husky pre-commit hooks 🐶' (#8) from dev into main
Reviewed-on: #8

close #4
close #5
2021-03-19 16:41:28 +00:00
5c117d6f48 Merge branch 'main' into dev 2021-03-19 16:40:32 +00:00
0296c26479 Merge branch 'feature/4-license-exporter' into dev
close #4 , close #5
2021-03-19 17:36:50 +01:00
d0facb2846 added husky formatting 🐶
ref #5
2021-03-19 17:33:23 +01:00
31ccf0758d Merge pull request 'dev' (#6) from dev into main
Reviewed-on: #6
2021-03-19 16:17:08 +00:00
4 changed files with 57 additions and 19 deletions

40
.drone.yml Normal file
View File

@@ -0,0 +1,40 @@
---
kind: secret
name: gitea_token
get:
path: odit-git-bot
name: apikey
---
kind: pipeline
type: kubernetes
name: build
steps:
- name: run build
depends_on: ["clone"]
image: node:15.11.0-alpine3.13
commands:
- apk add git zip -f
- yarn
- yarn build
- mkdir out
- zip -r out/dist.zip dist
- name: gitea_release
depends_on: ["run build"]
image: plugins/gitea-release
settings:
api_key:
from_secret: gitea_token
base_url: https://git.odit.services
files: out/*
checksum:
- md5
- sha1
- sha256
- sha512
- adler32
- crc32
when:
event: tag
trigger:
event:
- tag

View File

@@ -2,4 +2,4 @@
. "$(dirname "$0")/_/husky.sh"
yarn format
yarn license:export
yarn license:export

View File

@@ -1,18 +1,3 @@
# svelte-i18n
**Author**: Christian Kaisermann <christian@kaisermann.me>
**Repo**: https://github.com/kaisermann/svelte-i18n
**License**: MIT
**Description**: Internationalization library for Svelte
## License Text
Copyright 2017 Christian Kaisermann <christian@kaisermann.me>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
# @odit/license-exporter
**Author**: ODIT.Services
**Repo**: https://git.odit.services/odit/license-exporter
@@ -5002,3 +4987,18 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
# svelte-i18n
**Author**: Christian Kaisermann <christian@kaisermann.me>
**Repo**: https://github.com/kaisermann/svelte-i18n
**License**: MIT
**Description**: Internationalization library for Svelte
## License Text
Copyright 2017 Christian Kaisermann <christian@kaisermann.me>
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

View File

@@ -21,9 +21,7 @@
"svelte": "^3.35.0",
"svelte-preprocess": "^4.6.9",
"vite": "^2.1.2",
"vite-plugin-windicss": "^0.9.2"
},
"dependencies": {
"vite-plugin-windicss": "^0.9.2",
"svelte-i18n": "^3.3.7"
}
}