Skip to content

Commit 5c21fdd

Browse files
committed
fix version bump warn
1 parent e5d880e commit 5c21fdd

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

scripts/version.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,7 @@ const getNewVersion = () => {
5151
2
5252
);
5353

54-
const [php, css] = await Promise.all([
55-
fs.promises.readFile(phpPath, fsOpts),
56-
]);
54+
const [php] = await Promise.all([fs.promises.readFile(phpPath, fsOpts)]);
5755

5856
const newPHP = php.replace(new RegExp(previousVersion, 'g'), newVersion);
5957

0 commit comments

Comments
 (0)