Skip to content

Commit

Permalink
v2.3 add bun
Browse files Browse the repository at this point in the history
  • Loading branch information
mo9a7i committed May 28, 2024
1 parent 04a5ec3 commit 85c0e36
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @6degrees/source-code-spitter

## 2.3.0

### Minor Changes

- Add Extensions for bun

## 2.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@flowdegree/spit-it",
"description": "A command-line tool to extract and organize source code snippets from projects, enabling easy sharing and collaboration.",
"version": "2.2.0",
"version": "2.3.0",
"license": "MIT",
"bin": {
"source-code-spitter": "index.js",
Expand Down
8 changes: 8 additions & 0 deletions utils/ignore-config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
module.exports = [
/* common */
'.git',
'.gitignore',
'.gitattributes',
Expand All @@ -12,6 +13,7 @@ module.exports = [
'*.log',
'*.lock',
'node_modules',
/* media */
'*.jpg',
'*.jpeg',
'*.gif',
Expand All @@ -35,13 +37,19 @@ module.exports = [
'*.7z',
'*.exe',
'*.swf',
/* config */
'.vscode/',
'.idea/',
'.DS_Store',
'.env',
'.spitignore',
'.prettierrc.json',
'.prettierrc',
'.eslintrc.json',
'.eslintrc',

'.spitignore.example',
'pnpm-lock.yaml',
'bun.lockb',

];

0 comments on commit 85c0e36

Please sign in to comment.