我正在使用前端maven插件在maven中运行npm和bower。 (https://github.com/eirslett/frontend-maven-plugin/blob/master/README.md#working-directory) 但我想使用bower-installer,它只保留所需的min文件而不是所有的repo。 (https://www.npmjs.com/package/bower-installer)。
但是尝试包含bower-installer会让我在maven中出错。
<execution>
<id>bower-installer</id>
<goals>
<goal>bower</goal>
</goals>
<configuration>
<arguments>-installer</arguments>
</configuration>
</execution>
在进行maven构建时,这需要作为bower -installer。
--- frontend-maven-plugin:1.3:bower (bower-installer) @ tomcat7 ---
[INFO] Running 'bower -installer' in C:\Users\userName\workspace\samplePrj
[INFO]
[INFO] Usage:
[INFO]
[INFO] bower <command> [<args>] [<options>]
但不会创建相应的文件夹。请注意凉亭和-installer之间的空间。该命令应该是bower-installer。