Skip to content

Commit 529a643

Browse files
2 parents 4611b88 + 36bec8a commit 529a643

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

scripts/move.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// scripts/moveBuild.js
2+
const fs = require('fs-extra');
3+
4+
async function moveBuild() {
5+
await fs.move('build', 'docs', { overwrite: true });
6+
console.log('Build folder renamed to docs');
7+
}
8+
9+
moveBuild();

0 commit comments

Comments
 (0)