build: 使用npm代替yarn
This commit is contained in:
parent
53c41126da
commit
d61d64fa22
|
@ -16,7 +16,7 @@
|
||||||
<properties>
|
<properties>
|
||||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||||||
<frontend-maven-plugin.version>1.9.1</frontend-maven-plugin.version>
|
<frontend-maven-plugin.version>1.12.0</frontend-maven-plugin.version>
|
||||||
</properties>
|
</properties>
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
|
@ -28,22 +28,21 @@
|
||||||
<executions>
|
<executions>
|
||||||
<execution>
|
<execution>
|
||||||
<!-- optional: you don't really need execution ids, but it looks nice in your build log. -->
|
<!-- optional: you don't really need execution ids, but it looks nice in your build log. -->
|
||||||
<id>install node and yarn</id>
|
<id>install node and npm</id>
|
||||||
<goals>
|
<goals>
|
||||||
<goal>install-node-and-yarn</goal>
|
<goal>install-node-and-npm</goal>
|
||||||
</goals>
|
</goals>
|
||||||
<!-- optional: default phase is "generate-resources" -->
|
<!-- optional: default phase is "generate-resources" -->
|
||||||
<phase>generate-resources</phase>
|
<phase>generate-resources</phase>
|
||||||
<configuration>
|
<configuration>
|
||||||
<nodeVersion>v16.10.0</nodeVersion>
|
<nodeVersion>v16.12.0</nodeVersion>
|
||||||
<yarnVersion>v1.22.15</yarnVersion>
|
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
<!-- Install all project dependencies -->
|
<!-- Install all project dependencies -->
|
||||||
<execution>
|
<execution>
|
||||||
<id>yarn install</id>
|
<id>npm install</id>
|
||||||
<goals>
|
<goals>
|
||||||
<goal>yarn</goal>
|
<goal>npm</goal>
|
||||||
</goals>
|
</goals>
|
||||||
<configuration>
|
<configuration>
|
||||||
<!-- optional: The default argument is actually
|
<!-- optional: The default argument is actually
|
||||||
|
@ -55,12 +54,12 @@
|
||||||
</execution>
|
</execution>
|
||||||
<!-- Build and minify static files -->
|
<!-- Build and minify static files -->
|
||||||
<execution>
|
<execution>
|
||||||
<id>yarn build</id>
|
<id>npm run build</id>
|
||||||
<goals>
|
<goals>
|
||||||
<goal>yarn</goal>
|
<goal>npm</goal>
|
||||||
</goals>
|
</goals>
|
||||||
<configuration>
|
<configuration>
|
||||||
<arguments>build</arguments>
|
<arguments>run build</arguments>
|
||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
|
|
Loading…
Reference in New Issue