fix: yarn dev error in windows system

This commit is contained in:
chenos 2022-12-01 23:44:02 +08:00
parent 271573c52a
commit e73695fd1e

View File

@ -1,5 +1,5 @@
const { existsSync } = require('fs'); const { existsSync } = require('fs');
const { resolve } = require('path'); const { resolve, sep } = require('path');
const packageJson = require('./package.json'); const packageJson = require('./package.json');
const fs = require('fs'); const fs = require('fs');
const glob = require('glob'); const glob = require('glob');
@ -69,7 +69,8 @@ function getPackagePaths() {
const dirname = resolve(process.cwd(), file); const dirname = resolve(process.cwd(), file);
if (existsSync(dirname)) { if (existsSync(dirname)) {
const re = new RegExp(dir.replace('*', '(.+)')); const re = new RegExp(dir.replace('*', '(.+)'));
const match = re.exec(dirname.substring(process.cwd().length + 1)); const p = dirname.substring(process.cwd().length + 1).split(sep).join('/');
const match = re.exec(p);
pkgs.push([key.replace('*', match?.[1]), dirname]); pkgs.push([key.replace('*', match?.[1]), dirname]);
} }
} }