We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8cc020b commit 71c5297Copy full SHA for 71c5297
.travis.yml
@@ -15,12 +15,13 @@ script:
15
- >
16
if [ "x${CORE_BRANCH}x" != "xx" ] ; then
17
echo "Installing @uirouter/core from ${CORE_BRANCH}" && \
18
- git clone --depth=10 --branch="${CORE_BRANCH}" https://github.com/ui-router/core.git @uirouter/core && \
19
- pushd @uirouter/core && \
20
- yarn > /dev/null && \
+ git clone --depth=10 --branch="${CORE_BRANCH}" https://github.com/ui-router/core.git ui-router-core && \
+ pushd ui-router-core && \
+ yarn && \
21
yarn build && \
22
+ CORE_PACK_FILENAME=`npm pack` && \
23
popd && \
- npm install ./@uirouter/core ;
24
+ yarn add ./ui-router-core/${CORE_PACK_FILENAME} ;
25
fi
26
- tsc && npm test
27
0 commit comments