Split running packages that cannot be run in a node.js script
This commit is contained in:
parent
3b005ad47c
commit
a90f434df5
@ -8,6 +8,14 @@ import * as rimraf from 'rimraf';
|
|||||||
|
|
||||||
import { utils } from './utils/utils';
|
import { utils } from './utils/utils';
|
||||||
|
|
||||||
|
// Packages might not be runnable if they are command-line tools or only run in browsers.
|
||||||
|
const UNRUNNABLE_PACKAGES = [
|
||||||
|
'@0xproject/abi-gen',
|
||||||
|
'@0xproject/sra-report',
|
||||||
|
'@0xproject/react-shared',
|
||||||
|
'@0xproject/react-docs',
|
||||||
|
];
|
||||||
|
|
||||||
(async () => {
|
(async () => {
|
||||||
const IS_LOCAL_PUBLISH = process.env.IS_LOCAL_PUBLISH === 'true';
|
const IS_LOCAL_PUBLISH = process.env.IS_LOCAL_PUBLISH === 'true';
|
||||||
const registry = IS_LOCAL_PUBLISH ? 'http://localhost:4873/' : 'https://registry.npmjs.org/';
|
const registry = IS_LOCAL_PUBLISH ? 'http://localhost:4873/' : 'https://registry.npmjs.org/';
|
||||||
@ -19,7 +27,7 @@ import { utils } from './utils/utils';
|
|||||||
);
|
);
|
||||||
utils.log('Testing packages:');
|
utils.log('Testing packages:');
|
||||||
const installablePackages = _.filter(preInstallablePackages, pkg => {
|
const installablePackages = _.filter(preInstallablePackages, pkg => {
|
||||||
return pkg.packageJson.name === '0x.js';
|
return !_.includes(UNRUNNABLE_PACKAGES, pkg.packageJson.name);
|
||||||
});
|
});
|
||||||
_.map(installablePackages, pkg => utils.log(`* ${pkg.packageJson.name}`));
|
_.map(installablePackages, pkg => utils.log(`* ${pkg.packageJson.name}`));
|
||||||
for (const installablePackage of installablePackages) {
|
for (const installablePackage of installablePackages) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user