diff options
-rw-r--r-- | .circleci/config.yml | 1 | ||||
-rw-r--r-- | package.json | 1 | ||||
-rw-r--r-- | packages/monorepo-scripts/src/test_installation.ts | 1 |
3 files changed, 1 insertions, 2 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index d4ffe62ea..615980e88 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -35,7 +35,6 @@ jobs: - restore_cache: keys: - repo-{{ .Environment.CIRCLE_SHA1 }} - - run: yarn lerna:exec 'yarn pack --filename package.tgz' - run: yarn test:installation test-0xjs: docker: diff --git a/package.json b/package.json index 1a2d917c0..457268454 100644 --- a/package.json +++ b/package.json @@ -10,7 +10,6 @@ "report_coverage": "lcov-result-merger 'packages/*/coverage/lcov.info' | coveralls", "test:installation": "node ./packages/monorepo-scripts/lib/test_installation.js", "lerna:run": "lerna run", - "lerna:exec": "lerna exec", "lerna:rebuild": "lerna run clean; lerna run build;", "lerna:publish": "yarn install; lerna run clean; lerna run build; lerna publish --registry=https://registry.npmjs.org/" diff --git a/packages/monorepo-scripts/src/test_installation.ts b/packages/monorepo-scripts/src/test_installation.ts index 116b70f3a..195b64b2a 100644 --- a/packages/monorepo-scripts/src/test_installation.ts +++ b/packages/monorepo-scripts/src/test_installation.ts @@ -34,6 +34,7 @@ import { utils } from './utils'; fs.writeFileSync(indexFilePath, `import * as Package from '${packageName}'`); const tsConfig = { compilerOptions: { + typeRoots: ['node_modules/@0xproject/typescript-typings/types', 'node_modules/@types'], module: 'commonjs', target: 'es5', lib: ['es2017', 'dom'], |