Haikal Nashuha
Haikal Nashuha

Reputation: 3048

Migrating Meteor Project to Other Machine

I tried to migrate my Meteor to other machine, both are Windows 7 but apparently this error popped up when I tried to run the app. What is the cause? I tried registering the package but it said it was already using.

Here is the error:

No dependency info in bundle. Filesystem monitoring disabled.
=> Errors prevented startup:
Exception while bundling application:
Error: Package not found: standard-app-packages
    at self.api.use (C:\Program Files (x86)\Meteor\tools\bundler.js:132:17)
    at Array.forEach (native)
    at Function._.each._.forEach (C:\Program Files (x86)\Meteor\lib\node_modules
    \underscore\underscore.js:78:11)....(truncated)

What did I miss out during the transfer? I simply copied the app folder. Did I skip something?

Upvotes: 0

Views: 607

Answers (1)

Tarang
Tarang

Reputation: 75955

From what it looks like the Meteor on your Windows machine is an older version. Some time ago they used the standard-app-packages instead of a larger list as a sort of generic shortcut package.

If Meteor can't find this package but Meteor still runs on your machine, its likely that you have an older version of meteor.

Check that the file at .meteor/release exists and the version in it matches the version of Meteor on your windows machine.

Upvotes: 1

Related Questions