Skip to content

Commit

Permalink
Fix(Project-Scaffold): abortOnFail option
Browse files Browse the repository at this point in the history
  • Loading branch information
nurulakbaral committed Jul 21, 2024
1 parent e728325 commit dd75ff1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ export default function (plop: NodePlopAPI) {
delayLog('⌛ Installing dependencies...'),
{
type: 'installDependencies',
abortOnFail: true,
},
delayLog('⌛ Initializing Husky...'),
{
Expand All @@ -101,7 +102,6 @@ export default function (plop: NodePlopAPI) {
dot: true,
},
force: true,
abortOnFail: true,
},
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default function (plop: NodePlopAPI) {
dot: true,
},
force: false,
abortOnFail: true,
abortOnFail: false,
})
}

Expand All @@ -75,7 +75,7 @@ export default function (plop: NodePlopAPI) {
dot: true,
},
force: false,
abortOnFail: true,
abortOnFail: false,
})
}

Expand All @@ -86,7 +86,7 @@ export default function (plop: NodePlopAPI) {
templateFiles: ['templates/src/**/*'],
globOptions: {},
force: false,
abortOnFail: true,
abortOnFail: false,
})
}

Expand Down

0 comments on commit dd75ff1

Please sign in to comment.