Skip to content

Commit

Permalink
chore: change workspace packages pattern
Browse files Browse the repository at this point in the history
  • Loading branch information
Andarist committed Jan 2, 2020
1 parent f11c94b commit 92d5294
Show file tree
Hide file tree
Showing 4 changed files with 369 additions and 81 deletions.
4 changes: 2 additions & 2 deletions packages/auto-install/test/yarn-bare.js
Expand Up @@ -23,8 +23,8 @@ test('yarn, bare', async (t) => {
},
plugins: [autoInstall({ manager: 'yarn' }), resolve()]
});
const lock = readFileSync('yarn.lock', 'utf-8');
t.snapshot(readFileSync('package.json', 'utf-8'));
const lock = readFileSync('yarn.lock', 'utf-8').replace(/\r\n/g, '\n');
t.snapshot(readFileSync('package.json', 'utf-8').replace(/\r\n/g, '\n'));
t.snapshot(lock);
});

Expand Down
2 changes: 1 addition & 1 deletion packages/auto-install/test/yarn.js
Expand Up @@ -24,7 +24,7 @@ test('yarn', async (t) => {
},
plugins: [autoInstall(), resolve()]
});
const lock = readFileSync('yarn.lock', 'utf-8');
const lock = readFileSync('yarn.lock', 'utf-8').replace(/\r\n/g, '\n');
t.snapshot(lock);
});

Expand Down

0 comments on commit 92d5294

Please sign in to comment.