UNPKG
fecs-git-hooks
Version:
latest (1.0.0-beta.1)
1.0.0-beta.1
1.0.0-alpha.1
0.1.1
0.1.0
0.0.12
0.0.11
0.0.10
0.0.9
0.0.8
0.0.7
0.0.7-rc1
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
0.0.1-beta.11
0.0.1-beta.9
0.0.1-beta.5
0.0.1-beta
fecs git pre-commit hook
github.com/cxtom/fecs-git-hooks
cxtom/fecs-git-hooks
fecs-git-hooks
/
lib
/
uninstall.js
16 lines
(12 loc)
•
221 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/** *
@file
npm uninstall 时自动运行的脚本 *
@author
cxtom
*/
/* eslint-disable no-console */
var
Util
=
require
(
'./util'
);
try
{
Util
.
unInstallHooks
(
'pre-commit'
); }
catch
(e) {
console
.
trace
(e); }