Skip to content

Commit

Permalink
Updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Sampo Kivistö committed Jul 24, 2019
1 parent 9b5a06f commit c4662f9
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 20 deletions.
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,26 +17,26 @@
"author": "Dominic Gannaway",
"license": "MIT",
"dependencies": {
"inferno": "^7.1.9"
"inferno": "^7.2.0"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "7.3.4",
"@babel/preset-env": "7.3.4",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/preset-env": "7.5.5",
"@babel/preset-typescript": "^7.3.3",
"babel-loader": "^8.0.5",
"babel-loader": "^8.0.6",
"babel-plugin-inferno": "^6",
"clean-webpack-plugin": "^1.0.1",
"css-loader": "^2.1.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.1.0",
"html-webpack-plugin": "^3.2.0",
"node-sass": "^4.11.0",
"node-sass": "^4.12.0",
"sass-loader": "^7.1.0",
"source-map-loader": "^0.2.4",
"style-loader": "^0.23.1",
"tslint": "^5.13.1",
"typescript": "^3.3.3333",
"webpack": "4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "3.2.1"
"tslint": "^5.18.0",
"typescript": "^3.5.3",
"webpack": "4.37.0",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "3.7.2"
}
}
4 changes: 3 additions & 1 deletion src/components/Incrementer.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
.my-button {
background: teal;
background: #750077;
color: white;
display: block;
padding: 10px;
}
1 change: 1 addition & 0 deletions src/index.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { Component, render, version } from 'inferno';
import { Incrementer } from './components/Incrementer';
import './main.css';

const container = document.getElementById('app');

Expand Down
10 changes: 4 additions & 6 deletions webpack.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const CleanWebpackPlugin = require('clean-webpack-plugin');
const CleanWebpackPlugin = require('clean-webpack-plugin').CleanWebpackPlugin;
const HtmlWebpackPlugin = require('html-webpack-plugin');

module.exports = {
Expand Down Expand Up @@ -49,10 +49,8 @@ module.exports = {
inject: "body"
}
),
new CleanWebpackPlugin(
["dist"], {
verbose: true
}
)
new CleanWebpackPlugin({
verbose: true
})
]
};

0 comments on commit c4662f9

Please sign in to comment.