We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 417cfb5 commit c96a25eCopy full SHA for c96a25e
src/rules/getExecuteModulePromise.js
@@ -11,12 +11,10 @@ governing permissions and limitations under the License.
11
12
const logDelegateModuleCall = require('./logDelegateModuleCall');
13
const logDelegateModuleOutput = require('./logDelegateModuleOutput');
14
-const getUtilsByRuleComponent = require('./getUtilsByRuleComponent');
15
const executeDelegateModule = require('./executeDelegateModule');
16
17
module.exports = (context) =>
18
Promise.resolve(context)
19
.then(logDelegateModuleCall)
20
- .then(getUtilsByRuleComponent)
21
.then(executeDelegateModule)
22
.then(logDelegateModuleOutput);
0 commit comments