Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
brainfood
/
videojs-contrib-hls
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
12790e51
authored
2015-06-26 17:58:57 -0400
by
David LaPalomento
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge pull request #309 from videojs/release-fixes
Add github-releaser config
2 parents
48eb8b72
ce6dbeec
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
2 deletions
CHANGELOG.md
Gruntfile.js
CHANGELOG.md
View file @
12790e5
...
...
@@ -10,7 +10,6 @@ CHANGELOG
--------------------
## 0.17.2 (2015-06-15)
*
@dmlap fix seeking in live streams (
[
view
](
https://github.com/videojs/videojs-contrib-hls/pull/308
)
)
## 0.17.1 (2015-06-08)
...
...
Gruntfile.js
View file @
12790e5
...
...
@@ -3,11 +3,12 @@
var
basename
=
require
(
'path'
).
basename
;
module
.
exports
=
function
(
grunt
)
{
var
pkg
=
grunt
.
file
.
readJSON
(
'package.json'
);
// Project configuration.
grunt
.
initConfig
({
// Metadata.
pkg
:
grunt
.
file
.
readJSON
(
'package.json'
)
,
pkg
:
pkg
,
banner
:
'/*! <%= pkg.name %> - v<%= pkg.version %> - '
+
'<%= grunt.template.today("yyyy-mm-dd") %>\n'
+
'* Copyright (c) <%= grunt.template.today("yyyy") %> Brightcove;'
+
...
...
@@ -124,6 +125,23 @@ module.exports = function(grunt) {
src
:
[
'package.json'
]
}
},
'github-release'
:
{
options
:
{
repository
:
'videojs/videojs-contrib-hls'
,
auth
:
{
user
:
process
.
env
.
VJS_GITHUB_USER
,
password
:
process
.
env
.
VJS_GITHUB_TOKEN
},
release
:
{
'tag_name'
:
'v'
+
pkg
.
version
,
name
:
pkg
.
version
,
body
:
require
(
'chg'
).
find
(
pkg
.
version
).
changesRaw
}
},
files
:
{
'dist'
:
[
'videojs.hls.min.js'
]
}
},
karma
:
{
options
:
{
frameworks
:
[
'qunit'
]
...
...
Please
register
or
sign in
to post a comment