From 963acc52d6dde658d9e94d48ecd7b9c82ab05a85 Mon Sep 17 00:00:00 2001 From: Jamie Stackhouse <1956521+itsjamie@users.noreply.github.com> Date: Tue, 17 Dec 2019 09:33:33 -0400 Subject: [PATCH 1/2] Remove TypeScript types build step This makes it so until we are ready to flip the switch on adding types, there won't be conflicting Typescript definitions for users that are using `@types/hls.js`. --- scripts/travis.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/travis.sh b/scripts/travis.sh index 4c047612f39..39f99763516 100755 --- a/scripts/travis.sh +++ b/scripts/travis.sh @@ -13,7 +13,6 @@ if [ "${TRAVIS_MODE}" = "build" ]; then echo "travis_fold:start:build" npm run type-check npm run build - npm run build:types echo "travis_fold:end:build" echo "travis_fold:start:docs" npm run docs From 09bf11214b5b93a04e8d000d277c86b44cc79fa1 Mon Sep 17 00:00:00 2001 From: Jamie Stackhouse <1956521+itsjamie@users.noreply.github.com> Date: Tue, 17 Dec 2019 14:35:48 -0400 Subject: [PATCH 2/2] Remove build:types from release job. --- scripts/travis.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/travis.sh b/scripts/travis.sh index 39f99763516..aa7c27fe506 100755 --- a/scripts/travis.sh +++ b/scripts/travis.sh @@ -50,7 +50,6 @@ elif [ "${TRAVIS_MODE}" = "release" ] || [ "${TRAVIS_MODE}" = "releaseCanary" ] npm run lint npm run type-check npm run build:ci - npm run build:types if [ "${TRAVIS_MODE}" != "netlifyPr" ]; then npm run test:unit