Skip to content

Commit

Permalink
Fix missing peer
Browse files Browse the repository at this point in the history
refers to #294
  • Loading branch information
TheGreatRefrigerator committed Sep 3, 2019
1 parent 468d1fa commit 6facfb3
Show file tree
Hide file tree
Showing 4 changed files with 214 additions and 275 deletions.
9 changes: 7 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,14 @@ branches:
- development
- /^release-v.*$/ # this should check release-v* branches
script:
- npm install grunt-cli -g
- npm install -g grunt-cli
- rm -rf node_modules
- rehash -r
- npm install
- node_modules/bower/bin/bower install
- cd bower_components/angularjs-slider && npm install && cd ../..
- cp Gruntfile.default.js Gruntfile.js
- grunt ci
- export PATH=$PATH:./node_modules/.bin/grunt
- node_modules/.bin/grunt ci
git:
depth: false
16 changes: 11 additions & 5 deletions Gruntfile.default.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,18 @@ module.exports = function(grunt) {
},
// compiles slider less to css
run_grunt: {
sliderMakeCss: {
src: 'bower_components/angularjs-slider/Gruntfile.js',
options: {
task: 'css'
options:{
debug: true,
verbose: true
},
sliderMakeCss: {
src: 'bower_components/angularjs-slider/Gruntfile.js',
options: {
log: true,
gruntCli: './node_modules/.bin/grunt',
task: 'css'
}
}
}
},
watch: {
options: {
Expand Down
Loading

0 comments on commit 6facfb3

Please sign in to comment.