fix(core.gbapp): SaaS missing in PROD.
This commit is contained in:
parent
e9e1bf7df3
commit
b9dbf11f61
1 changed files with 6 additions and 6 deletions
|
@ -437,7 +437,7 @@ export class GBDeployer implements IGBDeployer {
|
||||||
let rows: any[] = [];
|
let rows: any[] = [];
|
||||||
let obj: any = {};
|
let obj: any = {};
|
||||||
|
|
||||||
const workbook = new Excel.Workbook();
|
const workbook = new Excel.Workbook();
|
||||||
|
|
||||||
if (await GBUtil.exists(xls)) {
|
if (await GBUtil.exists(xls)) {
|
||||||
await workbook.xlsx.readFile(xls);
|
await workbook.xlsx.readFile(xls);
|
||||||
|
@ -471,14 +471,14 @@ export class GBDeployer implements IGBDeployer {
|
||||||
const key = line[1];
|
const key = line[1];
|
||||||
let value = line[2];
|
let value = line[2];
|
||||||
|
|
||||||
if (value.text){value = value.text};
|
|
||||||
|
|
||||||
if (key && value) {
|
if (key && value) {
|
||||||
|
if (value.text) { value = value.text };
|
||||||
obj[key] = value;
|
obj[key] = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
GBLogEx.info(min, `Processing ${rows.length} rows from ${path.basename(filePath)}...`);
|
GBLogEx.info(min, `Processing ${rows.length} rows from ${path.basename(filePath)}...`);
|
||||||
rows = null;
|
rows = null;
|
||||||
return obj;
|
return obj;
|
||||||
|
@ -720,8 +720,8 @@ export class GBDeployer implements IGBDeployer {
|
||||||
|
|
||||||
case '.gbtheme':
|
case '.gbtheme':
|
||||||
// Updates server listeners to serve theme files in .gbtheme.
|
// Updates server listeners to serve theme files in .gbtheme.
|
||||||
const filePath = path.join(process.env.PWD, 'templates','default.gbai', 'default.gbtheme');
|
const filePath = path.join(process.env.PWD, 'templates', 'default.gbai', 'default.gbtheme');
|
||||||
GBServer.globals.server.use('/' + urlJoin('themes', packageName), express.static( filePath));
|
GBServer.globals.server.use('/' + urlJoin('themes', packageName), express.static(filePath));
|
||||||
GBLogEx.verbose(min, `Theme (.gbtheme) assets accessible at: /themes/${packageName}.`);
|
GBLogEx.verbose(min, `Theme (.gbtheme) assets accessible at: /themes/${packageName}.`);
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Reference in a new issue