Skip to content

Commit

Permalink
fixup! feat: update the package output of build.sh to APF v6
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorMinar committed Mar 15, 2018
1 parent d4b68f6 commit 06c1a17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.sh
Expand Up @@ -476,14 +476,14 @@ do
(
cd ${SRC_DIR}
echo "====== Copy ESM2015 for ${PACKAGE}"
rsync -a --exclude="locale/**" ${OUT_DIR}/ ${ESM2015_DIR}
rsync -a --exclude="locale/**" --include="*.(js|js.map)" ${OUT_DIR}/ ${ESM2015_DIR}

echo "====== Rollup ${PACKAGE}"
rollupIndex ${OUT_DIR} ${FESM2015_DIR} ${PACKAGE}

echo "====== Produce ESM5 version"
compilePackageES5 ${SRC_DIR} ${OUT_DIR_ESM5} ${PACKAGE}
rsync -a --exclude="locale/**" ${OUT_DIR_ESM5}/ ${ESM5_DIR}
rsync -a --exclude="locale/**" --include="*.(js|js.map)" ${OUT_DIR_ESM5}/ ${ESM5_DIR}
rollupIndex ${OUT_DIR_ESM5} ${FESM5_DIR} ${PACKAGE}

echo "====== Run rollup conversions on ${PACKAGE}"
Expand Down

0 comments on commit 06c1a17

Please sign in to comment.