Skip to content

Commit

Permalink
fix: pin webvr-polyfill to 0.9.23 (#21)
Browse files Browse the repository at this point in the history
* work around non-strict line of code
  • Loading branch information
brandonocasey authored Aug 17, 2017
1 parent 1dee5f7 commit a644d1e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
"three": "^0.83.0",
"video.js": "^6.2.0",
"webvr-boilerplate": "^0.5.0",
"webvr-polyfill": "^0.9.23"
"webvr-polyfill": "0.9.23"
},
"devDependencies": {
"babel-plugin-external-helpers": "^6.22.0",
Expand All @@ -112,8 +112,8 @@
"karma-qunit": "^1.2.1",
"karma-safari-launcher": "^1.0.0",
"mkdirp": "^0.5.1",
"node-static": "^0.7.9",
"node-sass": "^4.5.3",
"node-static": "^0.7.9",
"npm-run-all": "^4.0.2",
"qunitjs": "^1.21.0",
"rimraf": "^2.6.1",
Expand All @@ -123,6 +123,7 @@
"rollup-plugin-json": "^2.1.1",
"rollup-plugin-multi-entry": "^2.0.1",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-watch": "^3.2.2",
"semver": "^5.3.0",
"sinon": "^2.2.0",
Expand Down
2 changes: 2 additions & 0 deletions scripts/test.rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import commonjs from 'rollup-plugin-commonjs';
import json from 'rollup-plugin-json';
import multiEntry from 'rollup-plugin-multi-entry';
import resolve from 'rollup-plugin-node-resolve';
import replace from 'rollup-plugin-replace';

export default {
moduleName: 'videojsVrTests',
Expand Down Expand Up @@ -36,6 +37,7 @@ export default {
jsnext: true
}),
json(),
replace({'mat4_invert =': 'var mat4_invert ='}),
commonjs({
sourceMap: false
}),
Expand Down
2 changes: 2 additions & 0 deletions scripts/umd.rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import babel from 'rollup-plugin-babel';
import commonjs from 'rollup-plugin-commonjs';
import json from 'rollup-plugin-json';
import resolve from 'rollup-plugin-node-resolve';
import replace from 'rollup-plugin-replace';

export default {
moduleName: 'videojsVr',
Expand All @@ -25,6 +26,7 @@ export default {
jsnext: true
}),
json(),
replace({'mat4_invert =': 'var mat4_invert ='}),
commonjs({
sourceMap: false
}),
Expand Down

0 comments on commit a644d1e

Please sign in to comment.