waveterm/version.js
2024-06-11 17:42:10 -07:00

6 lines
169 B
JavaScript

const path = require("path");
const packageJson = require(path.resolve(__dirname, "package.json"));
const VERSION = `${packageJson.version}`;
module.exports = VERSION;