format gulpfile

This commit is contained in:
Johannes Loher 2021-01-06 01:31:23 +01:00
parent c01a2eb29d
commit b4f697f9cc

View file

@ -87,7 +87,7 @@ function createTransformer() {
node.decorators,
node.modifiers,
node.importClause,
newModuleSpecifier
newModuleSpecifier,
);
} else if (typescript.isExportDeclaration(node)) {
const newModuleSpecifier = typescript.createLiteral(`${node.moduleSpecifier.text}.js`);
@ -96,7 +96,7 @@ function createTransformer() {
node.decorators,
node.modifiers,
node.exportClause,
newModuleSpecifier
newModuleSpecifier,
);
}
}
@ -190,7 +190,7 @@ async function clean() {
`${name}.js`,
"module.json",
"system.json",
"template.json"
"template.json",
);
}
@ -405,7 +405,7 @@ function gitCommit() {
git.commit(`v${getManifest().file.version}`, {
args: "-a",
disableAppendPaths: true,
})
}),
);
}