Skip to content

Commit f4415c1

Browse files
committed
fix promise
1 parent 40a2613 commit f4415c1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utils/build/dev.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ const contents = {
1212
'three.webgpu.nodes.js': `export * from '../src/Three.WebGPU.Nodes.js';`,
1313
}
1414

15-
await Object.entries( contents ).map( ( [ filename, content ] ) =>
15+
await Promise.all( Object.entries( contents ).map( ( [ filename, content ] ) =>
1616
writeFile( `./build/${ filename }`, '// dev build\n' + content + '\n' )
17-
);
17+
) );

0 commit comments

Comments
 (0)