Skip to content

Commit fdaa117

Browse files
author
Christopher J. Brody
committed
add missing semicolons
1 parent 7854fdb commit fdaa117

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const renderTemplateIfValid = (root, template, templateArgs) => {
2929
return createFolder(baseDir).then(() =>
3030
createFile(filename, template.content(templateArgs))
3131
);
32-
}
32+
};
3333

3434
// alias, at least for now:
3535
const renderTemplate = renderTemplateIfValid;

utils/npmAddScriptSync.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const jsonfile = require('jsonfile')
1+
const jsonfile = require('jsonfile');
22

33
// Add a script entry to a package.json file at the packageJsonPath.
44
// The script parameter shoud be of {key: key, value: value}

0 commit comments

Comments
 (0)