Skip to content

Commit 0c0ba45

Browse files
committed
chore: fix build issues
1 parent ee880f9 commit 0c0ba45

File tree

3 files changed

+82
-23
lines changed

3 files changed

+82
-23
lines changed

libs/nx/src/executors/build-docs/executor.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,11 +47,11 @@ async function archive(fromPath: string, targetPath: string, fileName: string, f
4747

4848
async function copyResources(options: BuildDocsExecutorSchema) {
4949
async function copyToAsset(from: string, to: string) {
50-
await copy(from, join(options.projectRoot, 'src', 'assets', to), { recursive: true, overwrite: true })
50+
await copy(from, join(options.projectRoot, 'src', 'assets', to), { overwrite: true })
5151
}
5252

5353
async function copyToPublic(from: string, to: string) {
54-
await copy(from, join(options.projectRoot, 'public', to), { recursive: true, overwrite: true })
54+
await copy(from, join(options.projectRoot, 'public', to), { overwrite: true })
5555
}
5656

5757
const packageRoot = join(options.projectRoot, '..', 'packages')

packages/devkit/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
"@angular-devkit/core": "^19.0.0",
2020
"@angular-devkit/schematics": "^19.0.0",
2121
"@schematics/angular": "^19.0.0",
22+
"tslib": "^2.6.0",
2223
"typescript": "~5.6.2",
2324
"glob": "10.5.0"
2425
}

pnpm-lock.yaml

Lines changed: 79 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)