Skip to content

Commit

Permalink
fix(): Add bundler install as npm install postinstall cmd
Browse files Browse the repository at this point in the history
  • Loading branch information
oswaldoacauan committed Dec 10, 2013
1 parent 894ddfe commit e7e3c2d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
11 changes: 5 additions & 6 deletions .travis.yml
@@ -1,10 +1,9 @@
language: node_js
node_js:
- '0.10'
- "0.10"
rvm:
- '2.0.0'
- "2.0.0"
before_install:
- 'npm install -g bower'
- 'gem install bundler'
before_script:
- 'npm install -g grunt-cli'
- "npm install -g bower"
- "npm install -g grunt-cli"
- "gem install bundler"
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -51,6 +51,6 @@
},
"scripts": {
"test": "grunt --verbose",
"postinstall": "bower install"
"postinstall": "bundle install && bower install"
}
}

0 comments on commit e7e3c2d

Please sign in to comment.