Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update to use plugin generator v7.0.2 #28

Merged
merged 14 commits into from
Aug 29, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .babelrc

This file was deleted.

7 changes: 2 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,9 @@ npm-debug.log*
bower_components/
node_modules/

# Yeoman meta-data
.yo-rc.json

# Build-related directories
dist/
docs/api/
test/dist/
test/test-expected.js
test/test-manifests.js
.eslintcache
.yo-rc.json
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
lts/*
16 changes: 13 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
sudo: required
sudo: false
dist: trusty
language: node_js
node_js:
- 8
# node version is specified using the .nvmrc file
before_install:
- npm install -g greenkeeper-lockfile@1
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- greenkeeper-lockfile-update
after_script:
- greenkeeper-lockfile-upload
addons:
firefox: latest
chrome: stable

Empty file modified CONTRIBUTING.md
100755 → 100644
Empty file.
Empty file modified LICENSE
100755 → 100644
Empty file.
6 changes: 6 additions & 0 deletions README.md
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# mpd-parser

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

[![NPM](https://nodei.co/npm/mpd-parser.png?downloads=true&downloadRank=true)](https://nodei.co/npm/mpd-parser/)

mpd parser

## Table of Contents
Expand Down
6 changes: 1 addition & 5 deletions index.html
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<body>
<p>Open dev tools to try it out</p>
<ul>
<li><a id="test-page">Run unit tests in browser.</a></li>
<li><a id="test/debug.html">Run unit tests in browser.</a></li>
<li><a id="docs" href="docs/api/">Read generated docs.</a></li>
</ul>

Expand All @@ -22,10 +22,6 @@
<script src="dist/mpd-parser.js"></script>
<script>
(function(window, mpdParser) {
var testPage = document.getElementById('test-page');
testPage.href = window.location.protocol + '//' +
window.location.hostname + ':9876/debug.html';

var parseForm = document.getElementById('parse');
var url = document.getElementById('url');

Expand Down
Loading