We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 391f3e4 commit 752efa0Copy full SHA for 752efa0
tools/gitHooks/api-report.js
tools/gitHooks/precommit.js
@@ -17,7 +17,6 @@
17
18
const { doPrettier } = require('./prettier');
19
const { doLicense } = require('./license');
20
-const { doApiReports } = require('./api-report');
21
const { resolve } = require('path');
22
const simpleGit = require('simple-git/promise');
23
const ora = require('ora');
@@ -81,9 +80,6 @@ $ git stash pop
81
80
// Validate License headers exist
82
await doLicense(changedFiles);
83
84
- // Generate API reports
85
- await doApiReports(changedFiles);
86
-
87
// Diff staged changes against last commit. Don't do an empty commit.
88
const postDiff = await git.diff(['--cached']);
89
if (!postDiff) {
0 commit comments