Skip to content

Commit 6e3ee64

Browse files
committed
Ignore "tools" pkgs
1 parent 1c79837 commit 6e3ee64

4 files changed

Lines changed: 20 additions & 0 deletions

File tree

tools/git/scripts/author_lib_pkgs_per_day

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,11 @@ $9 !~ /lib\/node_modules\/\@stdlib\// {
4444
next
4545
}
4646
47+
# Skip "tools" `package.json`:
48+
$9 ~ /\/_tools\// {
49+
next
50+
}
51+
4752
# Added a `package.json`:
4853
$8 == "A" {
4954
pkgs[day,$6,$7] += 1

tools/git/scripts/author_lib_pkgs_per_month

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,11 @@ $9 !~ /lib\/node_modules\/\@stdlib\// {
4444
next
4545
}
4646
47+
# Skip "tools" `package.json`:
48+
$9 ~ /\/_tools\// {
49+
next
50+
}
51+
4752
# Added a `package.json`:
4853
$8 == "A" {
4954
pkgs[mon,$6,$7] += 1

tools/git/scripts/author_lib_pkgs_per_weekday

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,11 @@ $9 !~ /lib\/node_modules\/\@stdlib\// {
3636
next
3737
}
3838
39+
# Skip "tools" `package.json`:
40+
$9 ~ /\/_tools\// {
41+
next
42+
}
43+
3944
# Added a `package.json`:
4045
$8 == "A" {
4146
pkgs[$1,$6,$7] += 1

tools/git/scripts/author_lib_pkgs_per_year

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,11 @@ $9 !~ /lib\/node_modules\/\@stdlib\// {
4444
next
4545
}
4646
47+
# Skip "tools" `package.json`:
48+
$9 ~ /\/_tools\// {
49+
next
50+
}
51+
4752
# Added a `package.json`:
4853
$8 == "A" {
4954
pkgs[yr,$6,$7] += 1

0 commit comments

Comments
 (0)