@boxyhq/saml-jackson 0.3.6-beta.566 → 0.3.6-beta.567
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/read-config.js +2 -2
- package/package.json +1 -1
package/dist/read-config.js
CHANGED
@@ -39,8 +39,8 @@ const readConfig = (preLoadedConfig) => __awaiter(void 0, void 0, void 0, functi
|
|
39
39
|
for (const idx in files) {
|
40
40
|
const file = files[idx];
|
41
41
|
if (file.endsWith('.js')) {
|
42
|
-
|
43
|
-
|
42
|
+
const { default: config } = yield Promise.resolve().then(() => __importStar(require(
|
43
|
+
/* webpackIgnore: true */ path.join(preLoadedConfig, file))));
|
44
44
|
const rawMetadata = yield fs.promises.readFile(path.join(preLoadedConfig, path.parse(file).name + '.xml'), 'utf8');
|
45
45
|
config.encodedRawMetadata = Buffer.from(rawMetadata, 'utf8').toString('base64');
|
46
46
|
configs.push(config);
|