Also change velocity-vector commit & requires

Because it needs a versiob where the package name is actually updated and the requires need to use the right package name
This commit is contained in:
David Baker 2016-06-07 20:47:37 +01:00
parent 8679ce80c8
commit aca0e060a4
4 changed files with 5 additions and 5 deletions

View file

@ -37,7 +37,7 @@
"react-dom": "^15.0.1", "react-dom": "^15.0.1",
"react-gemini-scrollbar": "matrix-org/react-gemini-scrollbar#c3d942e", "react-gemini-scrollbar": "matrix-org/react-gemini-scrollbar#c3d942e",
"sanitize-html": "^1.11.1", "sanitize-html": "^1.11.1",
"velocity-vector": "vector-im/velocity#a70ebc7" "velocity-vector": "vector-im/velocity#059e3b2"
}, },
"//babelversion": [ "//babelversion": [
"brief experiments with babel6 seems to show that it generates source ", "brief experiments with babel6 seems to show that it generates source ",

View file

@ -1,6 +1,6 @@
var React = require('react'); var React = require('react');
var ReactDom = require('react-dom'); var ReactDom = require('react-dom');
var Velocity = require('velocity-animate'); var Velocity = require('velocity-vector');
/** /**
* The Velociraptor contains components and animates transitions with velocity. * The Velociraptor contains components and animates transitions with velocity.

View file

@ -1,4 +1,4 @@
var Velocity = require('velocity-animate'); var Velocity = require('velocity-vector');
// courtesy of https://github.com/julianshapiro/velocity/issues/283 // courtesy of https://github.com/julianshapiro/velocity/issues/283
// We only use easeOutBounce (easeInBounce is just sort of nonsensical) // We only use easeOutBounce (easeInBounce is just sort of nonsensical)

View file

@ -17,8 +17,8 @@ limitations under the License.
'use strict'; 'use strict';
var React = require('react'); var React = require('react');
var Velocity = require('velocity-animate'); var Velocity = require('velocity-vector');
require('velocity-animate/velocity.ui'); require('velocity-vector/velocity.ui');
var sdk = require('../../../index'); var sdk = require('../../../index');
var Email = require('../../../email'); var Email = require('../../../email');
var Modal = require("../../../Modal"); var Modal = require("../../../Modal");