From 5c35728ae110f02cf23db9d013d47af3a9985d1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philip=20=C3=98stli?= <55027973+philipostli@users.noreply.github.com> Date: Mon, 14 Oct 2024 13:54:14 +0200 Subject: [PATCH] Write initial changelog-file --- lib/App.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/App.js b/lib/App.js index 066770db..28eb2915 100644 --- a/lib/App.js +++ b/lib/App.js @@ -3279,6 +3279,12 @@ $ sudo systemctl restart docker /.homeybuild/`; await writeFileAsync(path.join(appPath, '.gitignore'), gitIgnore.toString()); + await writeFileAsync(path.join(appPath, '.homeychangelog.json'), `{ + "1.0.0": { + "en": "Initial release" + } +}` + ); Log.success(`App created in \`${appPath}\``); Log(`\n\tLearn more about Homey App development at: ${colors.underline('https://apps.developer.homey.app')}\n`);