@aloma.io/integration-sdk 3.0.1-11 → 3.0.1-12
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 +3 -0
- package/package.json +1 -1
- package/src/cli.mts +5 -0
package/build/cli.mjs
CHANGED
@@ -67,8 +67,11 @@ program
|
|
67
67
|
throw new Error("name is empty");
|
68
68
|
const target = `${process.cwd()}/${name}`;
|
69
69
|
fs.mkdirSync(target);
|
70
|
+
console.log('Creating connector ...');
|
70
71
|
extract({ ...options, target, name });
|
72
|
+
console.log('Generating keys ...');
|
71
73
|
await generateKeys({ target });
|
74
|
+
console.log('Installing dependencies ...');
|
72
75
|
await exec(`cd ${target}; yarn`);
|
73
76
|
});
|
74
77
|
program
|
package/package.json
CHANGED
package/src/cli.mts
CHANGED
@@ -90,8 +90,13 @@ program
|
|
90
90
|
|
91
91
|
fs.mkdirSync(target);
|
92
92
|
|
93
|
+
console.log('Creating connector ...');
|
93
94
|
extract({ ...options, target, name });
|
95
|
+
|
96
|
+
console.log('Generating keys ...');
|
94
97
|
await generateKeys({target});
|
98
|
+
|
99
|
+
console.log('Installing dependencies ...');
|
95
100
|
await exec(`cd ${target}; yarn`);
|
96
101
|
});
|
97
102
|
|