danielstern / generator-es6-webapp

A Yeoman generator to create an app which automatically transpiles ES6 to ES5 - also includes LESS and Skeleton
5 stars 2 forks source link

Most recent commit not on NPM #3

Open reedspool opened 8 years ago

reedspool commented 8 years ago

I came here because I had a bug I fixed locally and I was going to PR it. It is already solved by this commit:

https://github.com/danielstern/generator-es6-webapp/commit/6701bc10c721f43d0ca2394674681da8af8f7fdb

npm install'd and ran the generator about a week ago. So NPM is just not updated? Thanks for this generator it's awesome!

danielstern commented 8 years ago

Hey @reedspool

I added you as a collaborator, feel free to make the appropriate fixes to get the newest version on NPM.

Thanks for the positive feedback. Cheers, DS

reedspool commented 8 years ago

Never tried this before, but I enjoyed the challenge. I wasn't able to do the npm publish command. Here's everything I did:

1) Started with the documentation: https://docs.npmjs.com/getting-started/publishing-npm-packages 2) Made a user at https://www.npmjs.com/ 3) Cloned this repo to my desktop. 4)

> npm version patch
v0.1.1

5)

> npm adduser
Username: reedspool
Password: 
Email: (this IS public) reedmagic@gmail.com

6)

> npm publish
npm ERR! publish Failed PUT 403
npm ERR! Darwin 13.4.0
npm ERR! argv "node" "/usr/local/bin/npm" "publish"
npm ERR! node v0.10.26
npm ERR! npm  v2.1.9
npm ERR! code E403

npm ERR! You do not have permission to publish 'generator-es6-webapp'. Are you logged in as the        correct user? : generator-es6-webapp

7)

> npm owner ls
danielstern <daniel@danielstern.ca>

So... I think you need to do these commands yourself? Hopefully this is plenty documentation!

Thanks!