Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

[#9717][Frontend] update node version #9696

Merged
merged 1 commit into from
Feb 21, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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