aboutsummaryrefslogtreecommitdiffstats
path: root/packages/monorepo-scripts/src
diff options
context:
space:
mode:
authorLeonid Logvinov <logvinov.leon@gmail.com>2018-07-24 22:08:07 +0800
committerLeonid Logvinov <logvinov.leon@gmail.com>2018-07-24 22:08:17 +0800
commit24aa5cd1bf38197a72be32a53f2e4a7c9aaf58ef (patch)
treeeeb3de2f83aafbc9cd9ec22029a04265131992dd /packages/monorepo-scripts/src
parentf699da90ba1658d50f251f988b27508cbf66b64c (diff)
downloaddexon-sol-tools-24aa5cd1bf38197a72be32a53f2e4a7c9aaf58ef.tar
dexon-sol-tools-24aa5cd1bf38197a72be32a53f2e4a7c9aaf58ef.tar.gz
dexon-sol-tools-24aa5cd1bf38197a72be32a53f2e4a7c9aaf58ef.tar.bz2
dexon-sol-tools-24aa5cd1bf38197a72be32a53f2e4a7c9aaf58ef.tar.lz
dexon-sol-tools-24aa5cd1bf38197a72be32a53f2e4a7c9aaf58ef.tar.xz
dexon-sol-tools-24aa5cd1bf38197a72be32a53f2e4a7c9aaf58ef.tar.zst
dexon-sol-tools-24aa5cd1bf38197a72be32a53f2e4a7c9aaf58ef.zip
Make the test:installation work with the local npm registry
Diffstat (limited to 'packages/monorepo-scripts/src')
-rw-r--r--packages/monorepo-scripts/src/test_installation.ts17
1 files changed, 12 insertions, 5 deletions
diff --git a/packages/monorepo-scripts/src/test_installation.ts b/packages/monorepo-scripts/src/test_installation.ts
index 52868483f..a9610e5ee 100644
--- a/packages/monorepo-scripts/src/test_installation.ts
+++ b/packages/monorepo-scripts/src/test_installation.ts
@@ -10,20 +10,27 @@ import { utils } from './utils/utils';
(async () => {
const monorepoRootPath = path.join(__dirname, '../../..');
- const packages = utils.getPackages(monorepoRootPath);
+ const packages = utils.getTopologicallySortedPackages(monorepoRootPath);
const installablePackages = _.filter(
packages,
pkg => !pkg.packageJson.private && !_.isUndefined(pkg.packageJson.main) && pkg.packageJson.main.endsWith('.js'),
);
+ utils.log('Testing packages:');
+ _.map(installablePackages, pkg => utils.log(`* ${pkg.packageJson.name}`));
for (const installablePackage of installablePackages) {
+ const changelogPath = path.join(installablePackage.location, 'CHANGELOG.json');
+ const lastChangelogVersion = JSON.parse(fs.readFileSync(changelogPath).toString())[0].version;
const packageName = installablePackage.packageJson.name;
- const packageVersion = installablePackage.packageJson.version;
utils.log(`Testing ${packageName}`);
const testDirectory = path.join(monorepoRootPath, '../test-env');
fs.mkdirSync(testDirectory);
- let result = await execAsync('yarn init --yes', { cwd: testDirectory });
- utils.log(`Installing ${packageName}@${packageVersion}`);
- result = await execAsync(`yarn add ${packageName}@${packageVersion}`, { cwd: testDirectory });
+ await execAsync('yarn init --yes', { cwd: testDirectory });
+ const npmrcFilePath = path.join(testDirectory, '.npmrc');
+ fs.writeFileSync(npmrcFilePath, `registry=http://localhost:4873`);
+ utils.log(`Installing ${packageName}@${lastChangelogVersion}`);
+ await execAsync(`npm install --save ${packageName}@${lastChangelogVersion} --registry=http://localhost:4873`, {
+ cwd: testDirectory,
+ });
const indexFilePath = path.join(testDirectory, 'index.ts');
fs.writeFileSync(indexFilePath, `import * as Package from '${packageName}';\n`);
const tsConfig = {