-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.gitpod.yml
43 lines (39 loc) · 929 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
43
image:
file: .gitpod.Dockerfile
tasks:
- name: Install
init: |
pnpm install
pnpm recursive install --filter ./web --filter ./legacy/css --filter ./legacy/js
gp sync-done install
command: pnpm web dev
- name: Lint
init: gp sync-await install
command: pnpm lint:web
openMode: split-right
- name: Test
init: gp sync-await install
command: pnpm web test
openMode: split-right
ports:
- port: 3000
onOpen: open-preview
- port: 9000
onOpen: ignore
gitConfig:
alias.co: checkout
alias.br: branch
alias.ci: commit
alias.st: status
pull.rebase: merges
vscode:
extensions:
- vtrois.gitmoji-vscode
- esbenp.prettier-vscode
- stylelint.vscode-stylelint
- eamodio.gitlens
- dbaeumer.vscode-eslint
- pflannery.vscode-versionlens
- jpoissonnier.vscode-styled-components
- jock.svg
- digitalbrainstem.javascript-ejs-support