-
Notifications
You must be signed in to change notification settings - Fork 83
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 #280 from reactioncommerce/feat-aldeed-update-meteor
feat: update to Meteor 1.10.2
- Loading branch information
Showing
10 changed files
with
82 additions
and
81 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,16 +8,16 @@ | |
### | ||
|
||
[email protected] # Packages every Meteor app needs to have | ||
mobile-experience@1.0.5 # Packages for a great mobile UX | ||
mobile-experience@1.1.0 # Packages for a great mobile UX | ||
[email protected] # Compile .html files into Meteor Blaze views | ||
[email protected] # ECMAScript 5 compatibility for older browsers. | ||
[email protected].0 # Enable ECMAScript2015+ syntax in app code | ||
[email protected].3 # Enable ECMAScript2015+ syntax in app code | ||
[email protected] # ensure meteor method argument validation | ||
[email protected] # security-related policies enforced by newer browsers | ||
juliancwirko:[email protected] # CSS post-processing plugin (replaces standard-minifier-css) | ||
[email protected] # ReactiveDict whose contents are preserved across Hot Code Push | ||
[email protected] # Meteor transparent reactive programming library | ||
mongo@1.8.0 | ||
mongo@1.10.0 | ||
[email protected] | ||
[email protected] | ||
[email protected] | ||
|
@@ -29,12 +29,12 @@ [email protected] | |
[email protected] | ||
[email protected] | ||
mdg:validated-method | ||
shell-server@0.4.0 | ||
[email protected].1 | ||
shell-server@0.5.0 | ||
[email protected].2 | ||
[email protected] | ||
|
||
# Meteor Auth Packages | ||
accounts-base@1.5.0 | ||
accounts-base@1.6.0 | ||
|
||
# Community Packages | ||
aldeed:[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.9 | ||
METEOR@1.10.2 |
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 +1 @@ | ||
12.14.0 | ||
12.16.1 |
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,4 +1,4 @@ | ||
FROM reactioncommerce/meteor:1.9.0-v1 as builder | ||
FROM reactioncommerce/meteor:1.10.2-v1 as builder | ||
|
||
ENV APP_SOURCE_DIR /usr/local/src/appsrc | ||
ENV APP_BUNDLE_DIR /usr/local/src/build | ||
|
@@ -25,7 +25,7 @@ RUN printf "\\n[-] Building Meteor application...\\n" \ | |
############################################################################## | ||
# final build stage - create the final production image | ||
############################################################################## | ||
FROM node:12.14.0-slim | ||
FROM node:12.16.1-slim | ||
|
||
LABEL maintainer="Reaction Commerce <[email protected]>" | ||
|
||
|
@@ -44,7 +44,7 @@ WORKDIR /usr/local/src/app/programs/server/ | |
RUN npm install --production --no-audit | ||
|
||
# Also install mongodb pkg needed by the waitForMongo script | ||
RUN npm install -E --no-save mongodb@3.3.5 | ||
RUN npm install -E --no-save mongodb@3.5.7 | ||
|
||
WORKDIR /usr/local/src/app | ||
|
||
|
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,4 +1,4 @@ | ||
FROM reactioncommerce/meteor:1.9.0-v1 | ||
FROM reactioncommerce/meteor:1.10.2-v1 | ||
|
||
# hadolint ignore=DL3002 | ||
USER root | ||
|
Oops, something went wrong.