This repository was archived by the owner on May 14, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +20
-4
lines changed Expand file tree Collapse file tree 2 files changed +20
-4
lines changed Original file line number Diff line number Diff line change 96
96
<executions >
97
97
<execution >
98
98
<id >install node and npm</id >
99
+ <phase >generate-resources</phase >
99
100
<goals >
100
101
<goal >install-node-and-npm</goal >
101
102
</goals >
105
106
</execution >
106
107
<execution >
107
108
<id >npm install</id >
109
+ <phase >generate-resources</phase >
108
110
<goals >
109
111
<goal >npm</goal >
110
112
</goals >
111
113
<configuration >
112
114
<arguments >install</arguments >
113
115
</configuration >
114
116
</execution >
117
+ <execution >
118
+ <id >npm doc</id >
119
+ <phase >generate-resources</phase >
120
+ <goals >
121
+ <goal >npm</goal >
122
+ </goals >
123
+ <configuration >
124
+ <arguments >run doc</arguments >
125
+ </configuration >
126
+ </execution >
115
127
<execution >
116
128
<id >npm build</id >
129
+ <phase >compile</phase >
117
130
<goals >
118
131
<goal >npm</goal >
119
132
</goals >
120
133
<configuration >
121
- <arguments >run mavenbuild</arguments >
134
+ <arguments >run mavenbuild-without-tests </arguments >
122
135
</configuration >
123
136
</execution >
124
137
<execution >
125
- <id >npm doc</id >
138
+ <id >npm test</id >
139
+ <phase >test</phase >
126
140
<goals >
127
141
<goal >npm</goal >
128
142
</goals >
129
143
<configuration >
130
- <arguments >run doc </arguments >
144
+ <arguments >run mavenbuild-tests </arguments >
131
145
</configuration >
132
146
</execution >
133
147
</executions >
Original file line number Diff line number Diff line change 15
15
"e2e-browserstack-local" : " ng e2e --proxy-config proxy.conf.json --host dataflow.local --config protractor-browserstack.conf.js -prod" ,
16
16
"install" : " napa pivotal-cf/pivotal-ui:pivotal-ui-git-clone" ,
17
17
"doc" : " ./node_modules/.bin/compodoc -p tsconfig.json -n \" Spring Cloud Data Flow Dashboard Documentation\" " ,
18
- "mavenbuild" : " node ./node_modules/@angular/cli/bin/ng test --code-coverage true --watch false --browsers ChromeHeadless && node ./node_modules/@angular/cli/bin/ng build --prod --output-path ./../src/main/resources/public/dashboard --base-href /dashboard/" ,
18
+ "mavenbuild-tests" : " node ./node_modules/@angular/cli/bin/ng test --code-coverage true --watch false --browsers ChromeHeadless" ,
19
+ "mavenbuild-without-tests" : " node ./node_modules/@angular/cli/bin/ng build --prod --output-path ./../target/classes/public/dashboard --base-href /dashboard/" ,
20
+ "mavenbuild" : " node ./node_modules/@angular/cli/bin/ng test --code-coverage true --watch false --browsers ChromeHeadless && node ./node_modules/@angular/cli/bin/ng build --prod --output-path ./../target/classes/public/dashboard --base-href /dashboard/" ,
19
21
"bundle-report" : " webpack-bundle-analyzer dist/stats.json"
20
22
},
21
23
"private" : true ,
You can’t perform that action at this time.
0 commit comments