Last active
January 5, 2021 08:16
-
-
Save thatisuday/be12168094640de6e232772446cf1fd5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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', | |
} ); | |
}; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
v1.0.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment