Skip to content

Commit

Permalink
[AAE-18464] fix bundle check for js-api (#9117)
Browse files Browse the repository at this point in the history
  • Loading branch information
DenysVuika authored Nov 27, 2023
1 parent 2824b7b commit 3cf2ffa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/github/build/npm-check-bundles.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ do
tar zxf 'alfresco-'$PACKAGE-$PKG_VERSION.tgz

if [ $PACKAGE == 'js-api' ]; then
if [ ! -f package/esm2020/'alfresco-js-api.mjs' ]; then
error_out '31;1' "esm2020/alfresco-js-api.mjs not found!" >&2
if [ ! -f package/esm2015/'index.js' ]; then
error_out '31;1' "esm2015/index.js not found!" >&2
exit 1
else
echo "esm2020: ok"
Expand Down

0 comments on commit 3cf2ffa

Please sign in to comment.