community: trim premium wizard surface

This commit is contained in:
a.tolmachev
2026-05-07 20:34:32 +00:00
parent 796def4cfd
commit 202c886793
11 changed files with 16 additions and 696 deletions
+11 -1
View File
@@ -202,7 +202,17 @@ async function main() {
copyDirectory(path.join(ROOT_DIR, 'css'), path.join(DIST_DIR, 'css'));
copyDirectory(path.join(ROOT_DIR, 'data'), path.join(DIST_DIR, 'data'));
copyDirectory(path.join(ROOT_DIR, 'html', 'wizard'), path.join(DIST_DIR, 'html', 'wizard'));
ensureDirectory(path.join(DIST_DIR, 'html', 'wizard'));
[
'html/wizard/index.html',
'html/wizard/step1.html',
'html/wizard/step2.html',
'html/wizard/step3-rest.html',
'html/wizard/step4.html',
'html/wizard/step5.html',
].forEach(function(relativePath) {
copyFile(path.join(ROOT_DIR, relativePath), path.join(DIST_DIR, relativePath));
});
copyDirectory(path.join(ROOT_DIR, 'icons'), path.join(DIST_DIR, 'icons'));
copyFile(resolveBrandImage(), path.join(DIST_DIR, 'Crank.png'));