File tree Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " create-formidable" ,
3
- "version" : " 0.0.1 " ,
3
+ "version" : " 0.0.2 " ,
4
4
"description" : " The Formidable Framework Installer" ,
5
5
"author" : " Donald Pakkies @donaldp" ,
6
6
"bin" : {
17
17
" /oclif.manifest.json"
18
18
],
19
19
"dependencies" : {
20
- "@formidablejs/installer" : " ^0.9.1 " ,
20
+ "@formidablejs/installer" : " ^0.9.2 " ,
21
21
"@inquirer/prompts" : " ^1.2.1" ,
22
22
"@oclif/core" : " ^2" ,
23
23
"@oclif/plugin-help" : " ^5" ,
Original file line number Diff line number Diff line change @@ -44,8 +44,11 @@ export default class Create extends Command {
44
44
const installerArgs = [ 'new' , args . name ]
45
45
46
46
for ( const [ key , value ] of Object . entries ( flags ) ) {
47
- if ( value ) {
47
+ if ( value === true ) {
48
48
installerArgs . push ( `--${ key } ` )
49
+ } else {
50
+ installerArgs . push ( `--${ key } ` )
51
+ installerArgs . push ( value )
49
52
}
50
53
}
51
54
Original file line number Diff line number Diff line change 239
239
minimatch "^3.0.4"
240
240
strip-json-comments "^3.1.1"
241
241
242
- " @formidablejs/installer@^0.9.1 " :
243
- version "0.9.1 "
244
- resolved "https://registry.yarnpkg.com/@formidablejs/installer/-/installer-0.9.1 .tgz#608300dfe67ca61efc7f9e81df8a2b9971b6309a "
245
- integrity sha512-6U7D0D4kjCrpUW+od0XDk4ckqs0bNoeSjUx8zFkWPLsfk9rmg6K0g3SLYyQlHmHp5wAk8AlvcyIDT2P940iswg ==
242
+ " @formidablejs/installer@^0.9.2 " :
243
+ version "0.9.2 "
244
+ resolved "https://registry.yarnpkg.com/@formidablejs/installer/-/installer-0.9.2 .tgz#0f6323bc19050be782a1ed53df899b8a7cb41041 "
245
+ integrity sha512-W8H3vGirunGiE0hY2GAUMpbYBg2L6LKCcNI8lIgfEepjNIbZeDgTlr4N6X0RgrPhymKaHZEEFOpkrMhKTWwXiA ==
246
246
dependencies :
247
247
" @oclif/core" " ^1"
248
248
" @oclif/plugin-help" " ^5"
You can’t perform that action at this time.
0 commit comments