10 lines
357 B
JavaScript
10 lines
357 B
JavaScript
const fs = require('fs');
|
|
const path = require('path');
|
|
|
|
const yarnLockPath = './yarn.lock';
|
|
const data = fs.readFileSync(path.resolve(yarnLockPath), 'utf8');
|
|
if (data.match(/artifactory/g)) {
|
|
throw new Error(
|
|
'Artifactory references in your yarn.lock! Please make sure you are using a public npm registry when downloading your dependencies!',
|
|
);
|
|
}
|