generated from emmeowzing/circleci-orb-template
-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
16 lines (16 loc) · 1.02 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"name": "dynamic-continuation-orb",
"scripts": {
"dependencies": "./scripts/dependencies.sh",
"install:pre-commit:mac": "brew install pre-commit",
"install:pre-commit:pip": "pip install pre-commit",
"install:pre-commit-hooks": "pre-commit install --install-hooks --allow-missing-config -t pre-commit -t prepare-commit-msg",
"orb:pack": "find src -maxdepth 1 -mindepth 1 -type d | xargs -I % basename % | xargs -I % ./scripts/pre-pack.sh src % && circleci orb pack --skip-update-check src/ > orb.yml",
"orb:validate": "./scripts/validate.sh",
"orb:cleanup": "find src -maxdepth 1 -mindepth 1 -type d | xargs -I % basename % | xargs -I % ./scripts/rev-pack.sh src %; yes | rm orb.yml",
"orb:clean": "yarn orb:cleanup",
"orb:cleanup:force": "find src -maxdepth 1 -mindepth 1 -type d | xargs -I % basename % | xargs -I % ./scripts/rev-pack.sh src % true; yes | rm orb.yml",
"orb:clean:force": "yarn orb:cleanup:force",
"orb:process": "circleci orb process src/@orb.yml > processed-orb.yml"
}
}