-
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.
* Meteor 1.5 - include Buffer polyfill - replaces abernix:standard-minifier-js with standard-minifier-js - properly pins job-collections to 1.4.0 * Updated to 1.5.0 base image * Pin react-meteor-data to 0.2.9 * Remove unused vars Cherry pick b36709c19 e47b25049f90643739df4bcf5210d64 * update to reactioncommerce/base:v2.0.0 * transliteration 1.6.2 (#2389) - Related to #2090 and #2091 - Reduces minified footprint by315k - updates client import * Meteor1.5 and docker updates (#2390) * fix error handling in CI deploy script * fix CI build script * add docker-compose.yml for CircleCI * install Docker Compose in CI * set docker/docker-compose versions in CI env * fix missing curl issue in CI test * Updated 1.5 packages
- Loading branch information
Showing
14 changed files
with
89 additions
and
69 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
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,17 @@ | ||
# Usage: | ||
# docker-compose up -d | ||
|
||
reaction: | ||
container_name: reaction | ||
image: reactioncommerce/reaction:latest | ||
links: | ||
- mongo | ||
ports: | ||
- "3000:3000" | ||
environment: | ||
ROOT_URL: "http://localhost" | ||
MONGO_URL: "mongodb://mongo:27017/reaction" | ||
|
||
mongo: | ||
image: mongo:latest | ||
command: mongod --storageEngine=wiredTiger |
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 |
---|---|---|
|
@@ -7,21 +7,21 @@ | |
# Core Meteor Packages | ||
### | ||
|
||
meteor-base@1.0.4 # Packages every Meteor app needs to have | ||
meteor-base@1.1.0 # Packages every Meteor app needs to have | ||
[email protected] # Packages for a great mobile UX | ||
[email protected] # Compile .html files into Meteor Blaze views | ||
[email protected] # ECMAScript 5 compatibility for older browsers. | ||
ecmascript@0.7.3 # Enable ECMAScript2015+ syntax in app code | ||
ecmascript@0.8.0 # 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) | ||
abernix:standard-minifier-js # a minifier plugin used for Meteor apps by default | ||
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].17 | ||
[email protected].18 | ||
[email protected] | ||
[email protected] | ||
[email protected].8 | ||
[email protected].9 | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
|
@@ -34,17 +34,19 @@ [email protected] | |
amplify | ||
mdg:validated-method | ||
[email protected] | ||
dynamic-import | ||
|
||
# Meteor Auth Packages | ||
accounts-base@1.2.17 | ||
accounts-base@1.3.0 | ||
[email protected] | ||
accounts-facebook@1.1.1 | ||
accounts-google@1.1.2 | ||
accounts-twitter@1.2.1 | ||
accounts-facebook@1.2.0 | ||
accounts-google@1.2.0 | ||
accounts-twitter@1.3.0 | ||
[email protected] | ||
# accounts-github | ||
# accounts-weibo | ||
# accounts-oauth | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
|
||
|
||
# Community Packages | ||
alanning:roles | ||
|
@@ -72,8 +74,8 @@ ongoworks:security | |
raix:ui-dropped-event | ||
risul:moment-timezone | ||
tmeasday:publish-counts | ||
vsivsi:[email protected] | ||
react-meteor-data | ||
vsivsi:job-collection@=1.4.0 | ||
react-meteor-data@=0.2.9 | ||
percolate:migrations | ||
gadicc:blaze-react-component | ||
|
||
|
@@ -94,6 +96,3 @@ johanbrook:publication-collector | |
# meteorhacks:sikka # additional ddp, login security | ||
|
||
# Custom Packages | ||
[email protected] | ||
[email protected] | ||
[email protected] |
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 @@ | ||
METEOR@1.4.4.2 | ||
METEOR@1.5 |
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,7 @@ | ||
// this is an expensive polyfill for clientside Buffer usage | ||
// TODO refactor to remove this buffer dependency | ||
global.Buffer = global.Buffer || require("buffer").Buffer; // eslint-disable-line | ||
|
||
// how to refactor | ||
// you can easily drop a breakpoint on the error in your browser's inspector, then refresh the page to hit the breakpoint and see via the call stack which package is trying to use Buffer | ||
// https://github.com/meteor/meteor/issues/8645 |
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