我有一个使用Java和angular作为前端的Web应用程序
几天前,我从ng5迁移到ng7,并开始使用npm而不是纱线包管理器。
迁移之前一切正常,但之后运行spring-boot:run goal
时,我得到了下面的错误提示
Failed to execute goal com.github.eirslett:frontend-maven-plugin:1.7.5:npm (angularcli build dev) on project ... : Failed to run task: 'npm run build' failed
因为这个错误,我对角度的显示错误
no such file or directory, open '/Users/nariman/Documents/IdeaProject/yadaki/node_modules/jquery/dist/jquery.min.js'
我在我的package.json中添加了jQuery依赖项,但是有些东西我听不懂 有时,当我搜索node_module程序包时,我有一个JQuery文件夹(带有大写Q),其中没有dist文件夹(因此应用程序构建失败);有时,有一个jquery文件夹(带有普通q)具有dist文件夹,并且应用程序完全建立
我使用frontend-maven-plugin
pom.xml
<plugin>
<groupId>com.github.eirslett</groupId>
<artifactId>frontend-maven-plugin</artifactId>
<version>1.7.5</version>
<executions>
<execution>
<id>install node and npm</id>
<goals>
<goal>install-node-and-npm</goal>
</goals>
<configuration>
<nodeVersion>${node.version}</nodeVersion>
<npmVersion>${npm.version}</npmVersion>
</configuration>
</execution>
<execution>
<id>npm install</id>
<goals>
<goal>npm</goal>
</goals>
</execution>
<execution>
<id>angularcli build dev</id>
<goals>
<goal>npm</goal>
</goals>
<phase>generate-resources</phase>
<configuration>
<arguments>run build</arguments>
</configuration>
</execution>
</executions>
</plugin>
package.json
"jquery": "3.2.1",
angular-version : 7.2.4
node-version : 10.15.3
npm-version : 6.9.0