Skip to content

Commit

Permalink
update node version
Browse files Browse the repository at this point in the history
  • Loading branch information
BillionaireDY committed Feb 13, 2023
1 parent d3440f6 commit e022ff2
Show file tree
Hide file tree
Showing 5 changed files with 9,316 additions and 13,331 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -223,8 +223,8 @@
<!-- frontend-plugin -->
<plugin.frontend.version>1.12.0</plugin.frontend.version>
<!-- https://nodejs.org/ko/download/releases/ -->
<plugin.frontend.node.version>v14.18.1</plugin.frontend.node.version>
<plugin.frontend.npm.version>6.14.15</plugin.frontend.npm.version>
<plugin.frontend.node.version>v16.17.1</plugin.frontend.node.version>
<plugin.frontend.yarn.version>v1.22.19</plugin.frontend.yarn.version>
<plugin.frontend.node.install.dir>/node_install/node-${plugin.frontend.node.version}</plugin.frontend.node.install.dir>
</properties>

Expand Down
16 changes: 8 additions & 8 deletions web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -415,34 +415,34 @@
</configuration>
<executions>
<execution>
<id>install node and npm</id>
<id>install node and yarn</id>
<phase>prepare-package</phase>
<goals>
<goal>install-node-and-npm</goal>
<goal>install-node-and-yarn</goal>
</goals>
<configuration>
<nodeVersion>${plugin.frontend.node.version}</nodeVersion>
<npmVersion>${plugin.frontend.npm.version}</npmVersion>
<yarnVersion >${plugin.frontend.yarn.version}</yarnVersion>
</configuration>
</execution>
<execution>
<id>npm install</id>
<id>yarn install</id>
<phase>prepare-package</phase>
<goals>
<goal>npm</goal>
<goal>yarn</goal>
</goals>
<configuration>
<arguments>install</arguments>
</configuration>
</execution>
<execution>
<id>npm run build</id>
<id>yarn build</id>
<phase>prepare-package</phase>
<goals>
<goal>npm</goal>
<goal>yarn</goal>
</goals>
<configuration>
<arguments>run build:real</arguments>
<arguments>build:real</arguments>
</configuration>
</execution>
</executions>
Expand Down
Loading

0 comments on commit e022ff2

Please # to comment.