1
0
Fork 0

chore(tutorial) Removed circumference suffix from measurements

This commit is contained in:
Joost De Cock 2020-06-28 12:27:34 +02:00
parent 721661b281
commit 2ef20d5693
5 changed files with 36 additions and 38 deletions

View file

@ -1,38 +1,36 @@
import { version } from "../package.json";
import { version } from '../package.json'
// ?? 🤔 ?? --> https://en.freesewing.dev/packages/core/config
export default {
name: "tutorial",
name: 'tutorial',
version,
design: "joostdecock",
code: "joostdecock",
department: "womenswear",
type: "pattern",
design: 'joostdecock',
code: 'joostdecock',
department: 'womenswear',
type: 'pattern',
difficulty: 1,
tags: [
"example",
],
tags: ['example'],
optionGroups: {
fit: ["neckRatio", "widthRatio", "lengthRatio"],
box: ["size"]
fit: ['neckRatio', 'widthRatio', 'lengthRatio'],
box: ['size']
},
measurements: ["headCircumference"],
measurements: ['head'],
inject: {
step4: "step3",
step5: "step4",
step6: "step5",
step7: "step6",
step8: "step7",
step9: "step8",
step10: "step9",
step11: "step10"
step4: 'step3',
step5: 'step4',
step6: 'step5',
step7: 'step6',
step8: 'step7',
step9: 'step8',
step10: 'step9',
step11: 'step10'
},
parts: ["step1", "step2", "bib"],
parts: ['step1', 'step2', 'bib'],
options: {
size: { pct: 50, min: 10, max: 100 },
neckRatio: { pct: 80, min: 70, max: 90 },
widthRatio: { pct: 45, min: 35, max: 55 },
lengthRatio: { pct: 75, min: 55, max: 85 }
}
};
}