-
Notifications
You must be signed in to change notification settings - Fork 149
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
convert this project to generator-videojs-plugin conventions
- Loading branch information
1 parent
47a7eee
commit 280a339
Showing
34 changed files
with
1,820 additions
and
52,520 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# http://editorconfig.org | ||
root = true | ||
|
||
[*] | ||
charset = utf-8 | ||
end_of_line = lf | ||
indent_style = space | ||
indent_size = 2 | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
|
||
[*.md] | ||
trim_trailing_whitespace = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,34 @@ | ||
/node_modules/ | ||
/bower_components/ | ||
# OS | ||
Thumbs.db | ||
ehthumbs.db | ||
Desktop.ini | ||
.DS_Store | ||
/samples/ | ||
yarn.lock | ||
._* | ||
|
||
# Editors | ||
*~ | ||
*.swp | ||
*.tmproj | ||
*.tmproject | ||
*.sublime-* | ||
.idea/ | ||
.project/ | ||
.settings/ | ||
.vscode/ | ||
|
||
# Logs | ||
logs | ||
*.log | ||
npm-debug.log* | ||
|
||
# Dependency directories | ||
bower_components/ | ||
node_modules/ | ||
|
||
# Yeoman meta-data | ||
.yo-rc.json | ||
|
||
# Build-related directories | ||
dist/ | ||
docs/api/ | ||
test/dist/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Intentionally left blank, so that npm does not ignore anything by default, | ||
# but relies on the package.json "files" array to explicitly define what ends | ||
# up in the package. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
sudo: false | ||
dist: trusty | ||
language: node_js | ||
node_js: | ||
- 'node' | ||
- 'lts/argon' | ||
before_script: | ||
- export CHROME_BIN=/usr/bin/google-chrome | ||
- export DISPLAY=:99.0 | ||
- sh -e /etc/init.d/xvfb start | ||
addons: | ||
firefox: latest | ||
apt: | ||
sources: | ||
- google-chrome | ||
packages: | ||
- google-chrome-stable |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# CONTRIBUTING | ||
|
||
We welcome contributions from everyone! | ||
|
||
## Getting Started | ||
|
||
Make sure you have NodeJS 0.10 or higher and npm installed. | ||
|
||
1. Fork this repository and clone your fork | ||
1. Install dependencies: `npm install` | ||
1. Run a development server: `npm start` | ||
|
||
### Making Changes | ||
|
||
Refer to the [video.js plugin conventions][conventions] for more detail on best practices and tooling for video.js plugin authorship. | ||
|
||
When you've made your changes, push your commit(s) to your fork and issue a pull request against the original repository. | ||
|
||
### Running Tests | ||
|
||
Testing is a crucial part of any software project. For all but the most trivial changes (typos, etc) test cases are expected. Tests are run in actual browsers using [Karma][karma]. | ||
|
||
- In all available and supported browsers: `npm test` | ||
- In a specific browser: `npm run test:chrome`, `npm run test:firefox`, etc. | ||
- While development server is running (`npm start`), navigate to [`http://localhost:9999/test/`][local] | ||
|
||
|
||
[karma]: http://karma-runner.github.io/ | ||
[local]: http://localhost:9999/test/ | ||
[conventions]: https://github.com/videojs/generator-videojs-plugin/blob/master/docs/conventions.md |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.