From 3b4113f97767809bc256524500815ca506524b42 Mon Sep 17 00:00:00 2001 From: Joost De Cock Date: Mon, 11 Jan 2021 19:47:10 +0100 Subject: [PATCH] chore: Fixed script to include css for pattern examples --- scripts/reconfigure.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/reconfigure.js b/scripts/reconfigure.js index 84600013ead..1689be625c7 100644 --- a/scripts/reconfigure.js +++ b/scripts/reconfigure.js @@ -432,7 +432,7 @@ function configurePatternExample(pkg, config) { let template = handlebars.compile(fs.readFileSync(path.join(source, file), 'utf-8')) fs.writeFileSync(path.join(dest, file), template(replace)) } - for (let file of ['index.html', 'manifest.json']) { + for (let file of ['index.html', 'manifest.json', 'layout.css']) { let template = handlebars.compile(fs.readFileSync(path.join(source, 'public', file), 'utf-8')) fs.writeFileSync(path.join(dest, 'public', file), template(replace)) }