Closed Alan-McKenna closed 1 year ago
Ever since v1.6.5 was released we have been running into import exceptions for oc-client:
oc-client
* oc-client: Component execution error: exports is not defined (500)
It looks like the cause of this is the choice of exports over module.exports here.
exports
module.exports
We should prefer module.exports over exports
done and published
Description
Problem
Ever since v1.6.5 was released we have been running into import exceptions for
oc-client
:It looks like the cause of this is the choice of
exports
overmodule.exports
here.Solution
We should prefer
module.exports
overexports