Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id DD1CF200CCA for ; Wed, 19 Jul 2017 10:18:02 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id DB90816881A; Wed, 19 Jul 2017 08:18:02 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 2D737168817 for ; Wed, 19 Jul 2017 10:18:02 +0200 (CEST) Received: (qmail 82824 invoked by uid 500); 19 Jul 2017 08:18:01 -0000 Mailing-List: contact commits-help@superset.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@superset.incubator.apache.org Delivered-To: mailing list commits@superset.incubator.apache.org Received: (qmail 82815 invoked by uid 99); 19 Jul 2017 08:18:01 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Jul 2017 08:18:01 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 28AB88153F; Wed, 19 Jul 2017 08:17:58 +0000 (UTC) Date: Wed, 19 Jul 2017 08:17:58 +0000 To: "commits@superset.apache.org" Subject: [incubator-superset] branch master updated: [docs] use yarn in CONTRIBUTING.md (#3150) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <150045227823.28314.17665802812983549181@gitbox.apache.org> From: maximebeauchemin@apache.org Reply-To: "commits@superset.apache.org" X-Git-Host: gitbox.apache.org X-Git-Repo: incubator-superset X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: d7e419127c71c97580b00c8dae5fc14eb054a312 X-Git-Newrev: 51f1aa31066b3fbf59b23d2ad2f98d0d6195643b X-Git-Rev: 51f1aa31066b3fbf59b23d2ad2f98d0d6195643b X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated archived-at: Wed, 19 Jul 2017 08:18:03 -0000 This is an automated email from the ASF dual-hosted git repository. maximebeauchemin pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/incubator-superset.git The following commit(s) were added to refs/heads/master by this push: new 51f1aa3 [docs] use yarn in CONTRIBUTING.md (#3150) 51f1aa3 is described below commit 51f1aa31066b3fbf59b23d2ad2f98d0d6195643b Author: Maxime Beauchemin AuthorDate: Wed Jul 19 01:17:56 2017 -0700 [docs] use yarn in CONTRIBUTING.md (#3150) * [docs] use yarn in CONTRIBUTING.md * Updating badges --- CONTRIBUTING.md | 9 +++++++-- README.md | 13 +++++-------- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d909d5d..cd45739 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -223,8 +223,13 @@ To install third party libraries defined in `package.json`, run the following within the `superset/assets/` directory which will install them in a new `node_modules/` folder within `assets/`. -``` -npm install +```bash +# from the root of the repository, move to where our JS package.json lives +cd superset/assets/ +# install yarn, a replacement for `npm install` that is faster and more deterministic +npm install -g yarn +# run yarn to fetch all the dependencies +yarn ``` To parse and generate bundled files for superset, run either of the diff --git a/README.md b/README.md index 86e8db1..3eda11e 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,14 @@ Superset ========= -[![Build Status](https://travis-ci.org/airbnb/superset.svg?branch=master)](https://travis-ci.org/airbnb/superset) +[![Build Status](https://travis-ci.org/apache/incubator-superset.svg?branch=master)](https://travis-ci.org/apache/incubator-superset) [![PyPI version](https://badge.fury.io/py/superset.svg)](https://badge.fury.io/py/superset) -[![Coverage Status](https://coveralls.io/repos/airbnb/superset/badge.svg?branch=master&service=github)](https://coveralls.io/github/airbnb/superset?branch=master) -[![JS Test Coverage](https://codeclimate.com/github/airbnb/superset/badges/coverage.svg)](https://codeclimate.com/github/airbnb/superset/coverage) -[![Code Health](https://landscape.io/github/airbnb/superset/master/landscape.svg?style=flat)](https://landscape.io/github/airbnb/superset/master) -[![Code Climate](https://codeclimate.com/github/airbnb/superset/badges/gpa.svg)](https://codeclimate.com/github/airbnb/superset) +[![Coverage Status](https://coveralls.io/repos/apache/incubator-superset/badge.svg?branch=master&service=github)](https://coveralls.io/github/apache/incubator-superset?branch=master) [![PyPI](https://img.shields.io/pypi/pyversions/superset.svg?maxAge=2592000)](https://pypi.python.org/pypi/superset) -[![Requirements Status](https://requires.io/github/airbnb/superset/requirements.svg?branch=master)](https://requires.io/github/airbnb/superset/requirements/?branch=master) -[![Join the chat at https://gitter.im/airbnb/superset](https://badges.gitter.im/airbnb/superset.svg)](https://gitter.im/airbnb/superset?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) +[![Requirements Status](https://requires.io/github/apache/incubator-superset/requirements.svg?branch=master)](https://requires.io/github/apache/incubator-superset/requirements/?branch=master) +[![Join the chat at https://gitter.im/apache/incubator-superset](https://badges.gitter.im/apache/incubator-superset.svg)](https://gitter.im/apache/incubator-superset?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) [![Documentation](https://img.shields.io/badge/docs-apache.org-blue.svg)](https://superset.incubator.apache.org) -[![dependencies Status](https://david-dm.org/airbnb/superset/status.svg?path=superset/assets)](https://david-dm.org/airbnb/superset?path=superset/assets) +[![dependencies Status](https://david-dm.org/apache/incubator-superset/status.svg?path=superset/assets)](https://david-dm.org/apache/incubator-superset?path=superset/assets) '].