-
Notifications
You must be signed in to change notification settings - Fork 204
Expand file tree
/
Copy pathdevbox-fast.json
More file actions
36 lines (36 loc) · 1.01 KB
/
devbox-fast.json
File metadata and controls
36 lines (36 loc) · 1.01 KB
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
{
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.14.2/.schema/devbox.schema.json",
"packages": {
"yarn-berry": "latest",
"jq": "latest",
"treefmt": "latest",
"nixfmt": "latest",
"shfmt": "latest"
},
"shell": {
"init_hook": [". $DEVBOX_PROJECT_ROOT/../scripts/shared/common.sh"],
"scripts": {
"build": ["bash $SCRIPTS_DIR/build.sh"],
"release": [
"cd \"$PROJECT_ROOT\"",
"yarn install --immutable",
"yarn build",
"yarn multi-semantic-release"
],
"release-dry-run": [
"cd \"$PROJECT_ROOT\"",
"yarn install --immutable",
"yarn build",
"yarn multi-semantic-release --dry-run"
],
"format": ["treefmt"],
"lint": ["treefmt --fail-on-change"],
"sync-versions": ["bash $SCRIPTS_DIR/sync-versions.sh"],
"update-apps": [
"yarn install --no-immutable",
"yarn e2e install --no-immutable",
"yarn example install --no-immutable"
]
}
}
}