Skip to content

Commit

Permalink
Merge pull request #84 from adam-golab/master
Browse files Browse the repository at this point in the history
Updated dependency
  • Loading branch information
mathieudutour authored Oct 3, 2017
2 parents 03e4e50 + 6df8876 commit c2d9b6c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 12 deletions.
3 changes: 2 additions & 1 deletion example/src/app.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import React from 'react'
import ReactDOM from 'react-dom'
import ProgressButton, {STATE} from '../../lib/index'
import createReactClass from 'create-react-class'

const App = React.createClass({
const App = createReactClass({
getInitialState () {
return {
button1State: STATE.NOTHING,
Expand Down
3 changes: 2 additions & 1 deletion example/src/app.promise.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
import React from 'react'
import ReactDOM from 'react-dom'
import ProgressButton from '../../lib/index'
import createReactClass from 'create-react-class'

const App = React.createClass({
const App = createReactClass({
render () {
return (
<div>
Expand Down
20 changes: 10 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,19 @@
"react-progress-button.css"
],
"dependencies": {
"prop-types": "^15.5.8",
"create-react-class": "^15.5.2"
"prop-types": "^15.6.0",
"create-react-class": "^15.6.2"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.7.6",
"babel-preset-es2015": "^6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"react": "^15.1.0",
"react-dom": "^15.1.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"standard": "^8.6.0",
"webpack": "^1.12.15"
"webpack": "^3.6.0"
},
"scripts": {
"prepublish": "make clean build",
Expand Down

0 comments on commit c2d9b6c

Please sign in to comment.