Skip to content

Commit adf7b8f

Browse files
committed
fix(nano-build): root fn name
1 parent c24f0b7 commit adf7b8f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/nano-build/nano-build.cjs

+2-2
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ function getOptions() {
103103
return options;
104104
}
105105

106-
async function build(options) {
106+
async function nanoBuild(options) {
107107
const alsoCjs = options.format === 'esm' && options.cjs;
108108
delete options.cjs;
109109

@@ -136,4 +136,4 @@ async function build(options) {
136136
}
137137
}
138138

139-
build(getOptions());
139+
nanoBuild(getOptions());

0 commit comments

Comments
 (0)