-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTaskfile
53 lines (45 loc) · 992 Bytes
/
Taskfile
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
#!/bin/bash
PATH="$PWD/node_modules/.bin":$PATH
hello() {
echo Hello from taskfile
echo args: "$1" "$2" "$3"
}
remark_run() {
node -r ts-node/register/transpile-only node_modules/remark-cli/cli.js readme.md "$@"
}
remark_output() {
remark_run --output
}
build() {
rm -rf dist
cp -rf src dist && /usr/bin/find dist -name '*.spec.ts' | xargs rm -f
cd dist
tsc index.ts --importHelpers --target es2015 --module commonjs --sourceMap true --skipLibCheck true --declaration true
cd ..
cp README.md LICENSE package.json dist
}
eslint_run() {
eslint src --ext ts
}
eslint_watch() {
eslint_run
inotifywait_cmd=`watch_cmd`
while true; do
$inotifywait_cmd -r src && \
eslint_run
done
}
watch_cmd() {
case `uname -o` in
Linux)
echo 'inotifywait'
;;
Msys)
echo 'inotifywait-win32.cmd'
;;
*)
echo 'inotifywait'
;;
esac
}
"$@"