Skip to content

Commit

Permalink
feat(stark-ui): implement text-mask directive
Browse files Browse the repository at this point in the history
ISSUES CLOSED: #680
  • Loading branch information
RobbyDeLaet authored and christophercr committed Feb 13, 2019
1 parent 505b4e1 commit 5f2c173
Show file tree
Hide file tree
Showing 38 changed files with 7,770 additions and 6,773 deletions.
2 changes: 1 addition & 1 deletion build-functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
isIgnoredDirectory() {
#logTrace "${FUNCNAME[0]}: Checking for ${1}" 1
name=$(basename ${1})
if [[ -f "${1}" || "${name}" == "src" || "${name}" == "test" || "${name}" == "integrationtest" || "${name}" == "reports" || "${name}" == "coverage" || "${name}" == "assets" || "${name}" == "node_modules" ]]; then
if [[ -f "${1}" || "${name}" == "src" || "${name}" == "test" || "${name}" == "integrationtest" || "${name}" == "reports" || "${name}" == "coverage" || "${name}" == "assets" || "${name}" == "typings" || "${name}" == "node_modules" ]]; then
#logTrace "No" 1
return 0
else
Expand Down
5 changes: 5 additions & 0 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -258,6 +258,11 @@ do
syncOptions=(-a --include="**/assets/" --exclude="*.js" --exclude="*.js.map" --exclude="*.ts" --include="*.json" --exclude="node_modules/" --exclude="coverage/" --exclude="reports/")
syncFiles ${SRC_DIR} ${OUT_DIR} "${syncOptions[@]}"
unset syncOptions

logInfo "Copy typings folders for package $PACKAGE"
syncOptions=(-a --include="/typings/***" --exclude="*")
syncFiles ${SRC_DIR} ${OUT_DIR} "${syncOptions[@]}"
unset syncOptions
fi

if [[ ${BUNDLE} == true ]]; then
Expand Down
Loading

0 comments on commit 5f2c173

Please sign in to comment.