Skip to content

Commit

Permalink
chore: several minor updates
Browse files Browse the repository at this point in the history
chore: wip
  • Loading branch information
chrisbbreuer committed Jan 1, 2025
1 parent ca28993 commit 28e0891
Show file tree
Hide file tree
Showing 9 changed files with 919 additions and 85 deletions.
1 change: 0 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
* text=auto
*.lockb binary diff=lockb
1 change: 1 addition & 0 deletions .vscode/dictionary.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ davidanson
degit
deps
destructurable
dtsx
entrypoints
heroicons
lockb
Expand Down
5 changes: 5 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@
"source.fixAll.eslint": "explicit",
"source.organizeImports": "never"
},
"eslint.options": {
"flags": [
"unstable_ts_config"
]
},
// Silent the stylistic rules in you IDE, but still auto fix them
"eslint.rules.customizations": [
{
Expand Down
908 changes: 908 additions & 0 deletions bun.lock

Large diffs are not rendered by default.

Binary file removed bun.lockb
Binary file not shown.
75 changes: 0 additions & 75 deletions commitlint.config.js

This file was deleted.

File renamed without changes.
12 changes: 4 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
"files": ["dist"],
"scripts": {
"build": "bun --bun build.ts",
"lint": "bunx eslint .",
"lint:fix": "bunx eslint . --fix",
"lint": "bunx --bun eslint --flag unstable_ts_config .",
"lint:fix": "bunx --bun eslint --flag unstable_ts_config . --fix",
"fresh": "bunx rimraf node_modules/ bun.lock && bun i",
"changelog": "bunx changelogen --output CHANGELOG.md",
"prepublishOnly": "bun --bun run build",
Expand All @@ -41,20 +41,16 @@
"typecheck": "bun --bun tsc --noEmit"
},
"devDependencies": {
"@stacksjs/eslint-config": "^3.11.3-beta.4",
"@stacksjs/eslint-config": "^3.12.0-beta.4",
"@types/bun": "^1.1.14",
"bumpp": "^9.9.2",
"bun-plugin-dtsx": "^0.21.9",
"changelogen": "^0.5.7",
"commitizen": "^4.3.1",
"lint-staged": "^15.3.0",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.7.2"
},
"simple-git-hooks": {
"pre-commit": "bun lint-staged"
},
"lint-staged": {
"*.{js,ts}": "bunx eslint . --fix"
"*.{js,ts}": "bunx --bun eslint --flag unstable_ts_config . --fix"
}
}
2 changes: 1 addition & 1 deletion pkgx.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
dependencies:
bun.sh: ^1.1.31
bun.sh: ^1.1.42

0 comments on commit 28e0891

Please sign in to comment.