Files
penpot/frontend/scripts/build-storybook-assets.js
2025-12-03 16:44:37 +01:00

12 lines
303 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();