Athena Wisdom
Athena Wisdom

Reputation: 6811

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-------------------

Upvotes: 5

Views: 2389

Answers (1)

Tarang
Tarang

Reputation: 75945

Run mrt update first

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

Upvotes: 9

Related Questions