Skip to content

Commit

Permalink
Dependency upgrades (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
danreeves committed Apr 21, 2018
1 parent fa0c358 commit c3925ff
Show file tree
Hide file tree
Showing 11 changed files with 4,180 additions and 2,081 deletions.
6 changes: 3 additions & 3 deletions example/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
<body>
<div id="app"></div>
<script src="./index.js"></script>
<a id='commonjs' href="../tests/examples/commonjs/index.html" />
<a id='esm' href="../tests/examples/esm/index.html" />
<a id='typescript' href="../tests/examples/typescript/index.html" />
<a id='commonjs' href="./tests/commonjs/index.html" />
<a id='esm' href="./tests/esm/index.html" />
<a id='typescript' href="./tests/typescript/index.html" />
</body>
</html>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,16 @@ import * as React from 'react';
import * as ReactDOM from 'react-dom';
import ReactTether from '../../../lib/react-tether';

function App () {
return <div>
function App() {
return (
<div>
<h1>TypeScript example</h1>
<ReactTether attachment="top left">
<span>Child 1</span>
<span>Child 2</span>
</ReactTether>
</div>
);
}

ReactDOM.render(<App/>, document.querySelector('#app'));
ReactDOM.render(<App />, document.querySelector('#app'));
6,225 changes: 4,161 additions & 2,064 deletions package-lock.json

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,13 +54,13 @@
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-eslint": "8.2.3",
"babel-loader": "6.4.1",
"babel-loader": "^7.1.4",
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"chroma-js": "1.3.6",
"coveralls": "3.0.0",
"danger": "3.3.2",
"danger": "^3.5.1",
"danger-plugin-istanbul-coverage": "1.5.0",
"enzyme": "3.3.0",
"enzyme-adapter-react-helper": "1.2.3",
Expand All @@ -71,19 +71,19 @@
"husky": "0.14.3",
"istanbul-merge": "1.1.1",
"jest": "22.4.3",
"lint-staged": "7.0.0",
"nyc": "11.7.0",
"parcel-bundler": "1.6.2",
"prettier": "1.11.1",
"lint-staged": "^7.0.4",
"nyc": "^11.7.1",
"parcel-bundler": "^1.7.1",
"prettier": "^1.12.1",
"pretty-quick": "1.4.1",
"react": "16.2.0",
"react-dom": "16.2.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-draggable": "3.0.5",
"strip-indent": "2.0.0",
"styled-components": "3.2.3",
"testcafe": "0.19.1",
"styled-components": "^3.2.6",
"testcafe": "^0.19.2",
"testcafe-browser-provider-saucelabs": "1.3.0",
"typescript": "2.7.2",
"typescript": "^2.8.3",
"webpack": "1.15.0",
"xo": "0.20.3"
},
Expand Down

0 comments on commit c3925ff

Please sign in to comment.