diff --git a/.changeset/mighty-actors-sort.md b/.changeset/mighty-actors-sort.md new file mode 100644 index 0000000000..e7bf738ca0 --- /dev/null +++ b/.changeset/mighty-actors-sort.md @@ -0,0 +1,5 @@ +--- +'@baloise/ds-core': patch +--- + +**core**: adjust interface reference paths diff --git a/libs/nx/src/executors/build-core/executor.ts b/libs/nx/src/executors/build-core/executor.ts index 65dcb7cbb3..52a7ef7439 100644 --- a/libs/nx/src/executors/build-core/executor.ts +++ b/libs/nx/src/executors/build-core/executor.ts @@ -140,18 +140,8 @@ async function adjustInterfacesReference(options: BuildCoreExecutorSchema) { const files = join(options.projectRoot, 'dist/types/**/*interfaces.d.ts') replace.sync({ files: files, - from: `/// `, - to: `/// `, - }) - replace.sync({ - files: files, - from: `/// `, - to: `/// `, - }) - replace.sync({ - files: files, - from: `/// `, - to: `/// `, + from: `/// `, + to: `/// `, }) }