chore: 将部分通用变量移动到utils.ts

This commit is contained in:
qier222 2022-05-13 01:47:55 +08:00
parent 78ba547138
commit 48869266e4
No known key found for this signature in database
GPG key ID: 9C85007ED905F14D
10 changed files with 24 additions and 33 deletions

View file

@ -13,3 +13,10 @@ export const createFileIfNotExist = (file: string) => {
fs.writeFileSync(file, '')
}
}
export const isDev = process.env.NODE_ENV === 'development'
export const isProd = process.env.NODE_ENV === 'production'
export const isWindows = process.platform === 'win32'
export const isMac = process.platform === 'darwin'
export const isLinux = process.platform === 'linux'
export const dirname = isDev ? process.cwd() : __dirname