Skip to content

Commit

Permalink
[typscript-rxjs] fix build failure (#13526)
Browse files Browse the repository at this point in the history
* add node types to fix build failure

* Revert "add node types to fix build failure"

This reverts commit 7ec986e.

* add node installation to fix build failure

* update ts samples
  • Loading branch information
wing328 authored Sep 27, 2022
1 parent 6b47b14 commit 88d464a
Showing 1 changed file with 15 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,21 @@
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<id>node-install</id>
<phase>pre-integration-test</phase>
<goals>
<goal>exec</goal>
</goals>
<configuration>
<executable>npm</executable>
<arguments>
<argument>install</argument>
<argument>-D</argument>
<argument>@types/node</argument>
</arguments>
</configuration>
</execution>
<execution>
<id>npm-install</id>
<phase>pre-integration-test</phase>
Expand Down

0 comments on commit 88d464a

Please sign in to comment.