-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.xml
27 lines (21 loc) · 867 Bytes
/
build.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<project name="brein-api-library-node" basedir=".">
<!-- This is an internally used build-script. To build the project manually,
please resolve the needed dependencies and use the appropriate npm methods
-->
<include file="../../brein-workspace/brein-intellij-workspace/common-libs/ant-util/util-ant.xml"/>
<property name="app" value="brein-api-library-node"/>
<target name="01-resolve-dependencies">
<exec-npm module="install"/>
</target>
<target name="04-publish-results">
<publish-node-app>
<cf/>
</publish-node-app>
</target>
<target name="06-run-test-suite" depends="01-resolve-dependencies">
<exec-npm module="test"/>
</target>
<target name="99-publish-npmjs" depends="01-resolve-dependencies">
<exec-npm module="publish"/>
</target>
</project>