Skip to content

Commit

Permalink
Merge pull request #107 from sharetribe/update-v8.1.1-from-upstream
Browse files Browse the repository at this point in the history
Update v8.1.1 from upstream
  • Loading branch information
Gnito authored Jul 21, 2020
2 parents 3f3da0c + cf083f1 commit e7d57be
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
15 changes: 11 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ https://github.com/sharetribe/flex-template-web/

## Upcoming version 2020-XX-XX

## [v8.1.1] 2020-07-21

- [fix] Fix config script for NodeJS v14.5.0
[#1327](https://github.com/sharetribe/ftw-daily/pull/1327)

[v8.1.1]: https://github.com/sharetribe/ftw-hourly/compare/v8.1.0...v8.1.1

## [v8.1.0] 2020-07-01

- [change] Change the transaction process name to be `flex-hourly-default-process/release-1`
Expand All @@ -35,7 +42,7 @@ https://github.com/sharetribe/flex-template-web/
- [fix] Sync bookingUnitType variables and update comments. Client app's API (proxy) server needs to
know about unit type. [#1317](https://github.com/sharetribe/ftw-daily/pull/1317)

[v8.1.0]: https://github.com/sharetribe/flex-template-web/compare/v8.0.0...v8.1.0
[v8.1.0]: https://github.com/sharetribe/ftw-hourly/compare/v8.0.0...v8.1.0

## [v8.0.0] 2020-07-01

Expand All @@ -53,7 +60,7 @@ https://github.com/sharetribe/flex-template-web/
- [fix] `yarn run dev-backend` was expecting NODE_ENV.
[#1303](https://github.com/sharetribe/ftw-daily/pull/1303)

[v8.0.0]: https://github.com/sharetribe/flex-template-web/compare/v7.0.0...v8.0.0
[v8.0.0]: https://github.com/sharetribe/ftw-hourly/compare/v7.0.0...v8.0.0

## [v7.0.0] 2020-06-04

Expand All @@ -79,7 +86,7 @@ https://github.com/sharetribe/flex-template-web/

[#1296](https://github.com/sharetribe/ftw-daily/pull/1296)

[v7.0.0]: https://github.com/sharetribe/flex-template-web/compare/v6.6.0...v7.0.0
[v7.0.0]: https://github.com/sharetribe/ftw-hourly/compare/v6.6.0...v7.0.0

## [v6.6.0] 2020-06-04

Expand All @@ -94,7 +101,7 @@ https://github.com/sharetribe/flex-template-web/
- [change] Start the backend API router in dev mode with a dev server.
[#1297](https://github.com/sharetribe/ftw-daily/pull/1297)

[v6.6.0]: https://github.com/sharetribe/flex-template-web/compare/v6.5.1...v6.6.0
[v6.6.0]: https://github.com/sharetribe/ftw-hourly/compare/v6.5.1...v6.6.0

## [v6.5.1] 2020-05-13

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "app",
"version": "8.1.0",
"version": "8.1.1",
"private": true,
"license": "Apache-2.0",
"dependencies": {
Expand Down
4 changes: 1 addition & 3 deletions scripts/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
};

/**
Expand Down

0 comments on commit e7d57be

Please sign in to comment.