-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtools.json
More file actions
55 lines (55 loc) · 1.37 KB
/
Copy pathtools.json
File metadata and controls
55 lines (55 loc) · 1.37 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"ferrflow": {
"install_methods": {
"binary": {
"setup": null,
"command": "ferrflow"
},
"npm": {
"setup": "npm install -g ferrflow",
"command": "npx ferrflow"
},
"docker": {
"setup": "docker pull ghcr.io/ferrlabs/ferrflow:latest",
"command": "docker run --rm --user $(id -u):$(id -g) -v $PWD:/repo -w /repo ghcr.io/ferrlabs/ferrflow:latest"
}
},
"commands": ["check", "release --dry-run", "version", "tag", "validate"]
},
"semantic-release": {
"install_methods": {
"npm": {
"setup": "npm install -g semantic-release@23",
"command": "npx --yes semantic-release@23 --dry-run --no-ci"
}
},
"commands": [""]
},
"changesets": {
"install_methods": {
"npm": {
"setup": "npm install -g @changesets/cli",
"command": "npx --yes @changesets/cli status"
}
},
"commands": [""]
},
"standard-version": {
"install_methods": {
"npm": {
"setup": "npm install -g standard-version",
"command": "npx --yes standard-version --dry-run"
}
},
"commands": [""]
},
"commit-and-tag-version": {
"install_methods": {
"npm": {
"setup": "npm install -g commit-and-tag-version",
"command": "npx --yes commit-and-tag-version --dry-run"
}
},
"commands": [""]
}
}