Skip to content
This repository has been archived by the owner on May 21, 2019. It is now read-only.

Commit

Permalink
Update deps (#795)
Browse files Browse the repository at this point in the history
* Update deps

* Fix type errors

* Revert build breaking updates
  • Loading branch information
drew-gross authored Oct 3, 2016
1 parent 3813b20 commit 9407505
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 15 deletions.
26 changes: 13 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,40 +23,40 @@
"console"
],
"dependencies": {
"@types/electron": "1.3.20",
"@types/lodash": "4.14.34",
"@types/node": "6.0.38",
"@types/pty.js": "0.2.30",
"@types/react": "0.14.33",
"@types/electron": "1.3.22",
"@types/lodash": "4.14.36",
"@types/node": "6.0.41",
"@types/pty.js": "0.2.31",
"@types/react": "0.14.37",
"child-process-promise": "2.1.3",
"dirStat": "0.0.2",
"font-awesome": "4.6.3",
"fs-extra": "0.30.0",
"fuzzaldrin": "2.1.0",
"immutable": "3.8.1",
"lodash": "4.16.0",
"lodash": "4.16.2",
"mode-to-permissions": "0.0.2",
"node-ansiparser": "2.2.0",
"pty.js": "shockone/pty.js",
"react": "15.3.1",
"react-dom": "15.3.1",
"react": "15.3.2",
"react-dom": "15.3.2",
"tinycolor2": "1.4.1",
"uuid": "2.0.3"
},
"devDependencies": {
"@types/chai": "3.4.32",
"@types/mocha": "2.2.31",
"@types/chai": "3.4.34",
"@types/mocha": "2.2.32",
"chai": "3.5.0",
"devtron": "1.3.0",
"electron-builder": "6.3.4",
"electron-prebuilt": "1.2.8",
"electron-rebuild": "1.2.0",
"mocha": "3.0.2",
"mocha": "3.1.0",
"npm-check-updates": "2.8.0",
"spectron": "3.3.0",
"spectron": "3.4.0",
"ts-node": "1.3.0",
"tslint": "3.15.1",
"typescript": "2.0.0"
"typescript": "2.0.3"
},
"scripts": {
"preinstall": "npm prune",
Expand Down
1 change: 1 addition & 0 deletions src/shell/Parser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,7 @@ export class CompleteCommand extends BranchNode {
return current;
}
}
return undefined as any as Command;
}
}

Expand Down
2 changes: 1 addition & 1 deletion src/views/4_PromptComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ export class PromptComponent extends React.Component<Props, State> {
];

return this.props.isFocused &&
this.state.suggestions.length &&
this.state.suggestions.length > 0 &&
this.commandNode && !this.isEmpty() &&
this.props.status === e.Status.NotStarted && !ignoredKeyCodes.includes(this.state.previousKeyCode);
}
Expand Down
2 changes: 1 addition & 1 deletion src/views/css/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ export const titleBar = {
};

export const tabs = {
justifyContent: "center",
justifyContent: "center" as "center",
display: "flex",
WebkitMarginBefore: 0,
WebkitMarginAfter: 0,
Expand Down

0 comments on commit 9407505

Please sign in to comment.