2018-05-02 23:57:02 +00:00
|
|
|
import is from '@sindresorhus/is';
|
|
|
|
import os from 'os';
|
|
|
|
import semver from 'semver';
|
|
|
|
|
|
|
|
export const isMacOS = () => process.platform === 'darwin';
|
|
|
|
export const isLinux = () => process.platform === 'linux';
|
|
|
|
export const isWindows = (minVersion?: string) => {
|
|
|
|
const osRelease = os.release();
|
|
|
|
|
2018-05-23 23:04:39 +00:00
|
|
|
if (process.platform !== 'win32') {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return is.undefined(minVersion) ? true : semver.gte(osRelease, minVersion);
|
2018-05-02 23:57:02 +00:00
|
|
|
};
|