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/* ...@@ -3,5 +3,7 @@ dist/*
3 /node_modules/ 3 /node_modules/
4 *~ 4 *~
5 *.iml 5 *.iml
6 *.ipr
7 *.iws
6 *.swp 8 *.swp
7 tmp/** 9 tmp/**
...\ No newline at end of file ...\ No newline at end of file
......
1 language: node_js 1 language: node_js
2 node_js: 2 node_js:
3 - '0.10' 3 - '0.10'
4 before_script: 4 install:
5 - npm install -g grunt-cli 5 - npm install -g grunt-cli && npm install
6 - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then curl https://gist.githubusercontent.com/santiycr/5139565/raw/sauce_connect_setup.sh | bash; fi 6 - if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then curl https://gist.githubusercontent.com/santiycr/5139565/raw/sauce_connect_setup.sh | bash; fi
7 notifications: 7 notifications:
8 hipchat: 8 hipchat:
......
...@@ -10,7 +10,8 @@ ...@@ -10,7 +10,8 @@
10 }, 10 },
11 "license": "Apache 2", 11 "license": "Apache 2",
12 "scripts": { 12 "scripts": {
13 "test": "grunt test" 13 "test": "grunt test",
14 "prepublish": "grunt"
14 }, 15 },
15 "keywords": [ 16 "keywords": [
16 "videojs", 17 "videojs",
......