Skip to content

Commit e32fe50

Browse files
authored
Merge pull request #592 from reactioncommerce/release-v2.6.0
Release v2.6.0
2 parents f2524aa + 32e87be commit e32fe50

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
# v2.6.0
2+
3+
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)
4+
5+
## Fixes
6+
7+
fix: restore empty_node_modules volume [#591](https://github.com/reactioncommerce/example-storefront/pull/591)
8+
19
# v2.5.0
210

311
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)

docker-compose.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,13 @@ services:
2626
- $HOME/.cache/yarn-offline-mirror:/home/node/.cache/yarn-offline-mirror
2727
- web-yarn:/home/node/.cache/yarn
2828
- .:/usr/local/src/reaction-app
29+
# Do not link in node_modules from the host
30+
# This allows IDEs to run lint etc with native add-ons for host OS
31+
# Without interfering with native add-ons in container
32+
- empty_node_modules:/usr/local/src/reaction-app/node_modules
2933
- node_modules:/usr/local/src/node_modules
3034

3135
volumes:
3236
web-yarn:
3337
node_modules:
38+
empty_node_modules:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "example-storefront",
3-
"version": "2.5.0",
3+
"version": "2.6.0",
44
"description": "The Example Storefront serves as a reference for implementing a web based storefront using the Reaction Commerce GraphQL API.",
55
"main": "./src/server.js",
66
"keywords": [],

0 commit comments

Comments
 (0)