Add missing documentation for extension loader callbacks (#1457)

* Add missing documentation for extension loader callbacks

* Fix messed up pipeline, how it could work until now???

* Travis yml fix

* Travis yml fix
This commit is contained in:
Popovics András
2020-05-07 23:23:11 +02:00
committed by GitHub
parent 89e7446bd2
commit 0e7eed3cd5
8 changed files with 145 additions and 21 deletions

View File

@@ -23,12 +23,16 @@ set_version() {
}
update(){
for (( j=0; j<${libslength}; j++ ));
eval libsWithVersions=();
for (( i=0; i<${libslength}; i++ ));
do
EXACT_VERSION="${libs[$j]}@${VERSION}"
echo "====== ${EXACT_VERSION} ======"
npm i -E ${EXACT_VERSION}
EXACT_VERSION="${libs[$i]}@${VERSION}"
eval libsWithVersions=( "${libsWithVersions[@]}" "${EXACT_VERSION}" )
done
echo "npm i --ignore-scripts -E ${libsWithVersions[*]}"
npm i --ignore-scripts -E ${libsWithVersions[*]}
}
while [[ $1 == -* ]]; do