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
2840eb36
authored
2015-09-10 14:47:42 -0400
by
jrivera
Committed by
David LaPalomento
2015-09-24 14:19:09 -0400
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Create a build task that simply builds an output
1 parent
0f25607b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
Gruntfile.js
Gruntfile.js
View file @
2840eb3
...
...
@@ -336,13 +336,16 @@ module.exports = function(grunt) {
// Launch a Development Environment
grunt
.
registerTask
(
'dev'
,
'Launching Dev Environment'
,
'concurrent:dev'
);
// Default task.
grunt
.
registerTask
(
'default'
,
grunt
.
registerTask
(
'build'
,
[
'clean'
,
'test'
,
'concat'
,
'uglify'
]);
// Default task.
grunt
.
registerTask
(
'default'
,
[
'test'
,
'build'
]);
// The test task will run `karma:saucelabs` when running in travis,
// otherwise, it'll default to running karma in chrome.
// You can specify which browsers to build with by using grunt-style arguments
...
...
Please
register
or
sign in
to post a comment