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

Commit a09d50a

Browse files
author
Giedrius Grabauskas
committed
Builded code.
1 parent 2a0cdcc commit a09d50a

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

dist/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ class GlobsUglifyJs {
4545
main() {
4646
return __awaiter(this, void 0, void 0, function* () {
4747
let globOptions;
48-
if (this.options.Exclue !== undefined) {
49-
globOptions = { ignore: this.options.Exclue };
48+
if (this.options.Exclude !== undefined) {
49+
globOptions = { ignore: this.options.Exclude };
5050
}
5151
try {
5252
let filesList = yield this.getGlobs(this.globPattern, globOptions);

dist/options.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ export default class OptionsConstructor implements Options {
2121
readonly RootDir: string;
2222
readonly RemoveSource: boolean;
2323
readonly Debug: boolean;
24-
readonly Exclue: Array<string> | string | undefined;
24+
readonly Exclude: Array<string> | string | undefined;
2525
}

dist/options.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ class OptionsConstructor {
4848
get Debug() {
4949
return this.options.Debug;
5050
}
51-
get Exclue() {
51+
get Exclude() {
5252
return this.options.exclude;
5353
}
5454
}

0 commit comments

Comments
 (0)