@aloma.io/integration-sdk 3.7.4 → 3.7.6
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 -2
- package/build/cli.mjs +1 -1
- package/package.json +1 -1
- package/src/builder/index.mts +1 -2
- package/src/cli.mts +1 -1
package/build/builder/index.mjs
CHANGED
@@ -31,8 +31,7 @@ export class Builder {
|
|
31
31
|
}
|
32
32
|
async checkIcon() {
|
33
33
|
const data = this.data;
|
34
|
-
|
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/build/cli.mjs
CHANGED
@@ -92,7 +92,7 @@ program
|
|
92
92
|
.action(async (str, options) => {
|
93
93
|
const { stdout, stderr } = await exec(`rm -rf build; mkdir -p build; `);
|
94
94
|
try {
|
95
|
-
fs.copyFileSync(
|
95
|
+
fs.copyFileSync(`${TARGET_DIR}/logo.png`, `${TARGET_DIR}/build/logo.png`);
|
96
96
|
}
|
97
97
|
catch (e) {
|
98
98
|
// blank
|
package/package.json
CHANGED
package/src/builder/index.mts
CHANGED