jspm / npm

NPM Location Service
19 stars 34 forks source link

jspm installs different files than npm #127

Closed jaroslavrehorka closed 8 years ago

jaroslavrehorka commented 8 years ago

Hi, I've strange problem with library knexjs (query builder), when I run jspm install npm:knex it installs files with different content (e.g. src/client.js) compared to same files installed with npm install knex. I believe both versions should be the same (0.10.0) but jspm's version is different and content of all folders in lib or src folders is missing.

Any ideas where is the problem? Thanks

guybedford commented 8 years ago

Thanks, I've added a fix for this in jspm 0.17 in https://github.com/jspm/jspm-cli/commit/ec01fef473b770680acab064ce8eb91e2fea4746.

jaroslavrehorka commented 8 years ago

Thank's, unfortunately this helped just partly, It copies all dirs correctly, however there are no files in them

guybedford commented 8 years ago

Because of the cache, you'll need to install with jspm install npm:knex -f to test this out properly.

jaroslavrehorka commented 8 years ago

thanks, it works properly now =)