@smithy/shared-ini-file-loader 4.4.2 → 4.4.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +16 -14
- package/package.json +6 -6
package/dist-cjs/index.js
CHANGED
|
@@ -164,14 +164,8 @@ const externalDataInterceptor = {
|
|
|
164
164
|
},
|
|
165
165
|
};
|
|
166
166
|
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
get: function () { return getSSOTokenFromFile.getSSOTokenFromFile; }
|
|
170
|
-
});
|
|
171
|
-
Object.defineProperty(exports, "readFile", {
|
|
172
|
-
enumerable: true,
|
|
173
|
-
get: function () { return readFile.readFile; }
|
|
174
|
-
});
|
|
167
|
+
exports.getSSOTokenFromFile = getSSOTokenFromFile.getSSOTokenFromFile;
|
|
168
|
+
exports.readFile = readFile.readFile;
|
|
175
169
|
exports.CONFIG_PREFIX_SEPARATOR = CONFIG_PREFIX_SEPARATOR;
|
|
176
170
|
exports.DEFAULT_PROFILE = DEFAULT_PROFILE;
|
|
177
171
|
exports.ENV_PROFILE = ENV_PROFILE;
|
|
@@ -180,15 +174,23 @@ exports.getProfileName = getProfileName;
|
|
|
180
174
|
exports.loadSharedConfigFiles = loadSharedConfigFiles;
|
|
181
175
|
exports.loadSsoSessionData = loadSsoSessionData;
|
|
182
176
|
exports.parseKnownFiles = parseKnownFiles;
|
|
183
|
-
Object.
|
|
184
|
-
|
|
177
|
+
Object.prototype.hasOwnProperty.call(getHomeDir, '__proto__') &&
|
|
178
|
+
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
179
|
+
Object.defineProperty(exports, '__proto__', {
|
|
185
180
|
enumerable: true,
|
|
186
|
-
|
|
181
|
+
value: getHomeDir['__proto__']
|
|
187
182
|
});
|
|
183
|
+
|
|
184
|
+
Object.keys(getHomeDir).forEach(function (k) {
|
|
185
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = getHomeDir[k];
|
|
188
186
|
});
|
|
189
|
-
Object.
|
|
190
|
-
|
|
187
|
+
Object.prototype.hasOwnProperty.call(getSSOTokenFilepath, '__proto__') &&
|
|
188
|
+
!Object.prototype.hasOwnProperty.call(exports, '__proto__') &&
|
|
189
|
+
Object.defineProperty(exports, '__proto__', {
|
|
191
190
|
enumerable: true,
|
|
192
|
-
|
|
191
|
+
value: getSSOTokenFilepath['__proto__']
|
|
193
192
|
});
|
|
193
|
+
|
|
194
|
+
Object.keys(getSSOTokenFilepath).forEach(function (k) {
|
|
195
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) exports[k] = getSSOTokenFilepath[k];
|
|
194
196
|
});
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@smithy/shared-ini-file-loader",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.4",
|
|
4
4
|
"dependencies": {
|
|
5
|
-
"@smithy/types": "^4.
|
|
5
|
+
"@smithy/types": "^4.12.1",
|
|
6
6
|
"tslib": "^2.6.2"
|
|
7
7
|
},
|
|
8
8
|
"devDependencies": {
|
|
9
9
|
"@types/node": "^18.11.9",
|
|
10
10
|
"concurrently": "7.0.0",
|
|
11
11
|
"downlevel-dts": "0.10.1",
|
|
12
|
-
"
|
|
12
|
+
"premove": "4.0.0",
|
|
13
13
|
"typedoc": "0.23.23"
|
|
14
14
|
},
|
|
15
15
|
"scripts": {
|
|
@@ -17,9 +17,9 @@
|
|
|
17
17
|
"build:cjs": "node ../../scripts/inline shared-ini-file-loader",
|
|
18
18
|
"build:es": "yarn g:tsc -p tsconfig.es.json",
|
|
19
19
|
"build:types": "yarn g:tsc -p tsconfig.types.json",
|
|
20
|
-
"build:types:downlevel": "
|
|
21
|
-
"stage-release": "
|
|
22
|
-
"clean": "
|
|
20
|
+
"build:types:downlevel": "premove dist-types/ts3.4 && downlevel-dts dist-types dist-types/ts3.4",
|
|
21
|
+
"stage-release": "premove .release && yarn pack && mkdir ./.release && tar zxvf ./package.tgz --directory ./.release && rm ./package.tgz",
|
|
22
|
+
"clean": "premove dist-cjs dist-es dist-types tsconfig.cjs.tsbuildinfo tsconfig.es.tsbuildinfo tsconfig.types.tsbuildinfo",
|
|
23
23
|
"lint": "eslint -c ../../.eslintrc.js \"src/**/*.ts\"",
|
|
24
24
|
"format": "prettier --config ../../prettier.config.js --ignore-path ../../.prettierignore --write \"**/*.{ts,md,json}\"",
|
|
25
25
|
"extract:docs": "api-extractor run --local",
|