forked from hashgraph/hedera-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Taskfile.yml
49 lines (38 loc) · 951 Bytes
/
Taskfile.yml
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
version: "3"
silent: true
tasks:
default:
deps:
- build
install:
cmds:
- pnpm i
build:
cmds:
- task: install
- task: format
- task: lint
clean:
cmds:
- rm -rf node_modules
format:
cmds:
- ./node_modules/.bin/prettier "*.json" "*.js" --write > /dev/null
lint:
deps:
- "lint:types"
- "lint:dpdm"
- "lint:format"
- "lint:js"
"lint:types":
cmds:
- ./node_modules/.bin/tsc
"lint:dpdm":
cmds:
- ./node_modules/.bin/dpdm src/index.js --circular true --tree false --warning false > /dev/null
"lint:format":
cmds:
- ./node_modules/.bin/prettier "*.json" "*.js" --check > /dev/null
"lint:js":
cmds:
- ./node_modules/.bin/eslint --fix "*.json" "*.js"