1
0
Fork 0

chore: Extended prettier for config files + run

This commit is contained in:
Joost De Cock 2022-10-13 16:19:36 +02:00
parent f673e485ad
commit 322100f54c
27 changed files with 454 additions and 375 deletions

View file

@ -188,10 +188,13 @@ function createDesign(name, type) {
mkdir([...design, 'tests'])
// Create package.json
templateOut([...template, 'package.json'], [...design, 'package.json'], { name, description })
templateOut([...template, 'package.json.mustache'], [...design, 'package.json'], {
name,
description,
})
// Create index.mjs
templateOut([...template, 'src', 'index.mjs'], [...design, 'src', 'index.mjs'], {
templateOut([...template, 'src', 'index.mjs.mustache'], [...design, 'src', 'index.mjs'], {
capitalized_name,
})