@aloma.io/integration-sdk 3.7.5 → 3.7.7

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.
@@ -31,8 +31,7 @@ export class Builder {
31
31
  }
32
32
  async checkIcon() {
33
33
  const data = this.data;
34
- const root = TARGET_DIR;
35
- data.icon = `${root}/logo.png`;
34
+ data.icon = TARGET_DIR + "build/logo.png";
36
35
  }
37
36
  async loadDescriptor() {
38
37
  notEmpty(this.data.controller, "controller");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aloma.io/integration-sdk",
3
- "version": "3.7.5",
3
+ "version": "3.7.7",
4
4
  "description": "",
5
5
  "author": "aloma.io",
6
6
  "license": "Apache-2.0",
@@ -46,9 +46,8 @@ export class Builder {
46
46
 
47
47
  private async checkIcon() {
48
48
  const data = this.data;
49
- const root = TARGET_DIR;
50
49
 
51
- data.icon = `${root}/logo.png`;
50
+ data.icon = TARGET_DIR + "build/logo.png";
52
51
  }
53
52
 
54
53
  private async loadDescriptor() {