@madgex/fert 6.3.0 → 6.3.1
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.
|
@@ -4,7 +4,7 @@ import { log } from '../../utils/logging.js';
|
|
|
4
4
|
|
|
5
5
|
export async function buildExternalAssets(fertConfig) {
|
|
6
6
|
const { externalAssets, workingDir } = fertConfig;
|
|
7
|
-
const destination = Path.
|
|
7
|
+
const destination = Path.resolve(workingDir, './dist/external-assets.json');
|
|
8
8
|
|
|
9
9
|
try {
|
|
10
10
|
await fs.writeFile(destination, JSON.stringify(externalAssets, null, 2));
|
package/bin/utils/index.js
CHANGED
|
@@ -129,7 +129,7 @@ export async function loadServiceConfigFiles() {
|
|
|
129
129
|
const serviceConfigPaths = await Array.fromAsync(
|
|
130
130
|
glob(`**/${FERT_SERVICE_CONFIG_FILENAME}`, {
|
|
131
131
|
cwd: path.resolve(rootDir),
|
|
132
|
-
exclude: (item) => ['node_modules', 'dist'].includes(item),
|
|
132
|
+
exclude: (item) => ['node_modules', 'repo-template', 'dist'].includes(item),
|
|
133
133
|
}),
|
|
134
134
|
);
|
|
135
135
|
|