From fd8719b647e199a13a17686564ab06c840b53f07 Mon Sep 17 00:00:00 2001 From: Vesa Luusua Date: Tue, 21 Jul 2020 14:38:58 +0300 Subject: [PATCH 1/2] Fix fs.copyFileSync call in config script --- scripts/config.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/scripts/config.js b/scripts/config.js index 0efd62a4f8..d74476ac5d 100644 --- a/scripts/config.js +++ b/scripts/config.js @@ -321,9 +321,7 @@ Note that the .env file is a hidden file so it might not be visible directly in * Create new .env file using .env-template */ const createEnvFile = () => { - fs.copyFileSync('./.env-template', './.env', err => { - if (err) throw err; - }); + fs.copyFileSync('./.env-template', './.env', fs.constants.COPYFILE_EXCL); }; /** From 76776997444a7258b43faa8e82725db04a444a92 Mon Sep 17 00:00:00 2001 From: Vesa Luusua Date: Tue, 21 Jul 2020 14:47:29 +0300 Subject: [PATCH 2/2] Update changelog and prepare for new release v6.1.1 --- CHANGELOG.md | 7 +++++++ package.json | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b05f13f02..f3d7b80b8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,13 @@ way to update this template, but currently, we follow a pattern: ## Upcoming version 2020-XX-XX +## [v6.1.1] 2020-07-21 + +- [fix] Fix config script for NodeJS v14.5.0 + [#1327](https://github.com/sharetribe/ftw-daily/pull/1327) + +[v6.1.1]: https://github.com/sharetribe/flex-template-web/compare/v6.1.0...v6.1.1 + ## [v6.1.0] 2020-07-01 - [fix] MainPanel: search filter bug. Address and bounds are handled outside of MainPanel, URL diff --git a/package.json b/package.json index 494d447ab3..0449080db7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "app", - "version": "6.1.0", + "version": "6.1.1", "private": true, "license": "Apache-2.0", "dependencies": {