mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* add completedDate filter * [ACA-3692] - Add completed date filter * fix lint * fix description * fix lint * preserve filters * fix startDate/dueDate fitlers and add unit test * revert app.config.json changes * add support for completed date field in datatable * fix unit tests * fix date range unit test Co-authored-by: Silviu Popa <p3701014@L3700101120.ness.com>
23 lines
650 B
Bash
Executable File
23 lines
650 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
cd "$DIR/../"
|
|
|
|
if grep "envalfresco" . -R --exclude-dir={node_modules,.history,.idea,scripts,dist,e2e-output,.git} --exclude={.env,.env.*}; then
|
|
echo not permitted word
|
|
exit 1
|
|
fi
|
|
|
|
npm run ng -- lint extensions && \
|
|
npm run ng -- lint core && \
|
|
npm run ng -- lint content-services && \
|
|
npm run ng -- lint process-services && \
|
|
npm run ng -- lint process-services-cloud && \
|
|
npm run ng -- lint insights && \
|
|
npm run ng -- lint testing && \
|
|
npm run ng -- lint demoshell && \
|
|
npm run lint-e2e && \
|
|
npm run stylelint && \
|
|
npm run spellcheck && \
|
|
npm run license-checker
|