Skip to content

Commit

Permalink
Merge pull request #592 from reactioncommerce/release-v2.6.0
Browse files Browse the repository at this point in the history
Release v2.6.0
  • Loading branch information
kieckhafer authored Oct 2, 2019
2 parents f2524aa + 32e87be commit e32fe50
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# v2.6.0

Example Storefront v2.6.0 is a minor update to keep this project in sync with [Reaction v2.6.0](https://github.com/reactioncommerce/reaction) and [reaction-hydra v2.6.0](https://github.com/reactioncommerce/reaction-hydra)

## Fixes

fix: restore empty_node_modules volume [#591](https://github.com/reactioncommerce/example-storefront/pull/591)

# v2.5.0

Example Storefront v2.5.0 is a minor update to keep this project in sync with [Reaction v2.5.0](https://github.com/reactioncommerce/reaction) and [reaction-hydra v2.5.0](https://github.com/reactioncommerce/reaction-hydra)
Expand Down
5 changes: 5 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,13 @@ services:
- $HOME/.cache/yarn-offline-mirror:/home/node/.cache/yarn-offline-mirror
- web-yarn:/home/node/.cache/yarn
- .:/usr/local/src/reaction-app
# Do not link in node_modules from the host
# This allows IDEs to run lint etc with native add-ons for host OS
# Without interfering with native add-ons in container
- empty_node_modules:/usr/local/src/reaction-app/node_modules
- node_modules:/usr/local/src/node_modules

volumes:
web-yarn:
node_modules:
empty_node_modules:
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "example-storefront",
"version": "2.5.0",
"version": "2.6.0",
"description": "The Example Storefront serves as a reference for implementing a web based storefront using the Reaction Commerce GraphQL API.",
"main": "./src/server.js",
"keywords": [],
Expand Down

0 comments on commit e32fe50

Please sign in to comment.