Skip to content

Commit

Permalink
chore: switch to package @smithy/shared-ini-file-loader
Browse files Browse the repository at this point in the history
  • Loading branch information
jsetton authored and tydonelson committed Aug 16, 2023
1 parent cd44f72 commit 12c0f97
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 29 deletions.
2 changes: 1 addition & 1 deletion lib/clients/aws-client/aws-util.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {DEFAULT_PROFILE, parseKnownFiles} from "@aws-sdk/shared-ini-file-loader";
import {DEFAULT_PROFILE, parseKnownFiles} from "@smithy/shared-ini-file-loader";
import fs from "fs-extra";
import os from "os";
import path from "path";
Expand Down
75 changes: 49 additions & 26 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@
"@aws-sdk/client-lambda": "^3.306.0",
"@aws-sdk/client-s3": "^3.306.0",
"@aws-sdk/credential-providers": "^3.306.0",
"@aws-sdk/shared-ini-file-loader": "^3.306.0",
"@aws-sdk/types": "^3.306.0",
"@smithy/shared-ini-file-loader": "^2.0.4",
"adm-zip": "^0.5.9",
"archiver": "^5.3.0",
"ask-smapi-model": "^1.23.0",
Expand Down
2 changes: 1 addition & 1 deletion test/unit/clients/aws-client/aws-util-test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ describe("Clients test - aws util test", () => {
beforeEach(() => {
parseKnownFilesStub = sinon.stub();
awsUtil = proxyquire("../../../../lib/clients/aws-client/aws-util", {
"@aws-sdk/shared-ini-file-loader": {
"@smithy/shared-ini-file-loader": {
DEFAULT_PROFILE: TEST_AWS_DEFAULT_PROFILE,
parseKnownFiles: parseKnownFilesStub,
},
Expand Down

0 comments on commit 12c0f97

Please sign in to comment.