Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/supervisor/frontend/BUILD.yaml
2500 views
1
packages:
2
- name: app
3
type: yarn
4
srcs:
5
- "src/**"
6
- "public/**"
7
- config.json
8
- package.json
9
- webpack.config.js
10
- tsconfig.json
11
deps:
12
- components/gitpod-protocol:lib
13
- components/supervisor-api/typescript-grpc:lib
14
- components/ide-metrics-api/typescript-grpcweb:lib
15
config:
16
dontTest: true
17
yarnLock: ${coreYarnLockBase}/../yarn.lock
18
commands:
19
build:
20
- sh
21
- -c
22
- yq w -i config.json commit commit-${__git_commit} -j && yarn build
23
24