forked from zebzhao/Angular-QueryBuilder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitpod.yml
42 lines (37 loc) · 859 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
42
tasks:
- name: Run builder
command: |
gp sync-await setup
pnpm watch
- name: Run demo
command: |
gp sync-await setup
FILE_PATH="./dist/ngx-query-builder/package.json"
while true; do
if [[ -f "$FILE_PATH" ]]; then
pnpm start
break
else
sleep 1
fi
done
openMode: split-right
- name: Setup
init: |
pnpm install
command: |
gp sync-done setup
exit 0
vscode:
extensions:
- Angular.ng-template
- editorconfig.editorconfig
- dbaeumer.vscode-eslint
- stylelint.vscode-stylelint
- DavidAnson.vscode-markdownlint
- ms-azuretools.vscode-docker
- GitHub.vscode-pull-request-github
ports:
- port: 4200
name: ngx-query-builder demo
onOpen: open-browser