Currently in the process of updating Crowducate from Meteor 0.8 to version 1.0 by running the command "meteor update". You can find the branch for Meteor 1.0 here.
Encountered some challenges during the update, specifically with replacing the old iron-router with the new iron:router. As a result, both versions are currently installed and this needs to be rectified. The Meteor package file contains:
# Meteor packages used by this project, one per line.
#
# 'meteor add' and 'meteor remove' will edit this file for you,
# but you can also edit it by hand.
# Packages by Meteor
standard-app-packages
preserve-inputs
audit-argument-checks
spiderable
less
coffeescript
accounts-password
accounts-facebook
accounts-google
accounts-ui
# Packages by community
minimongoid
iron-router
iron:router
kaptron:minimongoid
# Packages by Manuel Schoebel
When running meteor, I encountered the following error:
At the end, another error popped up which states:
Exception in defer callback: TypeError: Cannot read property 'insert' of undefined
at Utils.extend.autoRender (http://localhost:3000/packages/iron-router.js?af9f4791b8af4582a37d93bcade1eed163a976a8:1636:17)
at http://localhost:3000/packages/iron-router.js?af9f4791b8af4582a37d93bcade1eed163a976a8:1465:16
at _.extend.withValue (http://localhost:3000/packages/meteor.js?61916b1060b33931a21f104fbffb67c2f3d493c5:945:17)
at http://localhost:3000/packages/meteor.js?61916b1060b33931a21f104fbffb67c2f3d493c5:430:45
at Object.<anonymous> (http://localhost:3000/packages/meteor.js?61916b1060b33931a21f104fbffb67c2f3d493c5:973:22)
at onGlobalMessage (http://localhost:3000/packages/meteor.js?61916b1060b33931a21f104fbffb67c2f3d493c5:367:23)
This has led to various components being undefined, including my local change from Meteor.Collection to Mongo.Collection. Currently, both remain undefined.
Appreciate any assistance with resolving these issues, Amir
Side note: Open to collaborating with others on this project. Get in touch! :)