mirror of
https://github.com/penpot/penpot.git
synced 2026-02-12 14:42:56 +00:00
12 lines
305 B
JavaScript
12 lines
305 B
JavaScript
import fs from "node:fs/promises";
|
|
import * as h from "./_helpers.js";
|
|
|
|
await fs.mkdir("resources/public/js", { recursive: true });
|
|
|
|
await h.compileStorybookStyles();
|
|
await h.copyAssets();
|
|
await h.compileSvgSprites();
|
|
await h.compileTranslations();
|
|
await h.compileTemplates();
|
|
await h.compilePolyfills();
|