Skip to content

Commit 74f3159

Browse files
committed
build: 3.1.1
1 parent 56877e4 commit 74f3159

File tree

11 files changed

+419
-2051
lines changed

11 files changed

+419
-2051
lines changed

base/plan.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
"on_end": [
5050
{
5151
"id": "console_default",
52-
"message": "@GETDATE('YYYY-MM-DD HH:mm:ss') END: PROCESS @GV(PROCESS_ID)"
52+
"message": "@GETDATE('YYYY-MM-DD HH:mm:ss') END: PROCESS @GV(PROCESS_ID): @GV(PROCESS_EXEC_MSG_OUTPUT)"
5353
}
5454
]
5555
},
@@ -70,7 +70,7 @@
7070
"name": "Proccess One",
7171
"exec": {
7272
"id": "shell_default",
73-
"command": "echo Runnerty: hello world!"
73+
"command": "echo hello world!"
7474
}
7575
}
7676
]

index.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ program.option('-ws, --withoutscaffold', `do not include scaffolding in add modu
2222
options.withoutscaffold = true;
2323
});
2424

25+
// new project with production scaffold:
26+
program.option('-p, --prod', `to create a production project scaffold`, () => {
27+
options.prod = true;
28+
});
29+
2530
// Runnerty version:
2631
program.option(
2732
'-rv, --runnertyversion <version>',

0 commit comments

Comments
 (0)