fix(refactor): use named imports (#879)

Allows better tree shaking while bundling.
This commit is contained in:
Michael Kriese 2024-11-08 13:41:42 +01:00 committed by GitHub
parent 5343762d53
commit 4d91b7f286
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 77 additions and 36 deletions

View file

@ -132,7 +132,7 @@ image as root, do some customization and switch back to a unprivileged user.
Specify volume mounts. Defaults to `/tmp:/tmp`.
The volume mounts are separated through `;`.
This sample will mount `/tmp:/tmp`, `/home:/home` and `/foo:/bar`.
This sample will mount `/tmp:/tmp` and `/foo:/bar`.
```yml
....
@ -148,7 +148,6 @@ jobs:
token: ${{ secrets.RENOVATE_TOKEN }}
docker-volumes: |
/tmp:/tmp ;
/home:/home ;
/foo:/bar
```