-
Notifications
You must be signed in to change notification settings - Fork 40
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 videojs standard #204
Conversation
@@ -12,14 +12,12 @@ const FILES = { | |||
'scripts/rollup.config.js', | |||
'scripts/version.js', | |||
'src/plugin.js', | |||
'test/index.html', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
we don't make this file anymore, since 6.0.0
'scripts/karma.conf.js', | ||
'test/plugin.test.js', | ||
'.editorconfig', | ||
'.gitignore', | ||
'.npmignore', | ||
'.nvmrc', | ||
'scripts/jsdoc.json', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We only make this file for docs, seems like the tests were majorly broken until now.
const fileList = () => | ||
_.union.apply(_, _.toArray(arguments).map(str => FILES[str])); | ||
const fileList = function() { | ||
return _.union.apply(_, _.toArray(arguments).map(str => FILES[str])); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
arguments was undefined for an arrow function, which turned this to an empty array, so it was searching for nothing...
@@ -1,6 +1,10 @@ | |||
# generator-videojs-plugin | |||
|
|||
[![Build Status](https://travis-ci.org/videojs/generator-videojs-plugin.svg?branch=master)](https://travis-ci.org/videojs/generator-videojs-plugin) | |||
[![Greenkeeper badge](https://badges.greenkeeper.io/videojs/generator-videojs-plugin.svg)](https://greenkeeper.io/) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Our now standard badges!
No description provided.