ember-cli-101-errata
ember-cli-101-errata copied to clipboard
Page 93: npm adduser
In order to be able to run npm publish
successfully, you first have to have setup your username and password by running npm adduser
otherwise you'll get swamped/confused by a bunch of error messages.
You might also want to explain/warn the reader that npm publish
will actually put the addon in the remote npm repository http://www.npmjs.org/
Like @kgish said, npm publish
pushes the addon to the npm repository, wouldn't it be better to use something like npm link
Edit:
Maybe using npm install --save-dev ../ember-cli-fill-murray
would work better