Started adding async calls for upgrading to Meteor 3.0. Numerous other fixes.
This commit is contained in:
@@ -5,27 +5,26 @@
|
||||
# but you can also edit it by hand.
|
||||
|
||||
meteor-base@1.5.1 # Packages every Meteor app needs to have
|
||||
mobile-experience@1.1.0 # Packages for a great mobile UX
|
||||
mongo@1.16.5 # The database Meteor supports right now
|
||||
blaze-html-templates@1.0.4 # Compile .html files into Meteor Blaze views
|
||||
mobile-experience@1.1.1 # Packages for a great mobile UX
|
||||
mongo@1.16.10 # The database Meteor supports right now
|
||||
blaze-html-templates@2.0.1 # Compile .html files into Meteor Blaze views
|
||||
reactive-var@1.0.12 # Reactive variable for tracker
|
||||
tracker@1.3.1 # Meteor's client-side reactive programming library
|
||||
tracker@1.3.3 # Meteor's client-side reactive programming library
|
||||
tomwasd:history-polyfill # Adds IE 8/9 support for HTML5 history.
|
||||
email@2.2.4 # Adds the Meteor/Email package for sending lost password emails
|
||||
email@2.2.6 # Adds the Meteor/Email package for sending lost password emails
|
||||
|
||||
standard-minifier-css@1.9.0 # CSS minifier run for production mode
|
||||
standard-minifier-css@1.9.2 # CSS minifier run for production mode
|
||||
standard-minifier-js@2.8.1 # JS minifier run for production mode
|
||||
es5-shim@4.8.0 # ECMAScript 5 compatibility for older browsers.
|
||||
poorvavyas:es6-shim
|
||||
ecmascript@0.16.6 # Enable ECMAScript2015+ syntax in app code
|
||||
ecmascript@0.16.8 # Enable ECMAScript2015+ syntax in app code
|
||||
|
||||
#accounts-ui
|
||||
#accounts-base
|
||||
accounts-password@2.3.4
|
||||
accounts-password@2.4.0
|
||||
useraccounts:core
|
||||
useraccounts:unstyled
|
||||
useraccounts:flow-routing # Configures email flows. Used for AccountsTemplates class.
|
||||
alanning:roles # Adds roles to the user mix. https://atmospherejs.com/alanning/roles && https://github.com/alanning/meteor-roles/blob/master/examples/flow-router/
|
||||
|
||||
kadira:flow-router
|
||||
arillo:flow-router-helpers # Provides various template helpers such as {{pathFor 'templateName'}}
|
||||
@@ -34,14 +33,12 @@ kadira:blaze-layout
|
||||
|
||||
#shell-server@0.4.0 # ???
|
||||
#meteortoys:allthings
|
||||
stylus@2.513.13
|
||||
session@1.2.1
|
||||
##browser-policy # Adds support for specifying browser level security rules related to content and what's allowed to laod on the page.
|
||||
check@1.3.2 # Allows for checking the structure and types of arguments passed to Meteor methods and publications.
|
||||
check@1.4.1 # Allows for checking the structure and types of arguments passed to Meteor methods and publications.
|
||||
#audit-argument-checks # Used in combination with the Check package for checking the structure and types of arguments passed to Meteor methods and publications. Automatically alerts when a method or publication does not use a check() call.
|
||||
|
||||
aldeed:simple-schema@1.5.3
|
||||
aldeed:collection2
|
||||
#aldeed:simple-schema@1.5.3 #Should now be included in collection2 v4+
|
||||
#matb33:collection-hooks # Allows the collections to register handlers that run before or after database interactions.
|
||||
#zimme:collection-softremovable
|
||||
|
||||
@@ -60,10 +57,13 @@ juliancwirko:s-alert # Client error/alert handling
|
||||
jcbernack:reactive-aggregate # Allows us to create a new client collection (from the server) with the contents being an aggregate of server data. Note that aggregation can only be done on the server currently as mini-mongo does not support it.
|
||||
ostrio:logger
|
||||
ostrio:loggermongo
|
||||
dynamic-import@0.7.2
|
||||
markdown@1.0.12
|
||||
dynamic-import@0.7.3
|
||||
markdown@2.0.0
|
||||
wcrisman:jquery-custom-scrollbar
|
||||
underscore@1.0.12
|
||||
underscore@1.6.1
|
||||
meteorhacks:aggregate # Allows databaseName.aggragate(pipeline) calls the exact same way you would on the command line in the mongo tool.
|
||||
#babrahams:constellation # Provides client side debugging when the server is not run in production mode.
|
||||
jquery
|
||||
aldeed:collection2
|
||||
fourseven:scss
|
||||
alanning:roles
|
||||
|
||||
Reference in New Issue
Block a user