Get error on Meteor 1.3-beta.16

I get error on Meteor 1.3-beta.16

Did you forget to call 'Npm.depends' in package.js within the 'meteor' package?

Had the same. After few hours found that if I use ONLY those packages it works

meteor-base             # Packages every Meteor app needs to have
mobile-experience       # Packages for a great mobile UX
mongo                   # The database Meteor supports right now
tracker                 # Meteor's client-side reactive programming library

standard-minifier-css   # CSS minifier run for production mode
standard-minifier-js    # JS minifier run for production mode
es5-shim                # ECMAScript 5 compatibility for older browsers.
ecmascript              # Enable ECMAScript2015+ syntax in app code
coffeescript

Thanks for reply, I tried this but don’t work

# Meteor packages used by this project, one per line.
# Check this file (and the other files in this directory) into your repository.
#
# 'meteor add' and 'meteor remove' will edit this file for you,
# but you can also edit it by hand.

meteor-base             # Packages every Meteor app needs to have
mobile-experience       # Packages for a great mobile UX
mongo                   # The database Meteor supports right now
#blaze-html-templates    # Compile .html files into Meteor Blaze views
#reactive-var            # Reactive variable for tracker
#jquery                  # Helpful client-side library
tracker                 # Meteor's client-side reactive programming library

standard-minifier-css   # CSS minifier run for production mode
standard-minifier-js    # JS minifier run for production mode
es5-shim                # ECMAScript 5 compatibility for older browsers.
ecmascript              # Enable ECMAScript2015+ syntax in app code

#autopublish             # Publish all data to the clients (for prototyping)
#insecure                # Allow all DB writes from clients (for prototyping)

coffeescript

With default package.json

{
  "name": "testing1.3",
  "private": true,
  "scripts": {
    "start": "meteor run"
  },
  "dependencies": {
    "meteor-node-stubs": "~0.2.0"
  }
}

I’ve tried what you suggest but I still have the same error with 1.3-beta.16 on Windows 10, 64-bit :

C:\Users\...\meteor\auUi13b16\.meteor\local\build\programs\server\boot.js:313
W20160311-11:00:18.351(0)? (STDERR) }).run();
W20160311-11:00:18.351(0)? (STDERR)    ^
W20160311-11:00:18.351(0)? (STDERR) Error: Can't find npm module 'meteor-deque'. Did you forget to call 'Npm.depends' in package.js within the 'meteor' package?
W20160311-11:00:18.352(0)? (STDERR)     at Object.Npm.require (C:\Users\...\meteor\auUi13b16\.meteor\local\build\programs\server\boot.js:193:17)
W20160311-11:00:18.352(0)? (STDERR)     at Meteor.startup (packages/meteor/fiber_helpers.js:17:1)
W20160311-11:00:18.352(0)? (STDERR)     at packages/meteor/fiber_helpers.js:182:1
W20160311-11:00:18.352(0)? (STDERR)     at C:\Users\...\meteor\auUi13b16\.meteor\local\build\programs\server\packages\meteor.js:1319:3
W20160311-11:00:18.353(0)? (STDERR)     at C:\Users\...\meteor\auUi13b16\.meteor\local\build\programs\server\boot.js:272:10
W20160311-11:00:18.353(0)? (STDERR)     at Array.forEach (native)
W20160311-11:00:18.353(0)? (STDERR)     at Function._.each._.forEach (C:\Users\...\AppData\Local\.meteor\packages\meteor-tool\1.1.13-beta.16\mt-os.windows.x86_32\dev_bundle\server-lib\node_modules\underscore\underscore.js:79:11)
W20160311-11:00:18.353(0)? (STDERR)     at C:\Users\...\meteor\auUi13b16\.meteor\local\build\programs\server\boot.js:133:5
=> Exited with code: 8

Yep! On windows got the same, but works on ubuntu 15.3/ I moved back to beta-12 until stable version

Has one of the posters above created a GitHub issue?

I have created a GitHub issue with the following title:

I got the same error when trying to upgrade to version 1.3-beta.16 from 1.3-beta.12 on Windows 10:

W20160313-19:12:08.555(7)? (STDERR) Error: Can't find npm module 'meteor-deque'. Did you forget to call 'Npm.depends' in package.js within the 'meteor' package?
W20160313-19:12:08.556(7)? (STDERR)     at Object.Npm.require (D:\Documents\Meteor\Projects\SKYBIT\.meteor\local\build\programs\server\boot.js:193:17)
W20160313-19:12:08.556(7)? (STDERR)     at Meteor.startup (packages/meteor/fiber_helpers.js:17:1)
W20160313-19:12:08.556(7)? (STDERR)     at packages/meteor/fiber_helpers.js:182:1
W20160313-19:12:08.556(7)? (STDERR)     at D:\Documents\Meteor\Projects\SKYBIT\.meteor\local\build\programs\server\packages\meteor.js:1319:3
W20160313-19:12:08.556(7)? (STDERR)     at D:\Documents\Meteor\Projects\SKYBIT\.meteor\local\build\programs\server\boot.js:272:10
W20160313-19:12:08.556(7)? (STDERR)     at Array.forEach (native)
W20160313-19:12:08.557(7)? (STDERR)     at Function._.each._.forEach (C:\Users\-\AppData\Local\.meteor\packages\meteor-tool\1.1.13-beta.16\mt-os.windows.x86_32\dev_bundle\server-lib\node_modules\underscore\underscore.js:79:11)
W20160313-19:12:08.557(7)? (STDERR)     at D:\Documents\Meteor\Projects\SKYBIT\.meteor\local\build\programs\server\boot.js:133:5

That’s a duplicate of https://github.com/meteor/meteor/issues/6448

Thanks rhywden for noticing and reporting it.

I have closed Issue: [1.3-beta.16] [Windows] Did you forget to call ‘Npm.depends’