-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy path.gitpod.yml
41 lines (36 loc) · 896 Bytes
/
.gitpod.yml
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
ide: code
vscode:
extensions:
- 'donjayamanne.githistory'
- 'eamodio.gitlens'
- 'xyz.local-history'
- 'editorconfig.editorconfig'
- 'esbenp.prettier-vscode'
- 'dbaeumer.vscode-eslint'
- 'msjsdiag.debugger-for-chrome'
- 'eg2.vscode-npm-script'
- 'angular.ng-template'
- 'johnpapa.angular2'
- 'nrwl.angular-console'
tasks:
- name: Auto build library
init: |
yarn install
npx ng build ng-in-viewport --prod
gp sync-done boot
command: echo 'Library build is done'
- name: Auto serve demo
init: |
gp sync-await boot
command: npx ng serve demo --port=4200
openMode: split-right
- name: Auto serve example
init: |
gp sync-await boot
command: npx ng serve example --port=4300
openMode: split-right
ports:
- port: 4200
onOpen: open-preview
- port: 4300
onOpen: open-preview