Skip to content

Commit

Permalink
[Service Bus] Update version number in constants file (#2164)
Browse files Browse the repository at this point in the history
  • Loading branch information
ramya-rao-a authored Apr 15, 2019
1 parent 3402edc commit 651b1fa
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
6 changes: 4 additions & 2 deletions sdk/servicebus/service-bus/src/util/constants.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

import { name, version } from "../../package.json";

export const packageJsonInfo = {
name: "@azure/service-bus",
version: "1.0.0-preview.1"
name: name,
version: version
};

export const messageDispositionTimeout = 20000;
Expand Down
3 changes: 2 additions & 1 deletion sdk/servicebus/service-bus/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@

/* Other options */
"newLine": "LF" /* Use the specified end of line sequence to be used when emitting files: "crlf" (windows) or "lf" (unix).”*/,
"allowJs": false /* Don't allow JavaScript files to be compiled.*/
"allowJs": false /* Don't allow JavaScript files to be compiled.*/,
"resolveJsonModule": true
},
"compileOnSave": true,
"exclude": ["node_modules", "typings/**", "./samples/**/*.ts"],
Expand Down

0 comments on commit 651b1fa

Please sign in to comment.