Skip to content

Commit

Permalink
fix: followup
Browse files Browse the repository at this point in the history
  • Loading branch information
nimec01 committed Sep 21, 2024
1 parent 4200fbd commit 096bdd3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ jobs:
- name: Install dependencies
run: pnpm install

- name: Build
run: pnpm build

- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules/
.vscode/
.vscode/
dist/
2 changes: 1 addition & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
import baseConfig from './src/base.js';

export default [...baseConfig, { ignores: ['**/tests/base'] }];
export default [...baseConfig, { ignores: ['**/tests/base', '**/dist'] }];

0 comments on commit 096bdd3

Please sign in to comment.