I am using material-ui in my app. I forked material ui and rolled back to pervious version and made some changes there, now I want to use the forked repo in my project so I used the following steps to install module from here:
- Go to
fork's
page - Go to
commits
- On the right side of the
commit
you want to use clickBrowse code
- On the browse code page right-click on
Download ZIP
button (or whatever it is that you are seeing) and copy . It should be something like this
https://github.com/SoftwareMarbles/express-jsend/archive/fdd4089087d916fa6e3b5abaa1ff9dd9ea96df8d.zip
- Edit that URL replacing
archive
withtarball
and removing the.zip
extension. You should end up with something like
https://github.com/SoftwareMarbles/express-jsend/tarball/fdd4089087d916fa6e3b5abaa1ff9dd9ea96df8d
- Paste that into your package.json instead of the version. Like this:
"express-jsend": "url/from/step/5"
npm install
runs successfully without giving any errors but it does not compile the js
files in src
and put them in lib
folder as compare to when i run npm install with following code in my package.json
"material-ui": "0.14.4"
So my question:
Why is npm not compiling the src files and putting them in lib folder?