prettier with semicolon
This commit is contained in:
+3
-3
@@ -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 };
|
||||
|
||||
Reference in New Issue
Block a user