Skip to content

Commit 63ebdb4

Browse files
committed
Lint
1 parent 9c4e860 commit 63ebdb4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

integrationTests/ts/test.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ const path = require('path');
66
const childProcess = require('child_process');
77
const assert = require('assert');
88
const fs = require('fs');
9+
910
const glob = require('glob');
1011
const semver = require('semver');
1112

@@ -38,9 +39,9 @@ const templates = glob.sync('./*.ts.template').map((filename) => {
3839
const finalContent = content.replace(regex, (_, versionRange, payload) => {
3940
if (semver.satisfies(version, versionRange)) {
4041
return payload;
41-
} else {
42+
}
4243
return '';
43-
}
44+
4445
});
4546
fs.writeFileSync(targetFilename, finalContent);
4647
};

0 commit comments

Comments
 (0)