Skip to content

Instantly share code, notes, and snippets.

@thatisuday
Last active January 5, 2021 08:16
Show Gist options
  • Save thatisuday/be12168094640de6e232772446cf1fd5 to your computer and use it in GitHub Desktop.
Save thatisuday/be12168094640de6e232772446cf1fd5 to your computer and use it in GitHub Desktop.
import path from 'path';
import fs from 'fs';
// get application version from `static/version.txt`
export const getVersion = () => {
const versionFilePath = path.resolve( __static, 'version.txt' );
return fs.readFileSync( versionFilePath, {
encoding: 'utf-8',
} );
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment