Skip to content

Commit

Permalink
Details that actually were missing in the merge commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
martinheidegger committed Jun 27, 2018
1 parent 0f112a8 commit 3c6c4f0
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 16 deletions.
26 changes: 11 additions & 15 deletions demo/demo.js

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
"build-lib": "rm -rf lib/*; babel src --out-dir lib",
"build-demo": "NODE_ENV=production ./node_modules/.bin/webpack --progress --color",
"build": "npm run build-lib && npm run build-demo",
"test": "jest",
"test": "npm run lint && npm run test:unit",
"test:unit": "jest",
"lint": "eslint src demo/demo.jsx",
"lint:clean": "prettier src/**/*.js demo/demo.jsx --write; eslint --fix src/**/*.js demo/demo.jsx"
},
Expand Down
1 change: 1 addition & 0 deletions src/RIEStatefulBase.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React from "react";
import ReactDOM from "react-dom";
import PropTypes from "prop-types";
import RIEBase from "./RIEBase";

const debug = require("debug")("RIEStatefulBase");
Expand Down

0 comments on commit 3c6c4f0

Please sign in to comment.