Skip to content

Commit b31444d

Browse files
committed
style: format with prettier
1 parent 051defd commit b31444d

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

.github/workflows/autofix.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
name: autofix.ci # needed to securely identify the workflow
1+
name: autofix.ci # needed to securely identify the workflow
22

33
on:
44
pull_request:
55
push:
6-
branches: [ "main" ]
6+
branches: ["main"]
77

88
permissions:
99
contents: read
@@ -23,4 +23,4 @@ jobs:
2323
run: pnpm run lint:fix
2424
- uses: autofix-ci/action@bee19d72e71787c12ca0f29de72f2833e437e4c9
2525
with:
26-
commit-message: 'chore: apply automated lint fixes'
26+
commit-message: "chore: apply automated lint fixes"

build.config.ts

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,17 @@ import { defineBuildConfig } from "unbuild";
33
export default defineBuildConfig({
44
declaration: true,
55
rollup: {
6-
emitCJS: true
6+
emitCJS: true,
77
},
88
entries: [
99
"src/index",
1010
{ input: "src/runtime/", outDir: "runtime", format: "esm" },
11-
{ input: "src/runtime/", outDir: "runtime", format: "cjs", ext: "cjs", declaration: false }
12-
]
11+
{
12+
input: "src/runtime/",
13+
outDir: "runtime",
14+
format: "cjs",
15+
ext: "cjs",
16+
declaration: false,
17+
},
18+
],
1319
});

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@
5252
"unbuild": "^2.0.0"
5353
},
5454
"packageManager": "pnpm@8.10.3"
55-
}
55+
}

renovate.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
{
2-
"extends": [
3-
"github>unjs/renovate-config"
4-
]
2+
"extends": ["github>unjs/renovate-config"]
53
}

tsconfig.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,7 @@
77
"esModuleInterop": true,
88
"strict": true,
99
"declaration": true,
10-
"types": [
11-
"node"
12-
]
10+
"types": ["node"]
1311
},
14-
"include": [
15-
"src/**/*"
16-
]
12+
"include": ["src/**/*"]
1713
}

0 commit comments

Comments
 (0)