aboutsummaryrefslogtreecommitdiffstats
path: root/packages/monorepo-scripts/src/constants.ts
blob: 3aaf881cb4729c9df41fffab7ea718cbf1a6e9fc (plain) (blame)
1
2
3
4
5
6
7
8
import * as path from 'path';

export const constants = {
    monorepoRootPath: path.join(__dirname, '../../..'),
    stagingWebsite: 'http://staging-0xproject.s3-website-us-east-1.amazonaws.com',
    lernaExecutable: path.join('node_modules', 'lerna', 'bin', 'lerna.js'),
    githubPersonalAccessToken: process.env.GITHUB_PERSONAL_ACCESS_TOKEN_0X_JS,
};