rename bundles

This commit is contained in:
Yuri Kuznetsov
2023-06-14 11:34:58 +03:00
parent e0f8688cb9
commit 431f7e6fd5
5 changed files with 7 additions and 14 deletions

View File

@@ -43,7 +43,7 @@ const originalLibCrmDir = './client/modules/crm/lib/original';
let bundleFiles = Object.keys(bundleConfig.chunks)
.map(name => {
let namePart = name === 'main' ? 'espo' : 'espo-' + name;
let namePart = 'espo-' + name;
return namePart + '.js';
});