Skip to content

Commit 8ee1f29

Browse files
author
Nicolas Romanetti
committed
clean up
1 parent 0fd27d9 commit 8ee1f29

File tree

3 files changed

+10
-14
lines changed

3 files changed

+10
-14
lines changed

.travis.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
language: node_js
22
dist: trusty
33
node_js:
4-
- "6.11.0"
4+
- "8.9.4"
55
addons:
66
apt:
77
sources:
@@ -29,15 +29,13 @@ install:
2929
- rm web/src/app/app.module.ts web/src/app/app.component.* web/src/styles.css
3030
- mvn -Pdb,metadata,gen generate-sources
3131
- cd web
32-
- npm install --save @angular/material @angular/cdk
33-
- npm install --save @angular/animations
34-
- npm install --save primeng@5.0.2
35-
- npm install --save font-awesome
32+
- npm i @angular/material @angular/cdk
33+
- npm i primeng@5.0.2
34+
- npm i font-awesome
3635
- cd ..
3736
script:
3837
- mvn test
3938
- cd web
4039
- ng build
4140
- ng test --watch false
4241
- ng e2e
43-

quickstart/console2.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
#!/bin/bash
22
cd web
3-
npm install --save @angular/material @angular/cdk
4-
npm install --save @angular/animations
5-
npm install --save primeng@5.0.2
6-
npm install --save font-awesome
3+
npm i @angular/material @angular/cdk
4+
npm i primeng@5.0.2
5+
npm i font-awesome
76
ng serve --proxy-config proxy.conf.json
87

quickstart/tool-rm-gen-and-package.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,9 @@ ng new web
1616
rm web/src/app/app.module.ts web/src/app/app.component.* web/src/styles.css
1717
mvn -Pdb,metadata,gen generate-sources
1818
cd web
19-
npm install --save @angular/animations
20-
npm install --save @angular/material @angular/cdk
21-
npm install --save primeng@5.0.2
22-
npm install --save font-awesome
19+
npm i @angular/material @angular/cdk
20+
npm i primeng@5.0.2
21+
npm i font-awesome
2322
ng build --prod
2423
cp dist/* ../src/main/resources/static
2524
cd ..

0 commit comments

Comments
 (0)