mirror of
https://github.com/video-dev/hls.js.git
synced 2026-05-17 13:30:38 +00:00
16 lines
289 B
Bash
Executable File
16 lines
289 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
if [[ $(git rev-parse --is-shallow-repository) = "true" ]]; then
|
|
# make sure everything is fetched
|
|
git fetch --unshallow
|
|
fi
|
|
|
|
npm ci --force
|
|
./scripts/set-package-version.sh
|
|
npm run lint
|
|
npm run type-check
|
|
npm run build:ci
|
|
npm run docs
|
|
./scripts/build-cloudflare.sh
|