8 lines
149 B
TypeScript
8 lines
149 B
TypeScript
module.exports = (phase, config, context) => {
|
|
return {
|
|
...config,
|
|
myPhase: phase,
|
|
myCustomValue: context.options.customValue,
|
|
};
|
|
};
|