From 3bf1eafe6bedfa745eed7dcc3c1b5d1b0034011c Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Fri, 23 Jun 2023 18:43:49 +0200 Subject: [PATCH] fix(core): update --- .gitea/workflows/gitzone_ci_default.yaml | 10 ++++++---- package.json | 2 +- ts/00_commitinfo_data.ts | 2 +- ts/smartfile.fs.ts | 3 +-- 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.gitea/workflows/gitzone_ci_default.yaml b/.gitea/workflows/gitzone_ci_default.yaml index 229af2b..f2a09e1 100644 --- a/.gitea/workflows/gitzone_ci_default.yaml +++ b/.gitea/workflows/gitzone_ci_default.yaml @@ -11,7 +11,9 @@ jobs: runs-on: ubuntu-latest continue-on-error: true container: - image: registry.gitlab.com/hosttoday/ht-docker-node:npmci + image: ${{ env.IMAGE }} + outputs: + dummy: ${{ true }} steps: - uses: actions/checkout@v3 @@ -38,7 +40,7 @@ jobs: needs: security runs-on: ubuntu-latest container: - image: registry.gitlab.com/hosttoday/ht-docker-node:npmci + image: ${{ env.IMAGE }} steps: - uses: actions/checkout@v3 @@ -60,7 +62,7 @@ jobs: if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') runs-on: ubuntu-latest container: - image: registry.gitlab.com/hosttoday/ht-docker-node:npmci + image: ${{ env.IMAGE }} steps: - uses: actions/checkout@v3 @@ -75,7 +77,7 @@ jobs: if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') runs-on: ubuntu-latest container: - image: registry.gitlab.com/hosttoday/ht-docker-node:npmci + image: ${{ env.IMAGE }} continue-on-error: true steps: diff --git a/package.json b/package.json index fda7d2f..8b5a60c 100644 --- a/package.json +++ b/package.json @@ -66,4 +66,4 @@ "browserslist": [ "last 1 chrome versions" ] -} +} \ No newline at end of file diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index 0b2e78e..1068130 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@pushrocks/smartfile', - version: '10.0.11', + version: '10.0.12', description: 'offers smart ways to work with files in nodejs' } diff --git a/ts/smartfile.fs.ts b/ts/smartfile.fs.ts index c3f7351..79fb773 100644 --- a/ts/smartfile.fs.ts +++ b/ts/smartfile.fs.ts @@ -354,9 +354,8 @@ export const listFileTree = async ( nodir: true, dot: true, }; - - let fileList = await plugins.glob.glob(miniMatchFilter, options) + let fileList = await plugins.glob.glob(miniMatchFilter, options); if (absolutePathsBool) { fileList = fileList.map((filePath) => { return plugins.path.resolve(plugins.path.join(dirPath, filePath));