diff --git a/.circleci/config.yml b/.circleci/config.yml index 2d9dd505..6de38006 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -9,9 +9,6 @@ jobs: - run: name: Installing dependencies command: yarn install - - run: - name: Bootstrapping - command: yarn bootstrap - run: name: Linting command: yarn lint @@ -31,4 +28,4 @@ workflows: version: 2 build-and-deploy: jobs: - - build \ No newline at end of file + - build diff --git a/.travis.yml b/.travis.yml index f02bb218..28dde0f5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,6 +20,6 @@ before_cache: [ "rm -rf node_modules/.cache" ], - before_script: ["npm run bootstrap"], + before_script: [], after_script: ["npm run coveralls"] } diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 6dab13bf..74b306bf 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -19,10 +19,6 @@ steps: yarn install displayName: 'Install dependencies' -- script: | - yarn bootstrap - displayName: 'Lerna bootstrap' - - script: | yarn test displayName: 'Run tests' diff --git a/contributing.md b/contributing.md index 314588c3..af79698c 100644 --- a/contributing.md +++ b/contributing.md @@ -3,10 +3,9 @@ Our Commitment to Open Source can be found [here](https://zeit.co/blog/oss) 1. [Fork](https://help.github.com/articles/fork-a-repo/) this repository to your own GitHub account and then [clone](https://help.github.com/articles/cloning-a-repository/) it to your local device. -2. Install yarn: `npm install -g yarn` -3. Install the dependencies: `yarn` -4. Run `yarn run bootstrap`, which will link all repositories locally -5. Run `yarn run dev` to build and watch for code changes +1. Install yarn: `npm install -g yarn` +1. Install the dependencies: `yarn` +1. Run `yarn run dev` to build and watch for code changes ## To run tests diff --git a/package.json b/package.json index 2f363c35..a5911f21 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,6 @@ ], "scripts": { "lerna": "lerna", - "bootstrap": "lerna bootstrap", "dev": "lerna run build --stream --parallel", "testonly": "jest", "testall": "yarn check && npm run testonly -- --coverage --forceExit --runInBand --reporters=default --reporters=jest-junit",