File tree Expand file tree Collapse file tree 5 files changed +13
-6
lines changed
src/vs/workbench/contrib/welcomeGettingStarted/browser Expand file tree Collapse file tree 5 files changed +13
-6
lines changed Original file line number Diff line number Diff line change 44 "license" : " MIT" ,
55 "description" : " Dependencies shared by all extensions" ,
66 "dependencies" : {
7- "typescript" : " 5.0.2 "
7+ "typescript" : " 5.0.4 "
88 },
99 "scripts" : {
1010 "postinstall" : " node ./postinstall.mjs"
Original file line number Diff line number Diff line change @@ -228,10 +228,10 @@ to-regex-range@^5.0.1:
228228 dependencies :
229229 is-number "^7.0.0"
230230
231- typescript@5.0.2 :
232- version "5.0.2 "
233- resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.0.2 .tgz#891e1a90c5189d8506af64b9ef929fca99ba1ee5 "
234- integrity sha512-wVORMBGO/FAs/++blGNeAVdbNKtIh1rbBL2EyQ1+J9lClJ93KiiKe8PmFIVdXhHcyv44SL9oglmfeSsndo0jRw ==
231+ typescript@5.0.4 :
232+ version "5.0.4 "
233+ resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.0.4 .tgz#b217fd20119bd61a94d4011274e0ab369058da3b "
234+ integrity sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw ==
235235
236236vscode-grammar-updater@^1.1.0 :
237237 version "1.1.0"
Original file line number Diff line number Diff line change 11{
22 "name" : " code-oss-dev" ,
3- "version" : " 1.77.2 " ,
3+ "version" : " 1.77.3 " ,
44 "distro" : " 9b27f67c15920833310305fce2d42cf2426f34ee" ,
55 "author" : {
66 "name" : " Microsoft Corporation"
Original file line number Diff line number Diff line change @@ -242,6 +242,7 @@ export class GettingStartedPage extends EditorPane {
242242 }
243243 } ) ) ;
244244
245+ this . _register ( this . gettingStartedService . onDidAddBuiltInWalkthrough ( rerender ) ) ;
245246 this . _register ( this . gettingStartedService . onDidAddWalkthrough ( rerender ) ) ;
246247 this . _register ( this . gettingStartedService . onDidRemoveWalkthrough ( rerender ) ) ;
247248
Original file line number Diff line number Diff line change @@ -97,6 +97,7 @@ export interface IWalkthroughsService {
9797 readonly onDidRemoveWalkthrough : Event < string > ;
9898 readonly onDidChangeWalkthrough : Event < IResolvedWalkthrough > ;
9999 readonly onDidProgressStep : Event < IResolvedWalkthroughStep > ;
100+ readonly onDidAddBuiltInWalkthrough : Event < void > ;
100101
101102 readonly installedExtensionsRegistered : Promise < void > ;
102103
@@ -134,6 +135,9 @@ export class WalkthroughsService extends Disposable implements IWalkthroughsServ
134135 private readonly _onDidProgressStep = new Emitter < IResolvedWalkthroughStep > ( ) ;
135136 readonly onDidProgressStep : Event < IResolvedWalkthroughStep > = this . _onDidProgressStep . event ;
136137
138+ private readonly _onDidAddBuiltInWalkthrough = new Emitter < void > ( ) ;
139+ readonly onDidAddBuiltInWalkthrough : Event < void > = this . _onDidAddBuiltInWalkthrough . event ;
140+
137141 private memento : Memento ;
138142 private stepProgress : Record < string , StepProgress | undefined > ;
139143
@@ -255,6 +259,8 @@ export class WalkthroughsService extends Disposable implements IWalkthroughsServ
255259 } )
256260 } ) ;
257261 } ) ;
262+
263+ this . _onDidAddBuiltInWalkthrough . fire ( ) ;
258264 }
259265
260266 private updateWalkthroughContent ( walkthrough : BuiltinGettingStartedCategory , experimentTreatment : WalkthroughTreatment ) : BuiltinGettingStartedCategory {
You can’t perform that action at this time.
0 commit comments