選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

13 行
309B

  1. 'use strict';
  2. const path = require('path');
  3. module.exports = function () {
  4. const isWindows = process.platform === 'win32';
  5. const yarnPath = isWindows ? path.join('Yarn', 'config', 'global') : path.join('.config', 'yarn', 'global');
  6. if (__dirname.includes(yarnPath)) {
  7. return true;
  8. }
  9. return false;
  10. };