Skip to content

Commit

Permalink
chore: add travis, greenkeeper, changelog, and toc tools
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonocasey committed Aug 17, 2018
1 parent d2700f4 commit 0905caa
Show file tree
Hide file tree
Showing 5 changed files with 1,590 additions and 110 deletions.
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
lts/*
11 changes: 11 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
sudo: false
dist: trusty
language: node_js
node_js:
- 'lts/*'
before_install:
- npm install -g greenkeeper-lockfile@1
before_script:
- greenkeeper-lockfile-update
after_script: greenkeeper-lockfile-upload

34 changes: 34 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,43 @@
# videojs-generate-rollup-config

[![Build Status](https://travis-ci.org/videojs/videojs-generate-rollup-config.svg?branch=master)](https://travis-ci.org/videojs/videojs-generate-rollup-config)
[![Greenkeeper badge](https://badges.greenkeeper.io/videojs/videojs-generate-rollup-config.svg)](https://greenkeeper.io/)
[![Slack Status](http://slack.videojs.com/badge.svg)](http://slack.videojs.com)

[![NPM](https://nodei.co/npm/videojs-generate-rollup-config.png?downloads=true&downloadRank=true)](https://nodei.co/npm/videojs-generate-rollup-config/)

Currently rollup configs are the same for most plugins, but when the default config changes a bit, every repository has
to be updated since it is a static file. This package will provide the standard config as a module, so that updates can be
deployed much easier.

Lead Maintainer: Brandon Casey [@brandonocasey](https://github.com/brandonocasey)

Maintenance Status: Stable


<!-- START doctoc generated TOC please keep comment here to allow auto update -->
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
**Table of Contents**

- [Installation](#installation)
- [Options](#options)
- [`input`](#input)
- [`distName`](#distname)
- [`exportName`](#exportname)
- [`browserslist`](#browserslist)
- [`checkWatch`](#checkwatch)
- [`banner`](#banner)
- [`globals`](#globals)
- [`externals`](#externals)
- [`plugins`](#plugins)
- [`primedPlugins`](#primedplugins)
- [Defaults](#defaults)
- [defaultGlobals](#defaultglobals)
- [defaultExternals](#defaultexternals)
- [defaultPlugins](#defaultplugins)
- [defaultPrimedPlugins](#defaultprimedplugins)

<!-- END doctoc generated TOC please keep comment here to allow auto update -->

## Installation

Expand Down
Loading

0 comments on commit 0905caa

Please sign in to comment.