Skip to content

Commit 40fae5f

Browse files
committed
build: fix linting
1 parent 06f08d6 commit 40fae5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const pkg = JSON.parse(fs.readFileSync('./package.json'));
1212

1313
function resolveYear() {
1414
// Extract copyrights from the LICENSE.
15-
const license = fs.readFileSync("./LICENSE", "utf-8").toString();
15+
const license = fs.readFileSync('./LICENSE', 'utf-8').toString();
1616
const matches = Array.from(license.matchAll(/\(c\) (\d+)/gm));
1717
if (!matches || matches.length === 0) {
1818
return 2021;

0 commit comments

Comments
 (0)