Skip to content

Commit 0e7a911

Browse files
committed
Pikc up latest TS@next
1 parent a705f90 commit 0e7a911

5 files changed

Lines changed: 15 additions & 17 deletions

File tree

build/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
"minimist": "^1.2.3",
4444
"request": "^2.85.0",
4545
"terser": "4.3.8",
46-
"typescript": "^3.9.0-dev.20200327",
46+
"typescript": "^3.9.0-dev.20200413",
4747
"vsce": "1.48.0",
4848
"vscode-telemetry-extractor": "^1.5.4",
4949
"xml2js": "^0.4.17"

build/yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2458,10 +2458,10 @@ typescript@^3.0.1:
24582458
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.5.3.tgz#c830f657f93f1ea846819e929092f5fe5983e977"
24592459
integrity sha512-ACzBtm/PhXBDId6a6sDJfroT2pOWt/oOnk4/dElG5G33ZL776N3Y6/6bKZJBFpd+b05F3Ct9qDjMeJmRWtE2/g==
24602460

2461-
typescript@^3.9.0-dev.20200327:
2462-
version "3.9.0-dev.20200327"
2463-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.0-dev.20200327.tgz#52179aae816587f772a0526e91143760f2bee42f"
2464-
integrity sha512-/TWD/zPvhAcN2Toqx2NBQ+oDVGVj4iqupjWcUAwL45TfcODeHpzszneABR1b/EjHbtUObtLH40vy5Z6rdVvKzg==
2461+
typescript@^3.9.0-dev.20200413:
2462+
version "3.9.0-dev.20200413"
2463+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.0-dev.20200413.tgz#dd38331435f5c30867f19c94fe7cfc567ec13e20"
2464+
integrity sha512-wpPljcRc3uLTVpQ8mtKTkS42ipVnW1E7lU5iII+JSKaUDH1ymeo3duvMz8o2sCRUDoZR0SE0SLcinaZ1q4gD7A==
24652465

24662466
typical@^4.0.0:
24672467
version "4.0.0"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@
151151
"source-map": "^0.4.4",
152152
"style-loader": "^1.0.0",
153153
"ts-loader": "^4.4.2",
154-
"typescript": "^3.9.0-dev.20200327",
154+
"typescript": "^3.9.0-dev.20200413",
155155
"typescript-formatter": "7.1.0",
156156
"underscore": "^1.8.2",
157157
"vinyl": "^2.0.0",

src/vs/workbench/contrib/notebook/browser/viewModel/codeCellViewModel.ts

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -67,13 +67,11 @@ export class CodeCellViewModel extends BaseCellViewModel implements ICellViewMod
6767
@ITextModelService private readonly _modelService: ITextModelService,
6868
) {
6969
super(viewType, notebookHandle, model, UUID.generateUuid());
70-
if (this.model.onDidChangeOutputs) {
71-
this._register(this.model.onDidChangeOutputs((splices) => {
72-
this._outputCollection = new Array(this.model.outputs.length);
73-
this._outputsTop = null;
74-
this._onDidChangeOutputs.fire(splices);
75-
}));
76-
}
70+
this._register(this.model.onDidChangeOutputs((splices) => {
71+
this._outputCollection = new Array(this.model.outputs.length);
72+
this._outputsTop = null;
73+
this._onDidChangeOutputs.fire(splices);
74+
}));
7775

7876
this._register(this.model.onDidChangeMetadata(() => {
7977
this._onDidChangeMetadata.fire();

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9251,10 +9251,10 @@ typescript@^2.6.2:
92519251
resolved "https://registry.yarnpkg.com/typescript/-/typescript-2.6.2.tgz#3c5b6fd7f6de0914269027f03c0946758f7673a4"
92529252
integrity sha1-PFtv1/beCRQmkCfwPAlGdY92c6Q=
92539253

9254-
typescript@^3.9.0-dev.20200327:
9255-
version "3.9.0-dev.20200327"
9256-
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.0-dev.20200327.tgz#52179aae816587f772a0526e91143760f2bee42f"
9257-
integrity sha512-/TWD/zPvhAcN2Toqx2NBQ+oDVGVj4iqupjWcUAwL45TfcODeHpzszneABR1b/EjHbtUObtLH40vy5Z6rdVvKzg==
9254+
typescript@^3.9.0-dev.20200413:
9255+
version "3.9.0-dev.20200413"
9256+
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.9.0-dev.20200413.tgz#dd38331435f5c30867f19c94fe7cfc567ec13e20"
9257+
integrity sha512-wpPljcRc3uLTVpQ8mtKTkS42ipVnW1E7lU5iII+JSKaUDH1ymeo3duvMz8o2sCRUDoZR0SE0SLcinaZ1q4gD7A==
92589258

92599259
uc.micro@^1.0.1, uc.micro@^1.0.3:
92609260
version "1.0.3"

0 commit comments

Comments
 (0)