d39bfffa by David LaPalomento

Merge pull request #224 from quarkus/feature/prepublish_build

added prepublish hook to have a concatenated version after install
2 parents 2924ec89 0f1d8059
......@@ -3,5 +3,7 @@ dist/*
/node_modules/
*~
*.iml
*.ipr
*.iws
*.swp
tmp/**
\ No newline at end of file
......
language: node_js
node_js:
- '0.10'
before_script:
- npm install -g grunt-cli
install:
- npm install -g grunt-cli && npm install
- if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then curl https://gist.githubusercontent.com/santiycr/5139565/raw/sauce_connect_setup.sh | bash; fi
notifications:
hipchat:
......
......@@ -10,7 +10,8 @@
},
"license": "Apache 2",
"scripts": {
"test": "grunt test"
"test": "grunt test",
"prepublish": "grunt"
},
"keywords": [
"videojs",
......