From ec06d8d6067488b53183db392b4da91be0cc219e Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Tue, 27 Mar 2018 15:05:05 +0200 Subject: Add typeRoots --- .circleci/config.yml | 1 - package.json | 1 - packages/monorepo-scripts/src/test_installation.ts | 1 + 3 files changed, 1 insertion(+), 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'], -- cgit v1.2.3