我有一个现有的 ant 文件来构建Java代码。我需要将以下命令集成到构建中:
1( npm install
2( npm run构建
如何整合它?
我相信我需要添加一个新目标来运行这些命令,但不确定确切的代码/XML更改。
<target name="npm-install">
<exec dir="./web/public" executable="cmd.exe" output="npm-install.txt">
<arg line="/c npm install"/>
</exec>
</target>
<target name="npm-build">
<exec dir="./web/public" executable="cmd.exe" output="npm-build.txt">
<arg line="/c npm run build"/>
</exec>
</target>