Skip to content

Commit fc06653

Browse files
committed
fix: fixed bundler-friendly bundler issues, replaced oxfmtrc with oxfmt.config, removed firefox tests
1 parent 840a91a commit fc06653

7 files changed

Lines changed: 408 additions & 748 deletions

File tree

.oxfmtrc.json

Lines changed: 0 additions & 11 deletions
This file was deleted.

oxfmt.config.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import { defineConfig, type OxfmtConfig } from 'oxfmt';
2+
3+
const oxfmtConfig: OxfmtConfig = defineConfig({
4+
printWidth: 100,
5+
proseWrap: 'always',
6+
singleQuote: true,
7+
tabWidth: 2,
8+
trailingComma: 'all',
9+
ignorePatterns: ['/src/bin', '/dist', '/node_modules', 'package.json'],
10+
});
11+
12+
export default oxfmtConfig;

package-lock.json

Lines changed: 205 additions & 531 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,15 +74,15 @@
7474
},
7575
"devDependencies": {
7676
"@types/node": "^25.6.0",
77-
"@typescript/native-preview": "^7.0.0-dev.20260420.1",
77+
"@typescript/native-preview": "^7.0.0-dev.20260421.1",
7878
"@vitest/browser": "^4.1.4",
7979
"@vitest/browser-playwright": "^4.1.4",
8080
"happy-dom": "20.9.0",
8181
"lefthook": "2.1.6",
82-
"oxfmt": "^0.45.0",
82+
"oxfmt": "^0.46.0",
8383
"playwright": "^1.59.1",
8484
"publint": "^0.3.18",
85-
"tsdown": "^0.21.8",
85+
"tsdown": "^0.21.9",
8686
"typescript": "^6.0.3",
8787
"vitest": "^4.1.4"
8888
}

0 commit comments

Comments
 (0)