mirror of
https://github.com/penpot/penpot.git
synced 2025-07-07 14:47:17 +02:00
🎉 Add wasm playground environment
This commit is contained in:
parent
486f036a11
commit
aae81b8a04
5 changed files with 222 additions and 0 deletions
|
@ -573,3 +573,16 @@ export async function copyAssets() {
|
|||
const end = process.hrtime(start);
|
||||
log.info("done: copy assets", `(${ppt(end)})`);
|
||||
}
|
||||
|
||||
export async function copyWasmPlayground() {
|
||||
const start = process.hrtime();
|
||||
log.info("init: copy wasm playground");
|
||||
|
||||
await syncDirs(
|
||||
"resources/wasm-playground/",
|
||||
"resources/public/wasm-playground/",
|
||||
);
|
||||
|
||||
const end = process.hrtime(start);
|
||||
log.info("done: copy wasm playground", `(${ppt(end)})`);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue