Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error: No Such Package when bundling Meteor.js app

When my Meteor app is being bundled (using Meteor UP mup deploy), it gives a set of errors below. Do I have to manually install (globally?) these packages using Meteorite before bundling?

$ mup deploy

Meteor-UP : Production Quality Meteor Deployments
--------------------------------------------------

Bundling Started: /var/www/test-app
Bundling Error:  Command failed:
-------------------STDOUT-------------------
rss: updating npm dependencies -- rss...
mailchimp: updating npm dependencies -- mailchimp...
Errors prevented bundling:
While building the application:
error: no such package: 'database-forms'
error: no such package: 'crypto-md5'
error: no such package: 'momentjs'
error: no such package: 'iron-router'
error: no such package: 'nprogress'

-------------------STDERR-------------------
like image 721
Athena Wisdom Avatar asked Dec 14 '13 15:12

Athena Wisdom


1 Answers

Run mrt update first

Once everything has updated and the packages have downloaded then you can run mup

like image 83
Tarang Avatar answered Oct 13 '22 11:10

Tarang