isomorphic-git 1.38.2 → 1.38.3
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/index.cjs +3 -3
- package/index.js +3 -3
- package/index.umd.min.js +1 -1
- 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 +1 -1
- package/managers/index.umd.min.js.map +1 -1
- package/package.json +1 -1
package/managers/index.cjs
CHANGED
|
@@ -912,7 +912,7 @@ class InternalError extends BaseError {
|
|
|
912
912
|
*/
|
|
913
913
|
constructor(message) {
|
|
914
914
|
super(
|
|
915
|
-
`An internal error caused this command to fail.\n\nIf you're
|
|
915
|
+
`An internal error caused this command to fail.\n\nIf you're using an application that depends on isomorphic-git, please report this error to that application's developers.\n\nIf you're a developer and you believe this is a bug in isomorphic-git, please file an issue at https://github.com/isomorphic-git/isomorphic-git/issues with a minimal reproduction, version and environment details, and this error message: ${message}`
|
|
916
916
|
);
|
|
917
917
|
this.code = this.name = InternalError.code;
|
|
918
918
|
this.data = { message };
|
package/managers/index.js
CHANGED
|
@@ -905,7 +905,7 @@ class InternalError extends BaseError {
|
|
|
905
905
|
*/
|
|
906
906
|
constructor(message) {
|
|
907
907
|
super(
|
|
908
|
-
`An internal error caused this command to fail.\n\nIf you're
|
|
908
|
+
`An internal error caused this command to fail.\n\nIf you're using an application that depends on isomorphic-git, please report this error to that application's developers.\n\nIf you're a developer and you believe this is a bug in isomorphic-git, please file an issue at https://github.com/isomorphic-git/isomorphic-git/issues with a minimal reproduction, version and environment details, and this error message: ${message}`
|
|
909
909
|
);
|
|
910
910
|
this.code = this.name = InternalError.code;
|
|
911
911
|
this.data = { message };
|