-
-
Notifications
You must be signed in to change notification settings - Fork 729
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
DavertMik
committed
Jan 12, 2025
1 parent
7703147
commit d9af19d
Showing
6 changed files
with
43 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,20 @@ | ||
// refactored step class, moved to helper | ||
/** | ||
* Step is wrapper around a helper method. | ||
* It is used to create a new step that is a combination of other steps. | ||
*/ | ||
const BaseStep = require('./step/base') | ||
const StepConfig = require('./step/config') | ||
const Step = require('./step/helper') | ||
|
||
/** | ||
* MetaStep is a step that is used to wrap other steps. | ||
* It is used to create a new step that is a combination of other steps. | ||
* It is used to create a new step that is a combination of other steps. | ||
*/ | ||
const MetaStep = require('./step/meta') | ||
|
||
module.exports = Step | ||
module.exports.MetaStep = MetaStep | ||
module.exports.BaseStep = BaseStep | ||
module.exports.StepConfig = StepConfig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters