-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1851 from reactioncommerce/development
Release 0.19.0
- Loading branch information
Showing
990 changed files
with
26,672 additions
and
6,268 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ | |
*.min.* | ||
server/plugins.js | ||
client/plugins.js | ||
packages/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,8 @@ | ||
<!-- Thanks so much for your PR, your contribution is appreciated! --> | ||
**Are you submitting to `development`?** | ||
|
||
We currently only accept PR's to `development` not `master` | ||
Please provide the following information to help us approve your PR. Failure to provide this | ||
information may result in your PR being closed without comment. | ||
|
||
- [ ] Clearly explain what your PR is trying to accomplish. A link to an issue is best | ||
- [ ] Provide us detailed instructions on how we can test your PR | ||
|
||
- [ ] Description explains the issue / use-case resolved | ||
- [ ] Only contains code directly related to the issue | ||
- [ ] Has tests. | ||
- [ ] Has docs. | ||
- [ ] Passes all tests | ||
- [ ] Has been linted and follows the style guide |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,7 @@ [email protected] # Enable ECMAScript2015+ syntax in app code | |
[email protected] # ensure meteor method argument validation | ||
[email protected] # security-related policies enforced by newer browsers | ||
juliancwirko:postcss # CSS post-processing plugin (replaces standard-minifier-css) | ||
standard-minifier-js@1.2.1 # a minifier plugin used for Meteor apps by default | ||
abernix:standard-minifier-js # a minifier plugin used for Meteor apps by default | ||
[email protected] # ReactiveDict whose contents are preserved across Hot Code Push | ||
[email protected] # Meteor transparent reactive programming library | ||
[email protected] | ||
|
@@ -58,6 +58,7 @@ cfs:gridfs | |
cfs:standard-packages | ||
cfs:storage-adapter | ||
cfs:ui | ||
dispatch:run-as-user | ||
jeremy:stripe | ||
jparker:gravatar | ||
juliancwirko:s-alert | ||
|
@@ -75,7 +76,7 @@ tmeasday:publish-counts | |
vsivsi:job-collection | ||
react-meteor-data | ||
percolate:migrations | ||
|
||
gadicc:blaze-react-component | ||
|
||
# Testing packages | ||
dburles:factory | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
[email protected].3 | ||
[email protected].7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
## Required environment variables in your CircleCI dashboard | ||
# (used to push to Docker Hub) | ||
# | ||
# $DOCKER_USER - Docker Hub username | ||
# $DOCKER_PASS - Docker Hub password | ||
# $DOCKER_EMAIL - Docker Hub email | ||
|
||
|
||
## Optional Environment Variables | ||
# (used to customize the destination on Docker Hub without having to edit the circle.yml) | ||
# | ||
# $DOCKER_NAMESPACE - the image name for production deployments [Default]: reactioncommerce/reaction | ||
# $DOCKER_NAMESPACE_DEV - the name image for development deployments [Default]: reactioncommerce/prequel | ||
|
||
|
||
# Development branch deployment | ||
DOCKER_NAMESPACE=${DOCKER_NAMESPACE:-"reactioncommerce/reaction"} | ||
DOCKER_NAMESPACE_DEV=${DOCKER_NAMESPACE_DEV:-"reactioncommerce/prequel"} | ||
|
||
docker tag $DOCKER_NAMESPACE:latest $DOCKER_NAMESPACE_DEV:latest | ||
docker tag $DOCKER_NAMESPACE_DEV:latest $DOCKER_NAMESPACE_DEV:$CIRCLE_BUILD_NUM | ||
|
||
docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS | ||
|
||
docker push $DOCKER_NAMESPACE_DEV:$CIRCLE_BUILD_NUM | ||
docker push $DOCKER_NAMESPACE_DEV:latest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
## Required environment variables in your CircleCI dashboard | ||
# (used to push to Docker Hub) | ||
# | ||
# $DOCKER_USER - Docker Hub username | ||
# $DOCKER_PASS - Docker Hub password | ||
# $DOCKER_EMAIL - Docker Hub email | ||
|
||
|
||
## Optional Environment Variables | ||
# (used to customize the destination on Docker Hub without having to edit the circle.yml) | ||
# | ||
# $DOCKER_NAMESPACE - the image name for production deployments [Default]: reactioncommerce/reaction | ||
# $DOCKER_NAMESPACE_DEV - the name image for development deployments [Default]: reactioncommerce/prequel | ||
|
||
|
||
# Master branch deployment (only runs when a version git tag exists - syntax: "v1.2.3") | ||
# The git tag is available in $CIRCLE_TAG | ||
DOCKER_NAMESPACE=${DOCKER_NAMESPACE:-"reactioncommerce/reaction"} | ||
|
||
docker tag $DOCKER_NAMESPACE:latest $DOCKER_NAMESPACE:$CIRCLE_TAG | ||
|
||
docker login -e $DOCKER_EMAIL -u $DOCKER_USER -p $DOCKER_PASS | ||
|
||
docker push $DOCKER_NAMESPACE:$CIRCLE_TAG | ||
docker push $DOCKER_NAMESPACE:latest |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.