frontend/.pnpm-store/v3/files/94/b47ccc31f60c8ac050b7da310153b223487d3dbaa3d85e9421f5b3e86bff02462711c465975542527af9b7ba11441e13645b2f8c81640cd23cd04fda704ecc

13 lines
309 B
Plaintext

'use strict';
const path = require('path');
module.exports = function () {
const isWindows = process.platform === 'win32';
const yarnPath = isWindows ? path.join('Yarn', 'config', 'global') : path.join('.config', 'yarn', 'global');
if (__dirname.includes(yarnPath)) {
return true;
}
return false;
};