Skip to content

Commit 1be5e0b

Browse files
committed
chore(typescript) update to typescript latest
closes #719 closes #723
1 parent 11f485b commit 1be5e0b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dist/main/atom/views/rView.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ var MyComponent = (function (_super) {
2323
});
2424
};
2525
MyComponent.prototype.render = function () {
26-
return React.createElement("div", {"onClick": this.stop}, "This is a test: ", this.state.count);
26+
return React.createElement("div", {onClick: this.stop}, "This is a test: ", this.state.count);
2727
};
2828
MyComponent.defaultProps = { count: 0 };
2929
return MyComponent;

dist/main/atom/views/semanticView.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ var MyComponent = (function (_super) {
7575
};
7676
MyComponent.prototype.renderNode = function (node, indent) {
7777
var _this = this;
78-
return React.createElement("div", {"className": "node", "onClick": function (event) { _this.gotoNode(node); event.stopPropagation(); }, "data-start": node.start.line, "data-end": node.end.line}, rts.indent(indent), React.createElement("span", {"className": this.getIconForKind(node.kind) + ' ' + this.isSelected(node)}, node.text), node.subNodes.map(function (sn) { return _this.renderNode(sn, indent + 1); }));
78+
return React.createElement("div", {className: "node", onClick: function (event) { _this.gotoNode(node); event.stopPropagation(); }, "data-start": node.start.line, "data-end": node.end.line}, rts.indent(indent), React.createElement("span", {className: this.getIconForKind(node.kind) + ' ' + this.isSelected(node)}, node.text), node.subNodes.map(function (sn) { return _this.renderNode(sn, indent + 1); }));
7979
};
8080
MyComponent.prototype.getIconForKind = function (kind) {
8181
return "icon icon-" + kind;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"immutable": "^3.7.3",
5555
"json2dts": "0.0.1",
5656
"mkdirp": "^0.5.0",
57-
"ntypescript": "1.201511100604.1",
57+
"ntypescript": "1.201511140604.1",
5858
"react": "^0.13.3",
5959
"season": "^5.1.4",
6060
"tsconfig": "^2.1.0",

0 commit comments

Comments
 (0)