@aloma.io/integration-sdk 3.3.20 → 3.3.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/builder/index.mjs +1 -10
- package/package.json +1 -1
- package/src/builder/index.mts +1 -12
package/build/builder/index.mjs
CHANGED
@@ -36,16 +36,7 @@ export class Builder {
|
|
36
36
|
async checkLogo() {
|
37
37
|
const data = this.data;
|
38
38
|
const root = __dirname + "/../../../../../";
|
39
|
-
|
40
|
-
try {
|
41
|
-
fs.readFileSync(`${root}/${name}`);
|
42
|
-
return `${root}/${name}`;
|
43
|
-
}
|
44
|
-
catch (e) {
|
45
|
-
// blank
|
46
|
-
}
|
47
|
-
});
|
48
|
-
data.logo = logo;
|
39
|
+
data.logo = `${root}/logo.png`;
|
49
40
|
}
|
50
41
|
async parsePackageJson() {
|
51
42
|
const data = this.data;
|
package/package.json
CHANGED
package/src/builder/index.mts
CHANGED
@@ -51,18 +51,7 @@ export class Builder {
|
|
51
51
|
const data = this.data;
|
52
52
|
const root = __dirname + "/../../../../../"
|
53
53
|
|
54
|
-
|
55
|
-
{
|
56
|
-
try
|
57
|
-
{
|
58
|
-
fs.readFileSync(`${root}/${name}`);
|
59
|
-
return `${root}/${name}`;
|
60
|
-
} catch(e) {
|
61
|
-
// blank
|
62
|
-
}
|
63
|
-
})
|
64
|
-
|
65
|
-
data.logo = logo;
|
54
|
+
data.logo = `${root}/logo.png`;
|
66
55
|
}
|
67
56
|
|
68
57
|
private async parsePackageJson() {
|