esnext / es6-module-transpiler

Tomorrow’s JavaScript module syntax today
http://esnext.github.io/es6-module-transpiler/
Other
1.21k stars 85 forks source link

lib dir not in npm package #130

Closed jakecraige closed 10 years ago

jakecraige commented 10 years ago

Every time I try to install this with npm

npm install --save es6-module-transpiler

I can't require it because the lib dir is not included in that version. I'm not sure if this is an issue with this repo or npm but I would like to install this and have it work for me, lol.

Steps to recreate

mkdir es6
cd es6
npm init
npm install --save es6-module-transpiler
ls node_modules/es6-module-transpiler

and I see

LICENSE        README.md      TRANSITION.md  bin/           node_modules/  package.json

Any help appreciated, thanks.

caridy commented 10 years ago

this is why: https://github.com/square/es6-module-transpiler/blob/master/.npmignore#L8

eventualbuddha commented 10 years ago

Whoops! I knew I'd miss something in the giant refactor. Fixed by 82716bb8c6a65ccc1a093059e988efe21b90a4e2 in v0.5.1 (hopefully).

jakecraige commented 10 years ago

thanks for the quick response. thanks guys

edit: looks good for me now