You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
294 B
13 lines
294 B
/* eslint-disable import/no-unresolved */
|
|
|
|
const path = require('path')
|
|
const pkg = require('../package.json')
|
|
|
|
try {
|
|
const distDir = path.dirname(process.execPath)
|
|
pkg._npmPkg = require(path.join(distDir, '../../package.json'))
|
|
} catch (err) {
|
|
pkg._npmPkg = null
|
|
}
|
|
|
|
module.exports = pkg
|
|
|