Skip to content
This repository has been archived by the owner on Dec 11, 2022. It is now read-only.

Update to Meteor 2.0 and enable HMR #45

Open
wants to merge 7 commits into
base: trunk
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions .meteor/packages
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,17 @@

[email protected] # Shared foundation for all Meteor packages
static-html # Define static page content in .html files
standard-minifier-css@1.6.1 # CSS minifier run for production mode
[email protected].0 # JS minifier run for production mode
standard-minifier-css@1.7.3 # CSS minifier run for production mode
[email protected].1 # JS minifier run for production mode
[email protected] # ECMAScript 5 compatibility for older browsers
ecmascript@0.14.3 # Enable ECMAScript2015+ syntax in app code
ecmascript@0.15.2 # Enable ECMAScript2015+ syntax in app code
[email protected] # Server-side component of the `meteor shell` command
webapp@1.9.1 # Serves a Meteor app over HTTP
server-render@0.3.1 # Support for server-side rendering
webapp@1.11.1 # Serves a Meteor app over HTTP
server-render@0.4.0 # Support for server-side rendering
[email protected] # Meteor transparent reactive programming library
[email protected]

# Meteor Auth Packages
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
2 changes: 1 addition & 1 deletion .meteor/release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
METEOR@1.11.1
METEOR@2.3.4
87 changes: 45 additions & 42 deletions .meteor/versions
Original file line number Diff line number Diff line change
@@ -1,72 +1,75 @@
accounts-base@1.7.0
accounts-password@1.6.2
accounts-base@2.0.1
accounts-password@2.0.0
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
blaze-tools@1.0.10
blaze-tools@1.1.2
[email protected]
[email protected]
caching-html-compiler@1.1.3
[email protected].0
caching-html-compiler@1.2.1
[email protected].1
[email protected]
[email protected]
ddp-client@2.3.3
ddp-client@2.5.0
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
dynamic-import@0.5.2
ecmascript@0.14.3
dynamic-import@0.7.1
ecmascript@0.15.2
[email protected]
[email protected].0
[email protected].0
[email protected].1
[email protected].1
[email protected]
email@2.0.0
email@2.1.1
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
logging@1.1.20
logging@1.2.0
[email protected]
[email protected].3
[email protected].0
minimongo@1.6.0
[email protected].4
[email protected].1
minimongo@1.7.0
[email protected]
modules@0.15.0
modules@0.16.0
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
promise@0.11.2
promise@0.12.0
[email protected]
[email protected]
[email protected]
[email protected]
[email protected].0
[email protected].1
[email protected]
[email protected].0
server-render@0.3.1
service-configuration@1.0.11
[email protected].1
server-render@0.4.0
service-configuration@1.1.0
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM reactioncommerce/meteor:1.10.2-v1 as builder
FROM reactioncommerce/meteor:2.0.0-v1 as builder

ENV APP_SOURCE_DIR /usr/local/src/appsrc
ENV APP_BUNDLE_DIR /usr/local/src/build
Expand All @@ -24,7 +24,7 @@ RUN printf "\\n[-] Building Meteor application...\\n" \
##############################################################################
# final build stage - create the final production image
##############################################################################
FROM node:12.16.1-slim
FROM node:12.20.1-slim

LABEL maintainer="Reaction Commerce <[email protected]>"

Expand Down
Loading