Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to Meteor 2.0, React 16.14.0 and enable HMR #344

Merged
merged 8 commits into from
Feb 26, 2021
Merged
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
13 changes: 7 additions & 6 deletions .meteor/packages
Original file line number Diff line number Diff line change
Expand Up @@ -11,30 +11,30 @@ [email protected] # 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.14.3 # Enable ECMAScript2015+ syntax in app code
ecmascript@0.15.0 # 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
[email protected].0
[email protected].1
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
logging@1.1.20
[email protected].0
logging@1.2.0
[email protected].1
[email protected]
[email protected]
mdg:validated-method
[email protected]
dynamic-import@0.5.2
dynamic-import@0.6.0
[email protected]

# Meteor Auth Packages
accounts-base@1.7.0
accounts-base@1.8.0

# Community Packages
aldeed:[email protected]
Expand All @@ -47,3 +47,4 @@ orionsoft:graphql-compiler

# Custom Packages
jquery
hot-module-replacement
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.0
39 changes: 21 additions & 18 deletions .meteor/versions
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
accounts-base@1.7.0
accounts-base@1.8.0
aldeed:[email protected]
aldeed:[email protected].0
aldeed:[email protected].1
aldeed:[email protected]
[email protected]
[email protected]
autoupdate@1.6.0
babel-compiler@7.5.3
autoupdate@1.7.0
babel-compiler@7.6.0
[email protected]
[email protected]
[email protected]
Expand All @@ -15,33 +15,34 @@ [email protected]
[email protected]
[email protected]
[email protected]
[email protected].0
[email protected].1
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
ddp-client@2.3.3
ddp-client@2.4.0
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
dynamic-import@0.5.2
ecmascript@0.14.3
dynamic-import@0.6.0
ecmascript@0.15.0
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
gadicc:[email protected].2
gadicc:[email protected].3
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected].2
[email protected].3
[email protected]
[email protected]
[email protected]
Expand All @@ -50,22 +51,23 @@ [email protected]
[email protected]
[email protected]
[email protected]
logging@1.1.20
logging@1.2.0
mdg:[email protected]
[email protected]
[email protected]
meteorhacks:[email protected]
[email protected]
[email protected]
[email protected].0
[email protected].1
[email protected]
[email protected]
[email protected]
modules@0.15.0
modules@0.16.0
[email protected]
[email protected]
momentjs:[email protected]
[email protected].0
[email protected].1
[email protected].1
[email protected].2
[email protected]
[email protected]
[email protected]
Expand All @@ -76,9 +78,10 @@ [email protected]
raix:[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected].0
[email protected].1
[email protected]
[email protected]
[email protected]
Expand All @@ -98,5 +101,5 @@ [email protected]
[email protected]
[email protected]
[email protected]
webapp@1.9.1
webapp-hashing@1.0.9
webapp@1.10.0
webapp-hashing@1.1.0
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 @@ -25,7 +25,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
3 changes: 2 additions & 1 deletion imports/plugins/core/orders/client/components/OrderAppBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,8 @@ OrderAppBar.propTypes = {
classes: PropTypes.object,
order: PropTypes.shape({
_id: PropTypes.string.isRequired,
status: PropTypes.string
status: PropTypes.string,
fulfillmentGroups: PropTypes.array
})
};

Expand Down
Loading