UNPKG
yorkie
Version:
latest (2.0.0)
2.0.0
1.0.3
1.0.2
1.0.1
1.0.0
githooks management forked from husky
github.com/yyx990803/yorkie
yyx990803/yorkie
yorkie
/
bin
/
uninstall.js
12 lines
(8 loc)
•
253 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
'use strict'
// Run when package is uninstalled
const
path =
require
(
'path'
)
const
uninstallFrom =
require
(
'../src/uninstall'
)
console
.
log
(
'husky'
)
console
.
log
(
'uninstalling Git hooks'
)
const
depDir = path.
join
(__dirname,
'..'
)
uninstallFrom
(depDir)