Skip to content

Commit bceed7c

Browse files
committed
style: apply format:fix
1 parent 8f5221e commit bceed7c

5 files changed

+9
-9
lines changed

.prettierrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
}
1313
}
1414
]
15-
}
15+
}

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
# cli
1+
# cli

rollup.config.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@ export default defineConfig({
1010
output: {
1111
file: pkg.bin,
1212
sourcemap: true,
13-
format: 'cjs'
13+
format: 'cjs',
1414
},
1515
external: pkg.dependencies ? Object.keys(pkg.dependencies) : [],
1616
plugins: [
1717
typescript({
18-
tsconfig: 'tsconfig.build.json'
18+
tsconfig: 'tsconfig.build.json',
1919
}),
2020
commonjs(),
2121
json(),
22-
shebang()
23-
]
24-
});
22+
shebang(),
23+
],
24+
});

tsconfig.build.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
"module": "ESNext",
55
"target": "ESNext"
66
}
7-
}
7+
}

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
"skipLibCheck": true,
1414
"strict": true
1515
}
16-
}
16+
}

0 commit comments

Comments
 (0)