Babel-runtime could not be found (babel runtime installed)

I’ve just updated to meteor 1.4.2.3

When I try to run meteor I got:

Unable to resolve some modules:
  "babel-runtime/helpers/classCallCheck" in
/C/Projects/web/skillfellows/code/client/templates/layouts/list_container.js (web.browser)
  "babel-runtime/helpers/possibleConstructorReturn" in
/C/Projects/web/skillfellows/code/client/templates/layouts/list_container.js (web.browser)
  "babel-runtime/helpers/inherits" in /C/Projects/web/skillfellows/code/client/templates/layouts/list_container.js
(web.browser)
If you notice problems related to these missing modules, consider running:
  meteor npm install --save babel-runtime
Unable to resolve some modules:
  "babel-runtime/helpers/classCallCheck" in /C/Projects/web/skillfellows/code/server/payment.js (os.windows.x86_32)
If you notice problems related to these missing modules, consider running:
  meteor npm install --save babel-runtime

I got the message The babel-runtime npm package could not be found in your node_modules in my browser console.

I already did:

meteor npm install --save babel-runtime
meteor npm rebuild

Anyone an idea?

I think I ran into the same thing? And resolved it by adding this to my package.json?

"dependencies": {
  "babel-runtime": "^6.18.0",
}
1 Like