Skip to content

Commit

Permalink
deps: update
Browse files Browse the repository at this point in the history
  • Loading branch information
meowtec committed Jun 23, 2017
1 parent eae34eb commit a3c430f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
1 change: 0 additions & 1 deletion modules/common/file-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import * as crypto from 'crypto'
import * as fileType from 'file-type'
import * as readChunk from 'read-chunk'
import * as rawBody from 'raw-body'
import { V4Options } from 'uuid'
import { IImageFile, IOptimizeOptions, SupportedExt } from '../common/constants'

export const tmpdir = path.resolve(os.tmpdir(), 'imageOptimizer')
Expand Down
2 changes: 1 addition & 1 deletion modules/renderer/components/TaskList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export interface ITaskListDispatchProps {
onOptionsChange(task: ITaskItem, options: IOptimizeOptions): void
}

export default class TaskList extends PureComponent<ITaskListProps & ITaskListDispatchProps, void> {
export default class TaskList extends PureComponent<ITaskListProps & ITaskListDispatchProps, {}> {
render() {
if (this.props.tasks.length) {
return (
Expand Down
2 changes: 1 addition & 1 deletion modules/renderer/components/TaskView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ interface ITaskViewProps {
onOptionsChange(task: ITaskItem, options: IOptimizeOptions): void
}

class TaskView extends PureComponent<ITaskViewProps, void> {
class TaskView extends PureComponent<ITaskViewProps, {}> {
handleClear = (e: React.MouseEvent<HTMLAnchorElement>) => {
e.preventDefault()
e.stopPropagation()
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"@types/electron-devtools-installer": "^2.0.2",
"@types/file-type": "0.0.2",
"@types/fs-extra": "^3.0.0",
"@types/jest": "^19.2.3",
"@types/jest": "^20.0.2",
"@types/lodash": "^4.14.64",
"@types/pify": "0.0.28",
"@types/raw-body": "^2.1.4",
Expand All @@ -31,15 +31,15 @@
"@types/react-redux": "^4.4.40",
"@types/react-transition-group": "^1.1.0",
"@types/redux-actions": "^1.2.4",
"@types/uuid": "^2.0.29",
"@types/uuid": "^3.0.0",
"@types/webpack-dev-server": "^2.4.0",
"babili-webpack-plugin": "^0.1.1",
"classnames": "^2.2.5",
"copy-webpack-plugin": "^4.0.1",
"cross-env": "^5.0.1",
"css-loader": "^0.28.1",
"electron": "^1.6.10",
"electron-builder": "^18.2.2",
"electron-builder": "^19.7.1",
"electron-devtools-installer": "^2.2.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
Expand Down Expand Up @@ -69,7 +69,7 @@
"dependencies": {
"child-process-promise": "^2.2.1",
"electron-log": "^2.2.6",
"file-type": "^4.2.0",
"file-type": "^5.2.0",
"fs-extra": "^3.0.0",
"lodash": "^4.17.4",
"mozjpeg": "^4.1.1",
Expand Down

0 comments on commit a3c430f

Please sign in to comment.