LiveScript icon indicating copy to clipboard operation
LiveScript copied to clipboard

Inform users of new 'livescript' package name with npm-deprecate

Open anko opened this issue 9 years ago • 3 comments

Looks like the package name LiveScript is no longer in use

> npm show LiveScript versions     

[ '0.9.0',
  '0.9.1',
  '0.9.2',
  ... snip ...
  '1.2.0',
  '1.3.0',
  '1.3.1' ]

while the livescript name (lowercase) has the newest 1.4.0 version

> npm show livescript versions
[ '0.0.1', '1.4.0' ]

@gkz Have you considered running npm deprecate to tell people?

e.g.

npm deprecate LiveScript@"< 1.4.0" "Versions from 1.4.0 onwards will be published with the package name 'livescript' (all lowercase). Update your package.json!"

anko avatar Mar 13 '16 03:03 anko

I don't have access to the LS package.

vendethiel avatar Mar 15 '16 14:03 vendethiel

I tried this, but got an error:

"You cannot publish over the previously published version 1.3.1." : LiveScript

:(

gkz avatar Mar 30 '16 06:03 gkz

@gkz Have you tried npm deprecate LiveScript@'1.4<'?

dead-claudia avatar Jun 05 '16 03:06 dead-claudia