Use path for platform independence

This commit is contained in:
Fabio Berger
2018-04-20 10:00:37 +09:00
parent 417cec9e04
commit 7f46e9af2c

View File

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