We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6760ee9 commit 2c1cf70Copy full SHA for 2c1cf70
2 files changed
packages/cli/package.json
@@ -66,6 +66,10 @@
66
"import": "./binding/index.cjs",
67
"require": "./binding/index.cjs"
68
},
69
+ "./fmt": {
70
+ "types": "./dist/fmt.d.ts",
71
+ "import": "./dist/fmt.js"
72
+ },
73
"./lint": {
74
"types": "./dist/lint.d.ts",
75
"import": "./dist/lint.js"
packages/cli/src/fmt.ts
@@ -0,0 +1,2 @@
1
+export { format } from 'oxfmt';
2
+export type * from 'oxfmt';
0 commit comments