2013-04-08 23:55:50 +03:00
|
|
|
{
|
2014-02-15 03:52:48 +03:00
|
|
|
"project": {
|
|
|
|
"owner": "videojs",
|
|
|
|
"name": "video.js",
|
2014-02-24 22:32:35 +03:00
|
|
|
"urls": {
|
|
|
|
"git": "https://github.com/videojs/video.js.git"
|
|
|
|
},
|
2014-02-15 03:52:48 +03:00
|
|
|
"requirements": [
|
|
|
|
{
|
|
|
|
"name": "git",
|
|
|
|
"info": "http://git-scm.com",
|
|
|
|
"test": "which git"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "node.js",
|
|
|
|
"info": "http://nodejs.org",
|
|
|
|
"test": "which node"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
|
2014-02-24 22:32:35 +03:00
|
|
|
"install": {
|
|
|
|
"steps": [
|
|
|
|
{
|
|
|
|
"desc": "Get all git branches",
|
|
|
|
"exec": "git fetch origin"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Create the stable branch for patches",
|
|
|
|
"exec": "git checkout -b stable origin/stable"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Add the upstream project as a remote so new changes can be pulled",
|
|
|
|
"exec": "git remote add upstream <%= project.urls.git %>"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Get all upstream branches and changes",
|
|
|
|
"exec": "git fetch upstream"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"contrib": "update"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
|
|
|
|
"update": {
|
|
|
|
"steps": [
|
|
|
|
{
|
|
|
|
"desc": "Switch to the development branch",
|
|
|
|
"exec": "git checkout master"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Get any changes to master in the main project",
|
|
|
|
"exec": "git pull upstream master"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Switch to the release branch",
|
|
|
|
"exec": "git checkout stable"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Get any changes to stable in the main project",
|
|
|
|
"exec": "git pull upstream stable"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Install dependencies",
|
|
|
|
"exec": "npm install"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Build the distribution",
|
|
|
|
"exec": "grunt"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
|
2014-02-15 03:52:48 +03:00
|
|
|
"test": {
|
2014-03-04 00:32:21 +03:00
|
|
|
"steps": [
|
|
|
|
{
|
|
|
|
"desc": "Run automated tests",
|
|
|
|
"exec": "grunt test"
|
|
|
|
}
|
|
|
|
]
|
2014-02-15 03:52:48 +03:00
|
|
|
},
|
|
|
|
|
|
|
|
"contributions": {
|
|
|
|
|
2014-03-04 00:32:21 +03:00
|
|
|
"feature": {
|
2014-05-09 23:09:58 +03:00
|
|
|
"desc": "Create a new feature or general enhancement",
|
2014-03-04 00:32:21 +03:00
|
|
|
"start": {
|
|
|
|
"desc": "Start a new feature",
|
|
|
|
"steps": [
|
|
|
|
{
|
|
|
|
"id": "name",
|
|
|
|
"desc": "Name the feature branch",
|
|
|
|
"prompt": {
|
|
|
|
"type": "text",
|
|
|
|
"message": "name"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Check out the development branch and get any updates",
|
|
|
|
"exec": "git checkout master && git pull upstream master"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Create the patch branch",
|
|
|
|
"exec": "git checkout -b feature/<%= name %>"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Push the branch to the origin repo",
|
|
|
|
"exec": "git push -u origin feature/<%= name %>"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"submit": {
|
|
|
|
"desc": "Submit a pull request for a feature when it's finished",
|
|
|
|
"steps": [
|
|
|
|
{
|
|
|
|
"desc": "Test for unadded changes <%= args[0] %>",
|
|
|
|
"exec": "git diff --exit-code",
|
|
|
|
"fail": "Make sure all changes have been added and committed, or stashed, before switching branches"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Test for uncommitted changes",
|
|
|
|
"exec": "git diff --cached --exit-code",
|
|
|
|
"fail": "Make sure all changes have been added and committed, or stashed, before switching branches"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"contrib": "test"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "branch",
|
|
|
|
"desc": "Get the current branch",
|
|
|
|
"exec": "git rev-parse --abbrev-ref HEAD"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Are you sure <%= branch %> is the branch you want to submit",
|
2014-05-09 23:09:58 +03:00
|
|
|
"confirm": "confirm"
|
2014-03-04 00:32:21 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "user",
|
|
|
|
"desc": "Which github user or org are you submitting from?",
|
|
|
|
"prompt": {
|
|
|
|
"type": "text",
|
|
|
|
"message": "user"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Open the github pull request page",
|
|
|
|
"open": "https://github.com/videojs/video.js/compare/videojs:master...<%= user %>:<%= branch %>"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2014-02-24 22:32:35 +03:00
|
|
|
"patch": {
|
2014-05-09 23:09:58 +03:00
|
|
|
"desc": "Create an urgent fix for the latest stable version",
|
2014-02-24 22:32:35 +03:00
|
|
|
"new": {
|
|
|
|
"desc": "Start a new patch",
|
|
|
|
"steps": [
|
|
|
|
{
|
|
|
|
"id": "name",
|
|
|
|
"desc": "Name the patch branch",
|
|
|
|
"prompt": {
|
|
|
|
"type": "text",
|
|
|
|
"message": "name"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Check out the release branch and get any updates",
|
|
|
|
"exec": "git checkout stable && git pull upstream stable"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Create the patch branch",
|
|
|
|
"exec": "git checkout -b patch/<%= name %>"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Push the branch to the origin repo",
|
|
|
|
"exec": "git push -u origin patch/<%= name %>"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"submit": {
|
2014-02-25 08:10:29 +03:00
|
|
|
"desc": "Submit a pull request for a patch when it's finished",
|
2014-02-24 22:32:35 +03:00
|
|
|
"steps": [
|
|
|
|
{
|
|
|
|
"contrib": "test"
|
2014-02-25 08:10:29 +03:00
|
|
|
},
|
|
|
|
{
|
2014-03-04 00:32:21 +03:00
|
|
|
"desc": "Test for unadded changes",
|
2014-02-25 08:10:29 +03:00
|
|
|
"exec": "git diff --exit-code",
|
2014-03-04 00:32:21 +03:00
|
|
|
"fail": "Make sure all changes have been added and committed, or stashed, before switching branches"
|
2014-02-25 08:10:29 +03:00
|
|
|
},
|
|
|
|
{
|
2014-03-04 00:32:21 +03:00
|
|
|
"desc": "Test for uncommitted changes",
|
2014-02-25 08:10:29 +03:00
|
|
|
"exec": "git diff --cached --exit-code",
|
2014-03-04 00:32:21 +03:00
|
|
|
"fail": "Make sure all changes have been added and committed, or stashed, before switching branches"
|
2014-02-25 08:10:29 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "branch",
|
2014-03-04 00:32:21 +03:00
|
|
|
"desc": "Get the current branch",
|
|
|
|
"exec": "git rev-parse --abbrev-ref HEAD"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Are you sure <%= branch %> is the branch you want to submit",
|
2014-05-09 23:09:58 +03:00
|
|
|
"confirm": "confirm"
|
2014-02-25 08:10:29 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "user",
|
|
|
|
"desc": "Which github user or org are you submitting from?",
|
|
|
|
"prompt": {
|
|
|
|
"type": "text",
|
|
|
|
"message": "user"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Open the github pull request page",
|
|
|
|
"open": "https://github.com/videojs/video.js/compare/videojs:stable...<%= user %>:<%= branch %>"
|
2014-02-24 22:32:35 +03:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"delete": {
|
2014-02-25 08:10:29 +03:00
|
|
|
"desc": "Delete the current patch branch",
|
2014-02-24 22:32:35 +03:00
|
|
|
"steps": [
|
|
|
|
{
|
|
|
|
"id": "name",
|
|
|
|
"guide": false,
|
|
|
|
"desc": "Get the current branch name",
|
|
|
|
"exec": "git rev-parse --abbrev-ref HEAD"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Confirm you are deleting the correct branch",
|
2014-05-09 23:09:58 +03:00
|
|
|
"confirm": "Delete branch '<%= name %>'?"
|
2014-02-25 08:10:29 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Delete the local copy of the branch",
|
|
|
|
"exec": "git branch -D <%= name %>"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Delete the remote copy of the branch",
|
|
|
|
"exec": "git push origin :<%= name %>"
|
2014-02-24 22:32:35 +03:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2014-05-09 23:09:58 +03:00
|
|
|
"bug": {
|
|
|
|
"desc": "Submit a bug report",
|
|
|
|
"steps": [
|
|
|
|
{
|
|
|
|
"id": "title",
|
|
|
|
"prompt": "Title your bug report"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "reproduce",
|
|
|
|
"prompt": "What did you do? (steps to reproduce)"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "expected",
|
|
|
|
"prompt": "What did you expect to happen?"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "actual",
|
|
|
|
"prompt": "What actually happened?"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "version",
|
|
|
|
"prompt": "What version of video.js are you using?"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "plugins",
|
|
|
|
"prompt": "Are you using any video.js plugins?"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "browsers",
|
|
|
|
"prompt": "What browsers/platforms did you experience this in (e.g. Win 7, IE10; Android 4, Chrome;)?"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "example",
|
|
|
|
"prompt": "Is there a URL to a live example, or a jsbin (e.g. http://jsbin.com/axedog/9999/edit)?"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "details",
|
|
|
|
"prompt": "Are there any other details you'd like to provide?"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"open": "https://github.com/videojs/video.js/issues/new?title=<%= title %>&body=**Steps to reproduce:**\n> <%= reproduce %>\n\n**What was expected:**\n> <%= expected %>\n\n**What Happened:**\n> <%= actual %>\n\n**Video.js Version:**\n> <%= version %>\n\n**Plugins:**\n> <%= plugins %>\n\n**Browsers experienced on:**\n> <%= browsers %>\n\n**Example:**\n> <%= example %>\n\n**Other details:**\n> <%= details %>"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
|
|
|
|
"request": {
|
|
|
|
"desc": "Submit a feature/enhancement request",
|
|
|
|
"steps": [
|
|
|
|
{
|
|
|
|
"id": "title",
|
|
|
|
"prompt": "Title your request"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "describe",
|
|
|
|
"prompt": "Describe the feature/enhancement (be as detailed as possible so it's clear who, why, and how it would be used)"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "docs",
|
|
|
|
"prompt": "Is there any existing documentation or related specifications?"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": "examples",
|
|
|
|
"prompt": "Are there any existing examples?"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"confirm": "You will be redirected to Github where you can submit this issue, OK?"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"open": "https://github.com/videojs/video.js/issues/new?title=<%= title %>&body=**Describe the feature/enhancement:**\n> <%= describe %>\n\n**Existing docs/specs:**\n> <%= docs %>\n\n**Existing examples:**\n> <%= examples %>"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
|
2014-02-15 03:52:48 +03:00
|
|
|
"release": {
|
|
|
|
"desc": "Create and publish a release",
|
|
|
|
"steps": [
|
|
|
|
{
|
|
|
|
"desc": "Ensure there's no unadded changes",
|
|
|
|
"exec": "git diff --exit-code"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Ensure there's no added changes",
|
|
|
|
"exec": "git diff --cached --exit-code"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Have the changes been merged into the release branch (stable)?",
|
2014-05-09 23:09:58 +03:00
|
|
|
"confirm": "confirm"
|
2014-02-15 03:52:48 +03:00
|
|
|
},
|
|
|
|
{
|
2014-03-27 23:32:06 +03:00
|
|
|
"id": "type",
|
2014-02-15 03:52:48 +03:00
|
|
|
"desc": "Provide the release type",
|
|
|
|
"prompt": {
|
|
|
|
"message": "release type",
|
|
|
|
"default": "patch",
|
|
|
|
"type": "text"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Checkout and update the release branch",
|
|
|
|
"exec": "git checkout stable & git pull"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Run tests",
|
|
|
|
"exec": "grunt test"
|
|
|
|
},
|
2014-02-19 04:17:58 +03:00
|
|
|
{
|
|
|
|
"desc": "Update the changelog with the new release",
|
|
|
|
"exec": "grunt chg-release:<%= type %>"
|
|
|
|
},
|
2014-02-15 03:52:48 +03:00
|
|
|
{
|
2014-04-12 23:47:39 +03:00
|
|
|
"desc": "Bump package versions",
|
|
|
|
"exec": "grunt version:<%= type %>"
|
2014-02-15 03:52:48 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Build the release",
|
2014-03-07 00:15:53 +03:00
|
|
|
"exec": "grunt"
|
2014-02-15 03:52:48 +03:00
|
|
|
},
|
|
|
|
{
|
2014-02-19 02:40:56 +03:00
|
|
|
"desc": "Add the (otherwise ignored) release files",
|
2014-02-15 03:52:48 +03:00
|
|
|
"exec": "git add dist/video-js --force"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Rebuild the docs",
|
|
|
|
"exec": "grunt vjsdocs"
|
|
|
|
},
|
2014-02-19 23:49:29 +03:00
|
|
|
{
|
|
|
|
"desc": "Update the cdn urls in the docs",
|
|
|
|
"exec": "grunt cdn-links"
|
|
|
|
},
|
2014-02-15 03:52:48 +03:00
|
|
|
{
|
|
|
|
"desc": "Tag the release",
|
|
|
|
"exec": "grunt tagrelease"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Push changes to the remote",
|
2014-02-19 01:39:20 +03:00
|
|
|
"exec": "git push origin stable"
|
2014-02-15 03:52:48 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Push tags to the remote",
|
|
|
|
"exec": "git push --tags"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Publish to npm",
|
|
|
|
"exec": "npm publish"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Checkout the development branch (master) and merge changes",
|
|
|
|
"exec": "git checkout master && git merge stable"
|
|
|
|
},
|
2014-02-19 02:40:56 +03:00
|
|
|
{
|
|
|
|
"desc": "Remove built dist files to re-ignore them",
|
|
|
|
"exec": "grunt clean:dist"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"desc": "Commit the removed dist files",
|
|
|
|
"exec": "git add -u && git commit -m 'Removed dist files'"
|
|
|
|
},
|
2014-02-15 03:52:48 +03:00
|
|
|
{
|
|
|
|
"desc": "Push development branch changes",
|
2014-02-19 01:39:20 +03:00
|
|
|
"exec": "git push origin master"
|
2014-02-15 03:52:48 +03:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
2013-05-21 02:02:31 +03:00
|
|
|
}
|