@aloma.io/integration-sdk 3.7.2 → 3.7.3
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/cli.mjs +1 -1
- package/package.json +1 -1
- package/src/builder/index.mts +1 -1
- package/src/cli.mts +1 -1
package/build/cli.mjs
CHANGED
@@ -90,7 +90,7 @@ program
|
|
90
90
|
.command("build")
|
91
91
|
.description("Build the current connector project")
|
92
92
|
.action(async (str, options) => {
|
93
|
-
const { stdout, stderr } = await exec(`rm -rf build; mkdir -p build`);
|
93
|
+
const { stdout, stderr } = await exec(`rm -rf build; mkdir -p build; [ -e ./logo.png ] && cp -f ./logo.png ./build/ `);
|
94
94
|
if (stdout)
|
95
95
|
console.log(stdout);
|
96
96
|
new Extractor().extract('./src/controller/index.mts', './build/.controller.json');
|
package/package.json
CHANGED
package/src/builder/index.mts
CHANGED
package/src/cli.mts
CHANGED
@@ -121,7 +121,7 @@ program
|
|
121
121
|
.description("Build the current connector project")
|
122
122
|
.action(async (str, options) => {
|
123
123
|
const { stdout, stderr } = await exec(
|
124
|
-
`rm -rf build; mkdir -p build`,
|
124
|
+
`rm -rf build; mkdir -p build; [ -e ./logo.png ] && cp -f ./logo.png ./build/ `,
|
125
125
|
);
|
126
126
|
|
127
127
|
if (stdout) console.log(stdout);
|