From 096bdd3d2f7d2d53481714b195765435833a25aa Mon Sep 17 00:00:00 2001 From: nimec01 <24428341+nimec01@users.noreply.github.com> Date: Sat, 21 Sep 2024 20:10:54 +0200 Subject: [PATCH] fix: followup --- .github/workflows/release.yml | 3 +++ .gitignore | 3 ++- eslint.config.js | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 28a2e77..2e6411b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -60,6 +60,9 @@ jobs: - name: Install dependencies run: pnpm install + - name: Build + run: pnpm build + - name: Release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.gitignore b/.gitignore index 417c6ce..284b119 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ node_modules/ -.vscode/ \ No newline at end of file +.vscode/ +dist/ diff --git a/eslint.config.js b/eslint.config.js index 89647e6..007f9bb 100644 --- a/eslint.config.js +++ b/eslint.config.js @@ -1,3 +1,3 @@ import baseConfig from './src/base.js'; -export default [...baseConfig, { ignores: ['**/tests/base'] }]; +export default [...baseConfig, { ignores: ['**/tests/base', '**/dist'] }];