Skip to content
This repository was archived by the owner on Nov 25, 2025. It is now read-only.

Commit 2a0cdcc

Browse files
author
Giedrius Grabauskas
committed
Fixed variable mistype.
1 parent 48bf2f0 commit 2a0cdcc

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/main.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ export class GlobsUglifyJs {
5454

5555
let globOptions: glob.IOptions | undefined;
5656

57-
if (this.options.Exclue !== undefined) {
58-
globOptions = { ignore: this.options.Exclue };
57+
if (this.options.Exclude !== undefined) {
58+
globOptions = { ignore: this.options.Exclude };
5959
}
6060

6161
try {

src/options.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export default class OptionsConstructor implements Options {
7272
return this.options.Debug!;
7373
}
7474

75-
public get Exclue(): Array<string> | string | undefined {
75+
public get Exclude(): Array<string> | string | undefined {
7676
return this.options.exclude;
7777
}
7878

0 commit comments

Comments
 (0)