jakiestfu / Medium.js

A tiny JavaScript library for making contenteditable beautiful (Like Medium's editor)
http://jakiestfu.github.io/Medium.js/
4.39k stars 404 forks source link

no 2.* tags on npm #162

Open aeneasr opened 9 years ago

aeneasr commented 9 years ago

Medium.js is released as 2.0.0-alpha something in bower, but only 1.0.1 in npm. Could you please push tag version 2.* to npm?

Jule- commented 8 years ago

@robertleeplummerjr I am stuck behind too, please push the alpha tag on npm! :) I think you have to patch your tag 2.0.0-alpha because the package.json is in version 1.0.1.

If the HEAD is stable enough (the version at http://jakiestfu.github.io/Medium.js/docs/ seems much less buggy that the 1.0.1 version) maybe you can make an new alpha tag and publish it, or you can try to branch from actual 2.0.0-alpha tag.

// Change the package.json version
npm version 2.0.0-alpha
// then commit and push
// then npm publish like this:
npm publish . --tag 2.0.0-alpha

(source: http://carrot.is/coding/npm_prerelease)

It should not take so much time so thank you for your help and your good work. :)

Jule- commented 8 years ago

Or maybe you can just add "registry": "npm" in your package.json in order that we can use jspm to resolve correctly dependencies when we point directly at github repository.