Package.json:设置“版本”来自另一个文件的属性
是否可以通过另一个 (js || json) 文件设置 package.json 中的“version”属性?
像这样的东西:
import {AppVersion} from "./index";
{
"name": "test_app",
"version": AppVersion,
}
is it possible, to set the "version" property in the package.json through another (js || json) File?
Something like this:
import {AppVersion} from "./index";
{
"name": "test_app",
"version": AppVersion,
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,这是不可能的。
package.json
文件 必须是JSON 文件,而不是 JS 文件,并且不能使用import
语法。No, it's not possible. The
package.json
file must be a JSON file, not a JS file, and cannot useimport
syntax.