Home > Back-end >  Babel package name convention on npm
Babel package name convention on npm

Time:02-12

Babel seems to offer two sets of packages on npm. One is named with a '@' prefix and '/' separator such as @babel/core. The other is named without a '@' prefix and with '-' separator such as babel-core. Is it because they changed the naming convention since version 7 or due to another reason?

Thanks,

CodePudding user response:

Looks like they changed the naming convention since version 7.

  • Related