Skip to content

Commit 2003243

Browse files
committed
fix: renaming of feature and liquibase file
1 parent 4f84799 commit 2003243

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

gulpfile.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,7 @@ gulp.task('generate', gulp.series('generate-template', () => {
113113
const renamePackage = gulpRename(function (file) {
114114
replaceName(file, 'packagename', config.newServicePath);
115115
replaceName(file, 'Example', config.domainNameStartCase);
116+
replaceName(file, 'example', config.domainNameLowerCase);
116117
});
117118

118119
const replaceName = function (file, oldName, newName) {
@@ -190,3 +191,7 @@ gulp.task('default', gulp.series('initialize-config', (done) => {
190191
runSequence('cleanup', 'create-repo', 'generate', 'clone-target',
191192
'commit_and_push', done);
192193
}));
194+
// uncomment when you want to test this locally
195+
/*gulp.task('default', gulp.series('initialize-config', (done) => {
196+
runSequence('cleanup', 'generate', done);
197+
}));*/

0 commit comments

Comments
 (0)