upgrade canvas_quizzes npm deps so it is ready for node 6
closes: CNVS-30448 in order to get node 6 to build and run on jenkins, we have to upgrade grunt-contrib-jasmine to work around this bug: https://github.com/Medium/phantomjs/issues/430 and we have to upgrade gulp-sass so the node-sass version it asks for is node-sass@3.8.0 to get it to actually build on jenkins. as in, so there is a precompiled binary for it that is compiled against the v8 in node 6. (there are none for 0.9.3 against node 6, since node 6 didn't exist when 0.9.3 was released). This is necessary because the gcc on jenkins is too old to compile node-sass from source. test plan: * quzzes jenkins build should pass * click around in quiz stats and quiz log auditing to make sure things load Change-Id: Ic56fae34c52aab5d9b7971fe871d04fcc0738206 Reviewed-on: https://gerrit.instructure.com/85389 Tested-by: Jenkins Reviewed-by: Clay Diffrient <cdiffrient@instructure.com> QA-Review: Michael Hargiss <mhargiss@instructure.com> Product-Review: Ryan Shaw <ryan@instructure.com>
This commit is contained in:
parent
7621b5a497
commit
b06b6af1db
File diff suppressed because it is too large
Load Diff
|
@ -44,28 +44,27 @@
|
|||
},
|
||||
|
||||
"dependencies": {
|
||||
"fs-extra": "0.12.0",
|
||||
"grunt-connect-proxy": "0.1.11",
|
||||
"fs-extra": "0.30.0",
|
||||
"grunt-connect-proxy": "0.2.0",
|
||||
"grunt-connect-rewrite": "0.2.1",
|
||||
"grunt-contrib-connect": "0.8.0",
|
||||
"grunt-contrib-jasmine": "0.8.0",
|
||||
"grunt-contrib-jshint": "0.10.0",
|
||||
"grunt-contrib-watch": "0.6.1",
|
||||
"grunt-contrib-connect": "1.0.2",
|
||||
"grunt-contrib-jasmine": "1.0.3",
|
||||
"grunt-contrib-jshint": "1.0.0",
|
||||
"grunt-contrib-watch": "1.0.0",
|
||||
"grunt-jsduck": "1.0.1",
|
||||
"grunt-sass": "0.14.1",
|
||||
"grunt-sass": "1.2.0",
|
||||
"grunt-template-jasmine-requirejs": "git://github.com/amireh/grunt-template-jasmine-requirejs.git#0.2.0",
|
||||
"jasmine_react": "1.2.4",
|
||||
"jasmine_rsvp": "1.0.0",
|
||||
"jasmine_xhr": "1.0.2",
|
||||
"jquery": "2.1.1",
|
||||
"jshint-stylish-ex": "0.2.0",
|
||||
"node-sass": "0.9.3",
|
||||
"canvas_react_i18n": "1.1.1",
|
||||
"glob": "4.0.5",
|
||||
"glob": "7.0.5",
|
||||
"grunt": "0.4.5",
|
||||
"grunt-cli": "0.1.13",
|
||||
"grunt-cli": "1.2.0",
|
||||
"lodash": "2.4.1",
|
||||
"react-tools": "0.11.2",
|
||||
"shelljs": "0.1.2"
|
||||
"shelljs": "0.7.0"
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue