mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
#463 add form to task list
This commit is contained in:
parent
15e97e8a96
commit
007a73a7f7
@ -38,6 +38,9 @@ before_script:
|
||||
- if ([ "$MODULE" == "ng2-alfresco-documentlist" ] || [ "$MODULE" == "ng2-alfresco-webscript" ] || [ "$MODULE" == "ng2-activiti-processlist" ] || [ "$MODULE" == "ng2-activiti-tasklist" ]); then
|
||||
(cd ng2-components/ng2-alfresco-datatable; npm link ng2-alfresco-core; npm install; npm link);
|
||||
fi
|
||||
- if ([ "$MODULE" == "ng2-activiti-tasklist" ]); then
|
||||
(cd ng2-components/ng2-activiti-form; npm link ng2-alfresco-core; npm install; npm link);
|
||||
fi
|
||||
- cd ng2-components/$MODULE;
|
||||
- if ([ "$MODULE" != "ng2-alfresco-core" ] && [ "$MODULE" != "ng2-alfresco-viewer" ]); then
|
||||
npm link ng2-alfresco-core;
|
||||
@ -45,6 +48,9 @@ before_script:
|
||||
- if ([ "$MODULE" == "ng2-alfresco-documentlist" ] || [ "$MODULE" == "ng2-alfresco-webscript" ] || [ "$MODULE" == "ng2-activiti-processlist" ] || [ "$MODULE" == "ng2-activiti-tasklist" ]); then
|
||||
npm link ng2-alfresco-datatable;
|
||||
fi
|
||||
- if ([ "$MODULE" == "ng2-activiti-tasklist" ]); then
|
||||
npm link ng2-activiti-form;
|
||||
fi
|
||||
- npm install;
|
||||
- npm run travis
|
||||
- ls -ltrh ./node_modules/
|
||||
|
@ -28,12 +28,13 @@ install:
|
||||
- IF %COMPONENT_NAME% EQU ng2-alfresco-documentlist (cd ng2-components/ng2-alfresco-datatable && npm link ng2-alfresco-core && npm install && npm link && cd ../../)
|
||||
- IF %COMPONENT_NAME% EQU ng2-activiti-processlist (cd ng2-components/ng2-alfresco-datatable && npm link ng2-alfresco-core && npm install && npm link && cd ../../)
|
||||
- IF %COMPONENT_NAME% EQU ng2-activiti-tasklist (cd ng2-components/ng2-alfresco-datatable && npm link ng2-alfresco-core && npm install && npm link && cd ../../)
|
||||
- IF %COMPONENT_NAME% EQU ng2-activiti-tasklist (cd ng2-components/ng2-activiti-form && npm link ng2-alfresco-core && npm install && npm link && cd ../../)
|
||||
- IF %COMPONENT_NAME% EQU ng2-alfresco-webscript (cd ng2-components/ng2-alfresco-datatable && npm link ng2-alfresco-core && npm install && npm link && cd ../../)
|
||||
- cd ng2-components/%COMPONENT_NAME%
|
||||
- IF %COMPONENT_NAME% NEQ ng2-alfresco-core (npm link ng2-alfresco-core)
|
||||
- IF %COMPONENT_NAME% EQU ng2-alfresco-documentlist (npm link ng2-alfresco-datatable)
|
||||
- IF %COMPONENT_NAME% EQU ng2-activiti-processlist (npm link ng2-alfresco-datatable)
|
||||
- IF %COMPONENT_NAME% EQU ng2-activiti-tasklist (npm link ng2-alfresco-datatable)
|
||||
- IF %COMPONENT_NAME% EQU ng2-activiti-tasklist (npm link ng2-alfresco-datatable && npm link ng2-activiti-form)
|
||||
- IF %COMPONENT_NAME% EQU ng2-alfresco-webscript (npm link ng2-alfresco-datatable)
|
||||
- npm install
|
||||
|
||||
|
@ -7,6 +7,12 @@ echo "====== linking component: ng2-alfresco-core ====="
|
||||
cd "$DIR/../ng2-components/ng2-alfresco-core"
|
||||
npm link
|
||||
|
||||
#LINK FORM
|
||||
echo "====== linking component: ng2-activiti-form ====="
|
||||
cd "$DIR/../ng2-components/ng2-activiti-form"
|
||||
npm link ng2-alfresco-core
|
||||
npm link
|
||||
|
||||
#LINK DATATABLE
|
||||
echo "====== linking component: ng2-alfresco-datatable ====="
|
||||
cd "$DIR/../ng2-components/ng2-alfresco-datatable"
|
||||
@ -32,6 +38,7 @@ echo "====== linking component: ng2-activiti-tasklist ====="
|
||||
cd "$DIR/../ng2-components/ng2-activiti-tasklist"
|
||||
npm link ng2-alfresco-core
|
||||
npm link ng2-alfresco-datatable
|
||||
npm link ng2-activiti-form
|
||||
npm link
|
||||
|
||||
#LINK PROCESSLIST
|
||||
@ -43,7 +50,6 @@ npm link
|
||||
|
||||
#LINK ALL THE OTHERS COMPONENTS
|
||||
for PACKAGE in \
|
||||
ng2-activiti-form \
|
||||
ng2-alfresco-login \
|
||||
ng2-alfresco-search \
|
||||
ng2-alfresco-upload \
|
||||
|
Loading…
x
Reference in New Issue
Block a user