@aloma.io/integration-sdk 3.0.1-4 → 3.0.1-5

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 CHANGED
@@ -24,7 +24,7 @@ const extract = ({ target, name, connectorId }) => {
24
24
  const content = JSON.parse(fs.readFileSync(`${target}/package.json`, { encoding: 'utf-8' }));
25
25
  content.name = name;
26
26
  content.connectorId = connectorId;
27
- fs.writeFileSync(`${target}/package.json`, JSON.stringify(content));
27
+ fs.writeFileSync(`${target}/package.json`, JSON.stringify(content, null, 2));
28
28
  };
29
29
  const program = new Command();
30
30
  program.name('npx @aloma.io/integration-sdk')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aloma.io/integration-sdk",
3
- "version": "3.0.1-4",
3
+ "version": "3.0.1-5",
4
4
  "description": "",
5
5
  "author": "aloma.io",
6
6
  "license": "Apache-2.0",
package/src/cli.mts CHANGED
@@ -38,7 +38,7 @@ const extract = ({target, name, connectorId}) =>
38
38
  content.name = name;
39
39
  content.connectorId = connectorId;
40
40
 
41
- fs.writeFileSync(`${target}/package.json`, JSON.stringify(content));
41
+ fs.writeFileSync(`${target}/package.json`, JSON.stringify(content, null, 2));
42
42
  }
43
43
 
44
44
  const program = new Command();