From 862cebce55916b05144c92dc8f159a9d38ad39fb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alberto=20Cant=C3=BA=20G=C3=B3mez?= Date: Wed, 24 Nov 2021 15:20:15 -0600 Subject: [PATCH] Update blueprint Just updating blueprint {{head-layout}} -> --- blueprints/ember-cli-head/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/blueprints/ember-cli-head/index.js b/blueprints/ember-cli-head/index.js index 4964b61..f2d6038 100644 --- a/blueprints/ember-cli-head/index.js +++ b/blueprints/ember-cli-head/index.js @@ -12,11 +12,11 @@ module.exports = { if (fs.existsSync(fullPath)) { let contents = fs.readFileSync(fullPath, { encoding: 'utf-8' }); - let toWrite = `{{head-layout}}\n${contents}`; + let toWrite = `\n${contents}`; fs.writeFileSync(fullPath, toWrite, { encoding: 'utf-8' }); } else { - let str = `You must add {{head-layout}} component to your topmost UI. + let str = `You must add component to your topmost UI. This is usually your app/templates/application.hbs, but was not found on your system. Please see the README for more instructions https://github.com/ronco/ember-cli-head#upgrade-to-04x.`