isomorphic-git 1.34.0 → 1.34.2
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/README.md +1 -0
- package/browser-tests.json +2 -2
- package/index.cjs +3 -3
- package/index.js +3 -3
- package/index.umd.min.js +2 -2
- package/index.umd.min.js.map +1 -1
- package/managers/index.cjs +1 -1
- package/managers/index.js +1 -1
- package/managers/index.umd.min.js +4 -4
- package/managers/index.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/size_report.html +1 -1
package/managers/index.cjs
CHANGED
|
@@ -814,7 +814,7 @@ class InternalError extends BaseError {
|
|
|
814
814
|
*/
|
|
815
815
|
constructor(message) {
|
|
816
816
|
super(
|
|
817
|
-
`An internal error caused this command to fail.
|
|
817
|
+
`An internal error caused this command to fail.\n\nIf you're not a developer, report the bug to the developers of the application you're using. If this is a bug in isomorphic-git then you should create a proper bug yourselves. The bug should include a minimal reproduction and details about the version and environment.\n\nPlease file a bug report at https://github.com/isomorphic-git/isomorphic-git/issues with this error message: ${message}`
|
|
818
818
|
);
|
|
819
819
|
this.code = this.name = InternalError.code;
|
|
820
820
|
this.data = { message };
|
package/managers/index.js
CHANGED
|
@@ -808,7 +808,7 @@ class InternalError extends BaseError {
|
|
|
808
808
|
*/
|
|
809
809
|
constructor(message) {
|
|
810
810
|
super(
|
|
811
|
-
`An internal error caused this command to fail.
|
|
811
|
+
`An internal error caused this command to fail.\n\nIf you're not a developer, report the bug to the developers of the application you're using. If this is a bug in isomorphic-git then you should create a proper bug yourselves. The bug should include a minimal reproduction and details about the version and environment.\n\nPlease file a bug report at https://github.com/isomorphic-git/isomorphic-git/issues with this error message: ${message}`
|
|
812
812
|
);
|
|
813
813
|
this.code = this.name = InternalError.code;
|
|
814
814
|
this.data = { message };
|