From 6667730b74afd3ca0c6823492a2314650f3c0c21 Mon Sep 17 00:00:00 2001 From: Moody Salem Date: Wed, 22 Apr 2020 10:45:32 -0500 Subject: [PATCH] Prepare beta.3 with repository URL in package.json --- README.md | 8 ++------ package.json | 6 +++++- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 885578384..1d72187a1 100644 --- a/README.md +++ b/README.md @@ -1,20 +1,16 @@ # Uniswap V2 [![Actions Status](https://github.com/Uniswap/uniswap-v2-core/workflows/CI/badge.svg)](https://github.com/Uniswap/uniswap-v2-core/actions) -[![Version](https://img.shields.io/npm/v/@uniswap/v2-core)](https://unpkg.com/browse/@uniswap/v2-core@latest/) +[![Version](https://img.shields.io/npm/v/@uniswap/v2-core)](https://www.npmjs.com/package/@uniswap/v2-core) In-depth documentation on Uniswap V2 is available at [uniswap.org](https://uniswap.org/docs). -The built contract artifacts can be found in the [NPM package](https://unpkg.com/browse/@uniswap/v2-core@latest/). +The built contract artifacts can be browsed via [unpkg.com](https://unpkg.com/browse/@uniswap/v2-core@latest/). # Local Development The following assumes the use of `node@>=10`. -## Clone Repository - -`git clone https://github.com/Uniswap/uniswap-v2-core.git` - ## Install Dependencies `yarn` diff --git a/package.json b/package.json index c15fcecfa..045f17951 100644 --- a/package.json +++ b/package.json @@ -1,10 +1,14 @@ { "name": "@uniswap/v2-core", - "version": "1.0.0-beta.2", + "version": "1.0.0-beta.3", "files": [ "contracts", "build" ], + "repository": { + "type": "git", + "url": "https://github.com/Uniswap/uniswap-v2-core" + }, "engines": { "node": ">=10" },