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'] }];