babel-core 和@babel/core 有什么区别?
What is the difference between babel-core and @babel/core?
有什么区别
babel-core and @babel/core ?
它们是同一个东西但版本不同吗?如果不是,你什么时候用一个,什么时候用另一个?
谢谢。
从 Babel 7 开始,Babel 团队切换到 scoped packages,因此您现在必须使用 @babel/core
而不是 babel-core
。
但本质上,@babel/core
只是 babel-core
.
的更新版本
这样做是为了更好地区分哪些软件包是官方的,哪些是第三方的。
有什么区别 babel-core and @babel/core ?
它们是同一个东西但版本不同吗?如果不是,你什么时候用一个,什么时候用另一个?
谢谢。
从 Babel 7 开始,Babel 团队切换到 scoped packages,因此您现在必须使用 @babel/core
而不是 babel-core
。
但本质上,@babel/core
只是 babel-core
.
这样做是为了更好地区分哪些软件包是官方的,哪些是第三方的。