From a50d5c4e636eb88e4c8cc24e8bff9f47e1dd6a90 Mon Sep 17 00:00:00 2001 From: ben Date: Tue, 16 Oct 2018 11:31:23 -0400 Subject: [PATCH] build(script): add log about moving libraries This adds a log in the terminal while performing the build, to update the user on the last destination of the Nx libraries. Contrary to the last log from ng-packagr saying that the build is in `/dist`, it is moved right after in the `/buil`. To avoid the confusion, this log say the right information. --- scripts/build.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/scripts/build.sh b/scripts/build.sh index 4eeddf14c1..24d48ca4cd 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -36,3 +36,6 @@ cp LICENSE build/packages/bazel cp LICENSE build/packages/builders cp LICENSE build/packages/schematics cp LICENSE build/packages/nx + +echo "Nx libraries available at build/packages:" +ls build/packages \ No newline at end of file