Skip to content
This repository was archived by the owner on Apr 13, 2020. It is now read-only.

Commit 17076a4

Browse files
mydiemhobnookala
authored andcommitted
fix test
1 parent 72d8671 commit 17076a4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/commands/service/create.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ export const createCommandDecorator = (command: commander.Command): void => {
6262
);
6363
}
6464
await createService(projectPath, serviceName, packagesDir, {
65-
maintainerName,
66-
maintainerEmail
65+
maintainerEmail,
66+
maintainerName
6767
});
6868
} catch (err) {
6969
logger.error(
@@ -85,7 +85,7 @@ export const createService = async (
8585
rootProjectPath: string,
8686
serviceName: string,
8787
packagesDir: string,
88-
opts?: { maintainerName: string; maintainerEmail: string }
88+
opts?: { maintainerEmail: string; maintainerName: string }
8989
) => {
9090
const { maintainerName, maintainerEmail } = opts || {};
9191

0 commit comments

Comments
 (0)