1
0
Fork 0

fix(create-freesewing-pattern): remove old departments

removed old departments from initial create-freesewing-pattern prompt and replaced with `tops` and `bottoms`
This commit is contained in:
starfetch 2021-07-12 21:40:28 +02:00 committed by GitHub
parent e3e619ee0c
commit fdbc4033a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -97,19 +97,19 @@ module.exports = async opts => {
message: info => strings[info.language]['filter.department.title'],
choices: info => [
{
name: strings[info.language]['filter.department.menswear'],
value: 'menswear'
name: strings[info.language]['filter.department.tops'],
value: 'tops'
},
{
name: strings[info.language]['filter.department.womenswear'],
value: 'womenswear'
name: strings[info.language]['filter.department.bottoms'],
value: 'bottoms'
},
{
name: strings[info.language]['filter.department.accessories'],
value: 'accessories'
}
],
default: 'womenswear'
default: 'tops'
},
{
type: 'input',