ratiw / vue-table

data table simplify! -- vuetable is a Vue.js component that will automatically request (JSON) data from the server and display them nicely in html table with swappable/extensible pagination component.
MIT License
1.83k stars 303 forks source link

Installing/Updating to latest version via npm #106

Closed haakym closed 7 years ago

haakym commented 7 years ago

Hi. I'm using this package in a blank Laravel 5.3 project to test it out.

I followed the set-up instructions on the readme and installed via npm and then managed to update vue-resource, my package.json now looks like this:

{
  "private": true,
  "scripts": {
    "prod": "gulp --production",
    "dev": "gulp watch"
  },
  "devDependencies": {
    "bootstrap-sass": "^3.3.7",
    "gulp": "^3.9.1",
    "jquery": "^3.1.0",
    "laravel-elixir": "^6.0.0-9",
    "laravel-elixir-vue": "^0.1.4",
    "laravel-elixir-webpack-official": "^1.0.2",
    "lodash": "^4.14.0",
    "vue": "^1.0.26",
    "vue-resource": "^1.0.3",
    "vue-table": "0.0.1"
  }
}

Based on the versioning from the git repo and npmjs.com I am pretty sure v0.0.1 is not the most up to date version! I should be using v1.5.4, right?

When I check for updates using ncu I have the following:

C:\laragon\www\ratiw-vue-table  29/09/2016 12:03:27.62  
λ ncu -u vue-table                                      
[..................] \ :                                
All dependencies match the latest package versions :)   

Which is in contrast to what happened when I updated vue-resource:

C:\laragon\www\ratiw-vue-table  29/09/2016 12:03:03.52  
λ ncu -u vue-resource                                   
[..................] \ :                                
 vue-resource  ^0.9.3  →  ^1.0.3                        

Upgraded C:\laragon\www\ratiw-vue-table\package.json    

Any ideas what I'm doing wrong here? Thanks!

ratiw commented 7 years ago

@haakym My npm package is vuetable.

vue-table is someone else package.

haakym commented 7 years ago

Ahhh! Thank you ratiw! I've been trying out various vue table packages today and seem to have got my wires crossed.

Now I can finally try out your package. Thanks again!!