41 lines
1007 B
JavaScript
41 lines
1007 B
JavaScript
const {
|
|
reorderSteps,
|
|
createStepFile,
|
|
getChallengeSeeds,
|
|
padWithLeadingZeros,
|
|
getExistingStepNums,
|
|
getProjectPath,
|
|
getArgValues
|
|
} = require('./utils');
|
|
|
|
const allStepsExist = (steps, stepsToFind) =>
|
|
stepsToFind.every(num => steps.includes(num));
|
|
|
|
const projectPath = getProjectPath();
|
|
const args = getArgValues(process.argv);
|
|
|
|
const start = parseInt(args.start, 10);
|
|
|
|
if (!Number.isInteger(start) || start < 1) {
|
|
throw 'Step not created. Start step must be greater than 0.';
|
|
}
|
|
|
|
const end = start + 1;
|
|
|
|
const existingSteps = getExistingStepNums(projectPath);
|
|
if (!allStepsExist(existingSteps, [start, end])) {
|
|
throw `Step not created. Both start step, ${start}, and end step, ${end}, must exist`;
|
|
}
|
|
|
|
const challengeSeeds = getChallengeSeeds(
|
|
`${projectPath}part-${padWithLeadingZeros(start)}.md`
|
|
);
|
|
createStepFile({
|
|
stepNum: start,
|
|
projectPath,
|
|
challengeSeeds,
|
|
stepBetween: true
|
|
});
|
|
console.log(`Sucessfully added step between step #${start} and step #${end}`);
|
|
reorderSteps();
|