Skip to content

Commit

Permalink
add @types/node in packagefilegenerator.ts (#1610)
Browse files Browse the repository at this point in the history
* add @types/node in packagefilegenerator.ts

* Update packageFileGenerator.ts

* update files
  • Loading branch information
kazrael2119 committed Oct 18, 2022
1 parent 786c402 commit 0b83a84
Show file tree
Hide file tree
Showing 12 changed files with 24 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ function regularAutorestPackage(
packageInfo.devDependencies["@types/chai"] = "^4.2.8";
packageInfo.devDependencies["chai"] = "^4.2.0";
packageInfo.devDependencies["cross-env"] = "^7.0.2";
packageInfo.devDependencies["@types/node"] = "^14.0.0";
packageInfo.scripts["test"] = "npm run integration-test";
packageInfo.scripts["unit-test"] =
"npm run unit-test:node && npm run unit-test:browser";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
"mocha": "^7.1.1",
"@types/chai": "^4.2.8",
"chai": "^4.2.0",
"cross-env": "^7.0.2"
"cross-env": "^7.0.2",
"@types/node": "^14.0.0"
},
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/undefined",
"repository": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@
"mocha": "^7.1.1",
"@types/chai": "^4.2.8",
"chai": "^4.2.0",
"cross-env": "^7.0.2"
"cross-env": "^7.0.2",
"@types/node": "^14.0.0"
},
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/undefined",
"repository": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@
"mocha": "^7.1.1",
"@types/chai": "^4.2.8",
"chai": "^4.2.0",
"cross-env": "^7.0.2"
"cross-env": "^7.0.2",
"@types/node": "^14.0.0"
},
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/undefined",
"repository": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
"mocha": "^7.1.1",
"@types/chai": "^4.2.8",
"chai": "^4.2.0",
"cross-env": "^7.0.2"
"cross-env": "^7.0.2",
"@types/node": "^14.0.0"
},
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/undefined",
"repository": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
"mocha": "^7.1.1",
"@types/chai": "^4.2.8",
"chai": "^4.2.0",
"cross-env": "^7.0.2"
"cross-env": "^7.0.2",
"@types/node": "^14.0.0"
},
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/undefined",
"repository": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@
"mocha": "^7.1.1",
"@types/chai": "^4.2.8",
"chai": "^4.2.0",
"cross-env": "^7.0.2"
"cross-env": "^7.0.2",
"@types/node": "^14.0.0"
},
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/undefined",
"repository": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
"mocha": "^7.1.1",
"@types/chai": "^4.2.8",
"chai": "^4.2.0",
"cross-env": "^7.0.2"
"cross-env": "^7.0.2",
"@types/node": "^14.0.0"
},
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/undefined",
"repository": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
"mocha": "^7.1.1",
"@types/chai": "^4.2.8",
"chai": "^4.2.0",
"cross-env": "^7.0.2"
"cross-env": "^7.0.2",
"@types/node": "^14.0.0"
},
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/undefined",
"repository": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
"mocha": "^7.1.1",
"@types/chai": "^4.2.8",
"chai": "^4.2.0",
"cross-env": "^7.0.2"
"cross-env": "^7.0.2",
"@types/node": "^14.0.0"
},
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/undefined",
"repository": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@
"mocha": "^7.1.1",
"@types/chai": "^4.2.8",
"chai": "^4.2.0",
"cross-env": "^7.0.2"
"cross-env": "^7.0.2",
"@types/node": "^14.0.0"
},
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/main/undefined",
"repository": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3242,11 +3242,12 @@ export interface GitHubActionWebAppStackSettings {
}

// @public
export interface Global {
interface Global_2 {
getDeletedWebApp(deletedSiteId: string, options?: GlobalGetDeletedWebAppOptionalParams): Promise<GlobalGetDeletedWebAppResponse>;
getDeletedWebAppSnapshots(deletedSiteId: string, options?: GlobalGetDeletedWebAppSnapshotsOptionalParams): Promise<GlobalGetDeletedWebAppSnapshotsResponse>;
getSubscriptionOperationWithAsyncResponse(location: string, operationId: string, options?: GlobalGetSubscriptionOperationWithAsyncResponseOptionalParams): Promise<void>;
}
export { Global_2 as Global }

// @public
export interface GlobalCsmSkuDescription {
Expand Down Expand Up @@ -10452,7 +10453,7 @@ export class WebSiteManagementClient extends coreClient.ServiceClient {
getSourceControl(sourceControlType: string, options?: GetSourceControlOptionalParams): Promise<GetSourceControlResponse>;
getSubscriptionDeploymentLocations(options?: GetSubscriptionDeploymentLocationsOptionalParams): Promise<GetSubscriptionDeploymentLocationsResponse>;
// (undocumented)
global: Global;
global: Global_2;
// (undocumented)
kubeEnvironments: KubeEnvironments;
listBillingMeters(options?: ListBillingMetersOptionalParams): PagedAsyncIterableIterator<BillingMeter>;
Expand Down

0 comments on commit 0b83a84

Please sign in to comment.