We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5d880e commit 5c21fddCopy full SHA for 5c21fdd
scripts/version.js
@@ -51,9 +51,7 @@ const getNewVersion = () => {
51
2
52
);
53
54
- const [php, css] = await Promise.all([
55
- fs.promises.readFile(phpPath, fsOpts),
56
- ]);
+ const [php] = await Promise.all([fs.promises.readFile(phpPath, fsOpts)]);
57
58
const newPHP = php.replace(new RegExp(previousVersion, 'g'), newVersion);
59
0 commit comments