@osdk/foundry-sdk-generator 1.3.4 → 1.3.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/CHANGELOG.md +6 -0
- package/build/browser/index.js +9 -2
- package/build/browser/index.js.map +1 -1
- package/build/cjs/cli/foundrySdkGeneratorCli.d.ts.map +1 -1
- package/build/cjs/index.cjs +9 -2
- package/build/cjs/index.cjs.map +1 -1
- package/build/esm/cli/foundrySdkGeneratorCli.d.ts.map +1 -1
- package/build/esm/index.js +9 -2
- package/build/esm/index.js.map +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
package/build/browser/index.js
CHANGED
|
@@ -558,7 +558,7 @@ function isValidSemver(semverString) {
|
|
|
558
558
|
}
|
|
559
559
|
|
|
560
560
|
// src/utils/UserAgent.ts
|
|
561
|
-
var USER_AGENT = `typescript-sdk-generator/${"1.3.
|
|
561
|
+
var USER_AGENT = `typescript-sdk-generator/${"1.3.5"}`;
|
|
562
562
|
async function createRollupBuild(absolutePackagePath, packageName) {
|
|
563
563
|
const inputPath = `${absolutePackagePath}/${packageName}/index.js`;
|
|
564
564
|
const {
|
|
@@ -1369,7 +1369,14 @@ async function cli(args = process.argv) {
|
|
|
1369
1369
|
} = await import('@osdk/main-foundry-sdk-generator');
|
|
1370
1370
|
await cli2(args);
|
|
1371
1371
|
} else {
|
|
1372
|
-
|
|
1372
|
+
if (err) {
|
|
1373
|
+
console.error(output);
|
|
1374
|
+
console.error(err);
|
|
1375
|
+
process.exit(1);
|
|
1376
|
+
} else {
|
|
1377
|
+
console.log(output);
|
|
1378
|
+
process.exit(0);
|
|
1379
|
+
}
|
|
1373
1380
|
}
|
|
1374
1381
|
});
|
|
1375
1382
|
} catch (e) {
|