Skip to content
This repository has been archived by the owner on Jan 27, 2023. It is now read-only.

Commit

Permalink
Updating to M108 deployment.
Browse files Browse the repository at this point in the history
  • Loading branch information
serkan-inci committed Nov 14, 2016
1 parent f4a07b2 commit 7d753e2
Show file tree
Hide file tree
Showing 7 changed files with 3,960 additions and 1,540 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ Dependency graph for the types:
Although TypeScript declare files do not exist at [DefinitelyTyped](https://github.com/DefinitelyTyped/DefinitelyTyped) repo, they can still be used through [tsd](https://www.npmjs.com/package/tsd).

1. First, make sure that the dependencies are loaded using below command:
* `tsd install jquery knockout q require --save`
* `tsd install jquery knockout q react require --save`

2. Next, run below command to get vss-web-extension-sdk types added to tsd.d.ts:
* `tsd link`
Expand Down
2 changes: 1 addition & 1 deletion lib/VSS.SDK.js
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,7 @@ var VSS;
(function (VSS) {
// W A R N I N G: if VssSDKVersion changes, the VSS WEB SDK demand resolver needs to be updated with the new version
VSS.VssSDKVersion = 2.0;
VSS.VssSDKRestVersion = "2.3";
VSS.VssSDKRestVersion = "3.0";
var bodyElement;
var webContext;
var hostPageContext;
Expand Down
2 changes: 1 addition & 1 deletion lib/VSS.SDK.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vss-web-extension-sdk",
"version": "1.106.0",
"version": "1.108.0",
"description": "Visual Studio Services Client SDK. JavaScript library for Visual Studio Online extensions.",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
Expand Down
2 changes: 1 addition & 1 deletion typings/rmo.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Type definitions for Microsoft Visual Studio Services v106.20161010.0630
// Type definitions for Microsoft Visual Studio Services v108.20161114.1020
// Project: https://www.visualstudio.com/integrate/extensions/overview
// Definitions by: Microsoft <[email protected]>

Expand Down
3,334 changes: 2,275 additions & 1,059 deletions typings/tfs.d.ts

Large diffs are not rendered by default.

Loading

2 comments on commit 7d753e2

@igorguga
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hello Serkan, I have an extension using the vsts extension project templates for visual studio that got a lot of build errors after this update. All the erros are in vss.d.ts file:

vss.d.ts(21866,29): error TS1005: Build: '=' expected.
vss.d.ts(21874,21): error TS1005: Build: '=' expected.
vss.d.ts(21874,30): error TS1005: Build: ';' expected.
vss.d.ts(21875,21): error TS1005: Build: '=' expected.
vss.d.ts(21875,41): error TS1005: Build: ';' expected.
vss.d.ts(21876,29): error TS1005: Build: '=' expected.
vss.d.ts(29398,21): error TS1005: Build: '=' expected.
vss.d.ts(29398,45): error TS1005: Build: ';' expected.

Any idea of what might be causing this errors?

Thanks for the attention.

@FlexiGit
Copy link

@FlexiGit FlexiGit commented on 7d753e2 Dec 1, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I get the exact same errors after updating to 1.108 release.

EDIT: Just had a look at the mentioned lines. You use readonly fields there without assigning a value. This is clearly an error.

Please sign in to comment.