Merge pull request #333 from forbesjo/fix-travis
Don't prepublish in Travis
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -11,7 +11,7 @@ | ... | @@ -11,7 +11,7 @@ |
11 | "license": "Apache-2.0", | 11 | "license": "Apache-2.0", |
12 | "scripts": { | 12 | "scripts": { |
13 | "test": "grunt test", | 13 | "test": "grunt test", |
14 | "prepublish": "grunt" | 14 | "prepublish": "if [ -z \"$TRAVIS\" ]; then grunt; fi" |
15 | }, | 15 | }, |
16 | "keywords": [ | 16 | "keywords": [ |
17 | "videojs", | 17 | "videojs", | ... | ... |
-
Please register or sign in to post a comment