Skip to content

Commit

Permalink
chore: update version number in readme on release
Browse files Browse the repository at this point in the history
  • Loading branch information
mister-ben committed Aug 23, 2024
1 parent 73db132 commit bbd8f08
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions build/readme-version.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
/*
Replaces the version number in the readme with the current package version.
Looks for patterns like `/8.17.3/` and `/video.js@8.17.3/`
*/

const fs = require('fs');
const path = require('path');
const version = require('../package.json').version;

let doc = fs.readFileSync(path.join(__dirname, '..', 'README.md'), 'utf8');

doc = doc
.replace(/\/video.js@\d\.\d+\.\d+\//g, `/video.js@${version}/`)
.replace(/\/\d\.\d+\.\d+\//g, `/${version}/`);

fs.writeFileSync(path.join(__dirname, '..', 'README.md'), doc, 'utf8');
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
"netlify": "node ./build/netlify.js",
"netlify-docs": "node ./build/netlify-docs.js",
"prepublishOnly": "run-p build",
"version": "is-prerelease || npm run changelog && git add CHANGELOG.md",
"version": "is-prerelease || npm run changelog && node build/readme-version.js && git add CHANGELOG.md README.md",
"zip": "cd dist && cross-env bestzip \"./video-js-${npm_package_version}.zip\" * && cd .."
},
"repository": {
Expand Down

0 comments on commit bbd8f08

Please sign in to comment.