vue-meteor icon indicating copy to clipboard operation
vue-meteor copied to clipboard

Vue packages version mismatch:

Open SethaVa opened this issue 7 years ago • 1 comments

Get error

While loading plugin `vue-component` from package `akryum:vue-component`:

   /home/dara/.meteor/packages/akryum_vue-component/.0.12.3.h7l107.qrgy++os+web.browser+web.cordova/plugin.vue-component.os/npm/node_modules/meteor/vue-component/node_modules/vue-template-compiler/index.js:8:9: 
   
   Vue packages version mismatch:
   
   - [email protected]
   - [email protected]
   
   This may cause things to work incorrectly. Make sure to use the same version for both.
   If you are using vue-loader@>=10.0, simply update vue-template-compiler.
   If you are using vue-loader@<10.0 or vueify, re-installing vue-loader/vueify should bump vue-template-compiler to the latest.
   
   at Object.<anonymous>
   (/home/dara/.meteor/packages/akryum_vue-component/.0.12.3.h7l107.qrgy++os+web.browser+web.cordova/plugin.vue-component.os/npm/node_modules/meteor/vue-component/node_modules/vue-template-compiler/index.js:8:9)
   at Module._compile (module.js:635:30)
   at Object.Module._extensions..js (module.js:646:10)
   at Module.load (module.js:554:32)
   at Module.Mp.load (/tools/tool-env/install-runtime.js:16:29)
   at tryModuleLoad (module.js:497:12)
   at Function.Module._load (module.js:489:3)
   at Module.require (module.js:579:17)
   at require (internal/module.js:11:18)
   at npmRequire (/tools/isobuild/bundler.js:1993:14)
   at Module.useNode (packages/modules-runtime.js:687:18)
   at fileEvaluate (packages/modules-runtime.js:332:20)
   at require (packages/modules-runtime.js:228:16)
   at vue-compiler.js (packages/vue-component/plugin/vue-compiler.js:13:22)
   at fileEvaluate (packages/modules-runtime.js:333:9)
   at require (packages/modules-runtime.js:228:16)
   at <runJavaScript-19>:26443:1
   at <runJavaScript-19>:26450:3

My Package

// NPM
{
  "name": "meteorEx",
  "private": true,
  "scripts": {
    "start": "meteor run"
  },
  "dependencies": {
    "babel-runtime": "^6.26.0",
    "meteor-node-stubs": "^0.3.2",
    "vue": "^2.5.8"
  }
}
---------------------
// Meteor
# 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.

[email protected]             # Packages every Meteor app needs to have
[email protected]       # Packages for a great mobile UX
[email protected]                   # The database Meteor supports right now
#[email protected] # Compile .html files into Meteor Blaze views
[email protected]            # Reactive variable for tracker
[email protected]                 # Meteor's client-side reactive programming library

[email protected]   # CSS minifier run for production mode
[email protected]    # JS minifier run for production mode
[email protected]                # ECMAScript 5 compatibility for older browsers
[email protected]              # Enable ECMAScript2015+ syntax in app code
[email protected]            # Server-side component of the `meteor shell` command

[email protected]             # Publish all data to the clients (for prototyping)
[email protected]                # Allow all DB writes from clients (for prototyping)

static-html
dynamic-import

fortawesome:fontawesome
akryum:vue-component

SethaVa avatar Jan 10 '18 04:01 SethaVa

Hi, I got exactly the same error, when running meteor update or meteor run or meteor.

@SethaVa, how do you finally make the project running properly?

tarvos21 avatar May 03 '18 07:05 tarvos21