Skip to content

Commit 054acbc

Browse files
committed
task(package.json): install babel-cli babel-preset-es2015 babel-preset-react packages.
Installed by the following command: $ ./mvnw -Pfrontend frontend:npm -Dfrontend.npm.arguments='install babel-cli babel-preset-es2015 babel-preset-react --save-dev' Addressed to #1060 No functional changes.
1 parent 56e00c6 commit 054acbc

File tree

4 files changed

+3406
-2
lines changed

4 files changed

+3406
-2
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ src/main/javascript/*/*.min.js
2020

2121
# managed by frontend-maven-plugin
2222
src/main/frontend/node/
23+
src/main/frontend/node_modules/
2324

2425
# Vagrant related files
2526
.vagrant/

pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1234,6 +1234,16 @@
12341234
</goals>
12351235
<phase>initialize</phase>
12361236
</execution>
1237+
<execution>
1238+
<id>npm-ci</id>
1239+
<goals>
1240+
<goal>npm</goal>
1241+
</goals>
1242+
<phase>initialize</phase>
1243+
<configuration>
1244+
<arguments>ci</arguments>
1245+
</configuration>
1246+
</execution>
12371247
</executions>
12381248
</plugin>
12391249
</plugins>

0 commit comments

Comments
 (0)