We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
version-bump.mjs
version-bump.mjs could be faster if async file operations and Promise.all() are used.
Promise.all()
Right now it waits for manifest.json to be written before reading and writing versions.js. But the latter only needs manifest.json to be read.
manifest.json
versions.js
However, I worry that this might make it harder for less experienced developers to use this template.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
version-bump.mjs
could be faster if async file operations andPromise.all()
are used.Right now it waits for
manifest.json
to be written before reading and writingversions.js
. But the latter only needsmanifest.json
to be read.However, I worry that this might make it harder for less experienced developers to use this template.
The text was updated successfully, but these errors were encountered: