@embeddable.com/sdk-core 2.4.9 → 2.4.10
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/lib/index.esm.js +3 -0
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +3 -0
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -19874,6 +19874,7 @@ var login = async () => {
|
|
|
19874
19874
|
}
|
|
19875
19875
|
catch (error) {
|
|
19876
19876
|
await reportErrorToRollbar(error);
|
|
19877
|
+
console.log(error);
|
|
19877
19878
|
throw error;
|
|
19878
19879
|
}
|
|
19879
19880
|
};
|
|
@@ -19983,6 +19984,7 @@ var build = async () => {
|
|
|
19983
19984
|
}
|
|
19984
19985
|
catch (error) {
|
|
19985
19986
|
await reportErrorToRollbar(error);
|
|
19987
|
+
console.log(error);
|
|
19986
19988
|
throw error;
|
|
19987
19989
|
}
|
|
19988
19990
|
};
|
|
@@ -20006,6 +20008,7 @@ var push = async () => {
|
|
|
20006
20008
|
spinnerPushing.succeed(`published to ${workspaceName} using ${config.pushBaseUrl}`);
|
|
20007
20009
|
}
|
|
20008
20010
|
catch (error) {
|
|
20011
|
+
console.log(error);
|
|
20009
20012
|
await reportErrorToRollbar(error);
|
|
20010
20013
|
throw error;
|
|
20011
20014
|
}
|