prettier with semicolon

This commit is contained in:
Arwid Thornström
2022-09-15 13:17:13 +02:00
parent 83a5ae9ace
commit d7fc3ecf95
4 changed files with 32 additions and 21 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
const { build } = require('gluegun')
const { build } = require('gluegun');
/**
* Create the cli and kick it off
@@ -23,7 +23,7 @@ async function run(argv) {
}
}) // provides default for help, h, --help, -h
// .version() // provides default for version, v, --version, -v
.create()
.create();
// enable the following method if you'd like to skip loading one of these core extensions
// this can improve performance if they're not necessary for your project:
// .exclude(['meta', 'strings', 'print', 'filesystem', 'semver', 'system', 'prompt', 'http', 'template', 'patching', 'package-manager'])
@@ -34,4 +34,4 @@ async function run(argv) {
return toolbox;
}
module.exports = { run }
module.exports = { run };