Skip to content
Snippets Groups Projects
Commit b81fcc01 authored by michael.minelli's avatar michael.minelli
Browse files

Package => Update version number

parent d626f311
No related branches found
No related tags found
No related merge requests found
Pipeline #25777 passed
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
"version" : "1.0.1", "version" : "1.0.1",
"main" : "dist/app.js", "main" : "dist/app.js",
"bin" : { "bin" : {
"dirmanager": "./dist/app.js" "dojo": "./dist/app.js"
}, },
"pkg" : { "pkg" : {
"scripts": [], "scripts": [],
......
...@@ -11,8 +11,8 @@ class CommanderApp { ...@@ -11,8 +11,8 @@ class CommanderApp {
constructor() { constructor() {
this.program this.program
.name('dojo') .name('dojo')
.description('CLI for the Dojo application') .description('CLI of the Dojo application')
.version('1.0.0 dev') .version('1.0.1')
.showHelpAfterError() .showHelpAfterError()
.configureHelp({ .configureHelp({
showGlobalOptions: true, showGlobalOptions: true,
......
...@@ -35,7 +35,7 @@ class ExerciceRunCommand extends CommanderCommand { ...@@ -35,7 +35,7 @@ class ExerciceRunCommand extends CommanderCommand {
protected defineCommand() { protected defineCommand() {
this.command this.command
.description('create a new exercice from an enonce') .description('create a new exercice from an enonce')
.option('-p, --path <value>', 'exercice path (default: current directory)', Config.folders.defaultLocalExercice) .option('-p, --path <value>', 'exercice path', Config.folders.defaultLocalExercice)
.action(this.commandAction.bind(this)); .action(this.commandAction.bind(this));
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment