Skip to content

Commit

Permalink
fix: keepà bin directory + updated .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
tada5hi committed May 29, 2023
1 parent cb33552 commit 58aebad
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
.DS_Store
dist
bin
doc
node_modules
.vscode
Expand Down
3 changes: 3 additions & 0 deletions bin/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*
*/
!.gitignore
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@
}
},
"files": [
"bin/",
"dist/"
"bin",
"dist"
],
"engines": {
"node": ">=14.0.0"
Expand Down
4 changes: 2 additions & 2 deletions rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ export default [
],
output: [
{
file: './bin/cli.cjs',
file: 'bin/cli.cjs',
format: 'cjs',
banner: '#!/usr/bin/env node'
}, {
file: './bin/cli.mjs',
file: 'bin/cli.mjs',
format: 'esm',
banner: '#!/usr/bin/env node'
}
Expand Down

0 comments on commit 58aebad

Please sign in to comment.