Skip to content

Commit

Permalink
Fixed breaking changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Antal committed Sep 27, 2020
1 parent 66f36f1 commit 7ca3436
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "simple-redux",
"version": "1.0.0",
"description": "Demo Redux",
"main": "/src/app.ts",
"private": true,
"repository": "https://github.com/danantal/simple-redux.git",
"license": "MIT",
"scripts": {
Expand Down
2 changes: 0 additions & 2 deletions src/store.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,6 @@ export const reset = () => ({ type: "RESET" });

export const store = createStore(reducer, composeWithDevTools(applyMiddleware(thunk)));


//HELPERS
function makeComputation(value, currentValue): Promise<number> {
return new Promise((resolve, reject) => {
setTimeout(() => resolve(value + currentValue), 2000)
Expand Down
2 changes: 1 addition & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const path = require("path");
const HtmlWebpackPlugin = require("html-webpack-plugin");
const CleanWebpackPlugin = require("clean-webpack-plugin");
const {CleanWebpackPlugin} = require("clean-webpack-plugin");

module.exports = {
entry: "./src/index.tsx",
Expand Down

0 comments on commit 7ca3436

Please sign in to comment.