We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6f67d6 commit 703b120Copy full SHA for 703b120
1 file changed
scripts/build.mjs
@@ -1,5 +1,5 @@
1
import { exec as _exec } from 'node:child_process';
2
-import { copyFile, writeFile } from 'node:fs/promises';
+import { copyFile, writeFile, cp } from 'node:fs/promises';
3
import path from 'node:path';
4
import { fileURLToPath } from 'node:url';
5
import { promisify } from 'node:util';
@@ -87,5 +87,9 @@ async function runTask(tag, cmd) {
87
])
88
);
89
90
+ await runTask('Copy skills directory', () => {
91
+ cp('skills', DEST_DIR('skills'), { recursive: true });
92
+ });
93
+
94
report.success('Done! 🎉');
95
})();
0 commit comments