Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91593832
HookWebpackError.js
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Nov 12, 13:41
Size
2 KB
Mime Type
text/x-c++
Expires
Thu, Nov 14, 13:41 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22289222
Attached To
rOACCT Open Access Compliance Check Tool (OACCT)
HookWebpackError.js
View Options
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Sean Larkin @thelarkinn
*/
"use strict"
;
const
WebpackError
=
require
(
"./WebpackError"
);
/** @typedef {import("./Module")} Module */
/**
* @template T
* @callback Callback
* @param {Error=} err
* @param {T=} stats
* @returns {void}
*/
class
HookWebpackError
extends
WebpackError
{
/**
* Creates an instance of HookWebpackError.
* @param {Error} error inner error
* @param {string} hook name of hook
*/
constructor
(
error
,
hook
)
{
super
(
error
.
message
);
this
.
name
=
"HookWebpackError"
;
this
.
hook
=
hook
;
this
.
error
=
error
;
this
.
hideStack
=
true
;
this
.
details
=
`
caused
by
plugins
in
$
{
hook
}
\
n$
{
error
.
stack
}
`
;
Error
.
captureStackTrace
(
this
,
this
.
constructor
);
this
.
stack
+=
`\
n
--
inner
error
--
\
n$
{
error
.
stack
}
`
;
}
}
module
.
exports
=
HookWebpackError
;
/**
* @param {Error} error an error
* @param {string} hook name of the hook
* @returns {WebpackError} a webpack error
*/
const
makeWebpackError
=
(
error
,
hook
)
=>
{
if
(
error
instanceof
WebpackError
)
return
error
;
return
new
HookWebpackError
(
error
,
hook
);
};
module
.
exports
.
makeWebpackError
=
makeWebpackError
;
/**
* @template T
* @param {function(WebpackError=, T=): void} callback webpack error callback
* @param {string} hook name of hook
* @returns {Callback<T>} generic callback
*/
const
makeWebpackErrorCallback
=
(
callback
,
hook
)
=>
{
return
(
err
,
result
)
=>
{
if
(
err
)
{
if
(
err
instanceof
WebpackError
)
{
callback
(
err
);
return
;
}
callback
(
new
HookWebpackError
(
err
,
hook
));
return
;
}
callback
(
null
,
result
);
};
};
module
.
exports
.
makeWebpackErrorCallback
=
makeWebpackErrorCallback
;
/**
* @template T
* @param {function(): T} fn function which will be wrapping in try catch
* @param {string} hook name of hook
* @returns {T} the result
*/
const
tryRunOrWebpackError
=
(
fn
,
hook
)
=>
{
let
r
;
try
{
r
=
fn
();
}
catch
(
err
)
{
if
(
err
instanceof
WebpackError
)
{
throw
err
;
}
throw
new
HookWebpackError
(
err
,
hook
);
}
return
r
;
};
module
.
exports
.
tryRunOrWebpackError
=
tryRunOrWebpackError
;
Event Timeline
Log In to Comment