mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
23 lines
555 B
YAML
23 lines
555 B
YAML
packages:
|
|
- name: app
|
|
type: yarn
|
|
srcs:
|
|
- "src/**"
|
|
- "public/**"
|
|
- config.json
|
|
- package.json
|
|
- webpack.config.js
|
|
- tsconfig.json
|
|
deps:
|
|
- components/gitpod-protocol:lib
|
|
- components/supervisor-api/typescript-grpc:lib
|
|
- components/ide-metrics-api/typescript-grpcweb:lib
|
|
config:
|
|
dontTest: true
|
|
yarnLock: ${coreYarnLockBase}/../yarn.lock
|
|
commands:
|
|
build:
|
|
- sh
|
|
- -c
|
|
- yq w -i config.json commit commit-${__git_commit} -j && yarn build
|