@akanjs/devkit 0.9.47 → 0.9.49
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/cjs/src/executors.js +2 -2
- package/esm/src/executors.js +2 -2
- package/package.json +1 -1
package/cjs/src/executors.js
CHANGED
|
@@ -846,12 +846,12 @@ class AppExecutor extends SysExecutor {
|
|
|
846
846
|
]);
|
|
847
847
|
await Promise.all([
|
|
848
848
|
...targetPublicDeps.map(
|
|
849
|
-
(dep) =>
|
|
849
|
+
(dep) => import_promises.default.cp(`${this.workspace.workspaceRoot}/libs/${dep}/public`, `${projectPublicLibPath}/${dep}`, {
|
|
850
850
|
recursive: true
|
|
851
851
|
})
|
|
852
852
|
),
|
|
853
853
|
...targetAssetsDeps.map(
|
|
854
|
-
(dep) =>
|
|
854
|
+
(dep) => import_promises.default.cp(`${this.workspace.workspaceRoot}/libs/${dep}/assets`, `${projectAssetsLibPath}/${dep}`, {
|
|
855
855
|
recursive: true
|
|
856
856
|
})
|
|
857
857
|
)
|
package/esm/src/executors.js
CHANGED
|
@@ -806,12 +806,12 @@ class AppExecutor extends SysExecutor {
|
|
|
806
806
|
]);
|
|
807
807
|
await Promise.all([
|
|
808
808
|
...targetPublicDeps.map(
|
|
809
|
-
(dep) =>
|
|
809
|
+
(dep) => fsPromise.cp(`${this.workspace.workspaceRoot}/libs/${dep}/public`, `${projectPublicLibPath}/${dep}`, {
|
|
810
810
|
recursive: true
|
|
811
811
|
})
|
|
812
812
|
),
|
|
813
813
|
...targetAssetsDeps.map(
|
|
814
|
-
(dep) =>
|
|
814
|
+
(dep) => fsPromise.cp(`${this.workspace.workspaceRoot}/libs/${dep}/assets`, `${projectAssetsLibPath}/${dep}`, {
|
|
815
815
|
recursive: true
|
|
816
816
|
})
|
|
817
817
|
)
|