[typscript-rxjs] fix build failure (#13526)

* add node types to fix build failure

* Revert "add node types to fix build failure"

This reverts commit 7ec986e164d9ab0ab5eb1abb93f2f3e06121bd7e.

* add node installation to fix build failure

* update ts samples
This commit is contained in:
William Cheng 2022-09-27 11:08:33 +08:00 committed by GitHub
parent 6b47b14896
commit 88d464ad35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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>