Skip to content

Commit

Permalink
[Batch] Export all types (#18469)
Browse files Browse the repository at this point in the history
* [Batch] Export all types

* bump version
  • Loading branch information
deyaaeldeen authored Nov 1, 2021
1 parent 980fe28 commit 583150d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 9 deletions.
10 changes: 3 additions & 7 deletions sdk/batch/batch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@azure/batch",
"author": "Microsoft Corporation",
"description": "BatchServiceClient Library with typescript type definitions for node.js and browser.",
"version": "10.0.1",
"version": "10.0.2",
"dependencies": {
"@azure/ms-rest-azure-js": "^2.1.0",
"@azure/ms-rest-js": "^2.2.0",
Expand All @@ -20,12 +20,8 @@
"license": "MIT",
"main": "./dist/batch.js",
"module": "./esm/batchServiceClient.js",
"types": "./types/src/batchServiceClient.d.ts",
"types": "./types/src/index.d.ts",
"devDependencies": {
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-multi-entry": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@types/chai": "^4.2.21",
"@types/chai-as-promised": "^7.1.4",
"@types/mocha": "^9.0.0",
Expand Down Expand Up @@ -57,7 +53,7 @@
"nyc": "^15.1.0",
"puppeteer": "^10.1.0",
"rimraf": "^3.0.2",
"rollup": "^1.32.1",
"rollup": "^1.16.3",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"source-map-support": "^0.5.19",
Expand Down
2 changes: 1 addition & 1 deletion sdk/batch/batch/rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import nodeResolve from "@rollup/plugin-node-resolve";
import nodeResolve from "rollup-plugin-node-resolve";
import sourcemaps from "rollup-plugin-sourcemaps";

/**
Expand Down
2 changes: 1 addition & 1 deletion sdk/batch/batch/src/batchServiceClientContext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import * as msRest from "@azure/ms-rest-js";
import * as msRestAzure from "@azure/ms-rest-azure-js";

const packageName = "@azure/batch";
const packageVersion = "10.0.1";
const packageVersion = "10.0.2";

export class BatchServiceClientContext extends msRestAzure.AzureServiceClient {
credentials: msRest.ServiceClientCredentials;
Expand Down
9 changes: 9 additions & 0 deletions sdk/batch/batch/src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
/*
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*/

export * from "./batchServiceClient"
export * from "./operations";
export * from "./models";
export * from "./batchSharedKeyCredentials"

0 comments on commit 583150d

Please sign in to comment.