Skip to content

Commit

Permalink
Hack through Yarn bug causing node-sass error on TravisCI when any de…
Browse files Browse the repository at this point in the history
…ps update

If you `yarn add --force node-sass` after `yarn`,
there will be enough `node-sass` around for the build to run.

see yarnpkg/yarn#1981

Change all deps to squiggly versions in the package.json
and regenerate yarn with latest everything
  • Loading branch information
tjgrathwell committed Jan 5, 2017
1 parent 7570a34 commit 22d55c0
Show file tree
Hide file tree
Showing 3 changed files with 362 additions and 483 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ language: node_js
node_js:
- "6"
before_script:
- yarn add --force node-sass # https://github.com/yarnpkg/yarn/issues/1981
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
- gulp serve &
Expand Down
90 changes: 45 additions & 45 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"dependencies": {
"angular": "~1.6.0",
"angular-route": "~1.6.0",
"lodash": "4.17.2"
"lodash": "~4.17.2"
},
"scripts": {
"test": "gulp jasmine-phantom && protractor protractor.conf.js",
Expand All @@ -17,50 +17,50 @@
},
"devDependencies": {
"angular-mocks": "~1.6.0",
"babel-core": "6.21.0",
"babel-loader": "6.2.10",
"babel-preset-es2015": "6.18.0",
"browser-sync": "2.18.5",
"browser-sync-spa": "1.0.2",
"chalk": "1.1.3",
"concat-stream": "1.6.0",
"del": "2.2.2",
"eslint-plugin-angular": "1.6.1",
"gulp": "3.9.1",
"gulp-angular-filesort": "1.1.1",
"gulp-angular-templatecache": "2.0.0",
"gulp-autoprefixer": "3.1.1",
"gulp-csso": "2.0.0",
"gulp-eslint": "3.0.1",
"gulp-filter": "4.0.0",
"gulp-flatten": "0.3.1",
"gulp-html-replace": "1.6.2",
"gulp-inject": "4.2.0",
"gulp-jasmine-browser": "1.7.1",
"gulp-load-plugins": "1.4.0",
"gulp-minify-html": "1.0.6",
"gulp-ng-annotate": "2.0.0",
"gulp-protractor": "3.0.0",
"gulp-rename": "1.2.2",
"gulp-replace": "0.5.3",
"gulp-rev": "7.1.2",
"gulp-rev-replace": "0.4.3",
"gulp-sass": "3.0.0",
"gulp-size": "2.1.0",
"gulp-sourcemaps": "1.9.1",
"gulp-uglify": "2.0.0",
"gulp-useref": "3.1.2",
"gulp-util": "3.0.5",
"gulp-watch": "4.3.11",
"http-proxy-middleware": "0.17.3",
"merge2": "1.0.2",
"phantomjs-prebuilt": "2.1.14",
"protractor": "4.0.13",
"require-dir": "0.3.1",
"uglify-save-license": "0.4.1",
"webpack": "1.14.0",
"webpack-stream": "3.2.0",
"wrench": "1.5.9"
"babel-core": "~6.21.0",
"babel-loader": "~6.2.10",
"babel-preset-es2015": "~6.18.0",
"browser-sync": "~2.18.5",
"browser-sync-spa": "~1.0.2",
"chalk": "~1.1.3",
"concat-stream": "~1.6.0",
"del": "~2.2.2",
"eslint-plugin-angular": "~1.6.1",
"gulp": "~3.9.1",
"gulp-angular-filesort": "~1.1.1",
"gulp-angular-templatecache": "~2.0.0",
"gulp-autoprefixer": "~3.1.1",
"gulp-csso": "~2.0.0",
"gulp-eslint": "~3.0.1",
"gulp-filter": "~4.0.0",
"gulp-flatten": "~0.3.1",
"gulp-html-replace": "~1.6.2",
"gulp-inject": "~4.2.0",
"gulp-jasmine-browser": "~1.7.1",
"gulp-load-plugins": "~1.4.0",
"gulp-minify-html": "~1.0.6",
"gulp-ng-annotate": "~2.0.0",
"gulp-protractor": "~3.0.0",
"gulp-rename": "~1.2.2",
"gulp-replace": "~0.5.3",
"gulp-rev": "~7.1.2",
"gulp-rev-replace": "~0.4.3",
"gulp-sass": "~3.0.0",
"gulp-size": "~2.1.0",
"gulp-sourcemaps": "~1.9.1",
"gulp-uglify": "~2.0.0",
"gulp-useref": "~3.1.2",
"gulp-util": "~3.0.5",
"gulp-watch": "~4.3.11",
"http-proxy-middleware": "~0.17.3",
"merge2": "~1.0.2",
"phantomjs-prebuilt": "~2.1.14",
"protractor": "~4.0.13",
"require-dir": "~0.3.1",
"uglify-save-license": "~0.4.1",
"webpack": "~1.14.0",
"webpack-stream": "~3.2.0",
"wrench": "~1.5.9"
},
"engines": {
"node": ">=0.10.0"
Expand Down
Loading

0 comments on commit 22d55c0

Please sign in to comment.