mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-02-23 15:46:28 +08:00
[client-app] resolve symlinks in spec
This commit is contained in:
parent
225613565a
commit
d53b39f344
1 changed files with 2 additions and 1 deletions
|
@ -58,11 +58,12 @@ module.exports = (grunt) => {
|
|||
const dirs = [
|
||||
'internal_packages',
|
||||
'src',
|
||||
'spec',
|
||||
'node_modules',
|
||||
];
|
||||
|
||||
dirs.forEach((dir) => {
|
||||
absoluteDir = path.join(appDir, dir);
|
||||
const absoluteDir = path.join(appDir, dir);
|
||||
fs.readdirSync(absoluteDir).forEach((packageName) => {
|
||||
const relativePackageDir = path.join(dir, packageName)
|
||||
const absolutePackageDir = path.join(absoluteDir, packageName)
|
||||
|
|
Loading…
Reference in a new issue